You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
; This macro is inserted at the beginning of the NSIS .OnInit callback
3
+
; Check Windows version and enforce minimum Windows 10 requirement
4
+
${If}${AtLeastWin10}
5
+
; Windows 10 or later - continue with installation
6
+
Goto continue_install
7
+
${Else}
8
+
MessageBoxMB_OK|MB_ICONSTOP"This application requires Windows 10 or later.$\r$\n$\r$\nYour Windows version is not supported.$\r$\n$\r$\nPlease upgrade to Windows 10 or later to continue."
<!-- NOTE Make sure to verify the supported platforms have not changed before making a release -->
19
+
<!-- NOTE Make sure to verify the supported platforms have not changed before making a release. Mac minimumSystemVersion in package.json and the Windows version in build/installer.nsh may need to be updated too-->
20
20
21
21
Session requires Windows 10 or later, macOS Ventura (13) or later, or a Linux distribution with glibc 2.35 or later like Debian 12 or Ubuntu 22.04.
0 commit comments