From 068d72d63426310f123f48642bbe5e480a1e1b4d Mon Sep 17 00:00:00 2001 From: Roderik Ploszek Date: Mon, 25 May 2020 09:33:42 +0200 Subject: [PATCH] test Windows version in the installer Windows XP SP3 or higher is required see issue #161 --- README.md | 2 +- scripts/create_iss.py | 22 +++++++++++++++++++++- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dbf145b3..7f9ba05b 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ and implemented some other enhancements. ## Installation. -We provide an [installer for Windows](https://sourceforge.net/projects/pysolfc/files/PySolFC/) +We provide an [installer for Windows](https://sourceforge.net/projects/pysolfc/files/PySolFC/) (requires Windows XP SP3 or higher) as well as an Android package on F-droid. For installation from source, see: http://www.python.org/doc/current/inst/ diff --git a/scripts/create_iss.py b/scripts/create_iss.py index 2c1a2f8b..ca1932e0 100755 --- a/scripts/create_iss.py +++ b/scripts/create_iss.py @@ -76,6 +76,26 @@ begin Result := False; end; end; -''', file=out) + +function InitializeSetup(): Boolean; +var + Version: TWindowsVersion; +begin + GetWindowsVersionEx(Version); + + // Windows XP SP3 and higher + if ((Version.Major = 5) and ((Version.Minor = 1) and + (Version.ServicePackMajor >= 3) or (Version.Minor > 1)) or + (Version.Major > 5)) then + Result := True + else begin + MsgBox( + 'This version of Windows is not supported. PySolFC %(prog_version)s \ +requires Windows XP SP3 or higher.', + mbCriticalError, MB_OK); + Result := False; + end; +end; +''' % vars(), file=out) out.close()