The miminum requirement for Firefox 60 is Windows 7 (which means there is no Windows XP and no Windows Vista anymore supported). We should make sure that
a) Tor Browser users on Windows XP and Windows Vista are not updated to the new Tor Browser (ideally they would get to know what is going on at least once).
b) Tor Browser users on Windows XP and Windows Vista are not trying to install Tor Browser 8 in the first place.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related.
Learn more.
So we need to find what is the value of Services.sysinfo.getProperty("version") on Windows 7.
The short answer is "6.1".
The longer answer is that PR_GetSystemInfo() is used by Services.sysinfo to obtain OS version information. On Windows, the implementation is in _MD_WindowsGetSysInfo() which constructs a string as dwMajorVersion.dwMinorVersion from a OSVERSIONINFO struct that is filled in via a call to the Windows API function GetVersionEx(). I used the Firedox browser console in to obtain the 6.1 answer, and it matches the data in the table that is included in the following page:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms724834(v=vs.85).aspx
Sorry for missing something obvious here, but for "b) Tor Browser users on Windows XP and Windows Vista are not trying to install Tor Browser 8 in the first place.", would it make sense to initiate a check from NSIS rather than Tor Browser?
Sorry for missing something obvious here, but for "b) Tor Browser users on Windows XP and Windows Vista are not trying to install Tor Browser 8 in the first place.", would it make sense to initiate a check from NSIS rather than Tor Browser?
Yes, that check needs to be in the NSIS script that generates the .exe.
Two small patches to fix this, one in the update_response config, adding "minSupportedOSVersion: 6.1" string for win32 and win64 builds. The other is to the nsis build script which adds the following pop-up to the installer when it's detected to be running on a version of windows older than Windows 7 (verified in Vista and 7 VMs).
One other thing I noticed while looking at the nsis script is that we're providing the option to add Desktop and Start Menu shortcuts. Since we don't provide an uninstaller to clean up the Start Menu, should that be removed, or at least put the Start Menu shortcut generation into a second not auto-selected option? I would think most users probably wouldn't remember to delete the Start Menu shortcut if they delete Tor Browser.