Skip to content

Commit

Permalink
Force installer to only run on Windows 8 and above
Browse files Browse the repository at this point in the history
Closes #1770
  • Loading branch information
Safihre committed Jan 27, 2021
1 parent 32f6ec6 commit 430318e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/win/NSIS_Installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ Function .onInit
${EndIf}

; Python 3.9 no longer supports Windows 7
${If} ${AtLeastWin7}
${If} ${AtMostWin8}
MessageBox MB_OK $(MsgNoWin7)
ExecShell "open" "https://sabnzbd.org/downloads"
Abort
Expand Down Expand Up @@ -380,7 +380,7 @@ SectionEnd

LangString MsgOnly64bit ${LANG_ENGLISH} "The installer only supports 64-bit Windows, use the standalone version to run on 32-bit Windows."

LangString MsgNoWin7 ${LANG_ENGLISH} "The installer only supports Windows 8.1 and above, use the legacy version to run on older Windows."
LangString MsgNoWin7 ${LANG_ENGLISH} "The installer only supports Windows 8.1 and above, use the standalone legacy version to run on older Windows version."

LangString MsgUninstall ${LANG_ENGLISH} "This will uninstall SABnzbd from your system"

Expand Down

0 comments on commit 430318e

Please sign in to comment.