From b67896d4ab6937b900ca987ecd4cf2c39a3439d5 Mon Sep 17 00:00:00 2001 From: arvanus Date: Tue, 23 Jul 2024 08:50:59 -0300 Subject: [PATCH 1/2] Fix Innosetup MinVersion Windows Vista/Server 2008 are no longer supported. --- install/win32/FlameRobinSetup.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/win32/FlameRobinSetup.iss b/install/win32/FlameRobinSetup.iss index de893d64..4165ad3d 100644 --- a/install/win32/FlameRobinSetup.iss +++ b/install/win32/FlameRobinSetup.iss @@ -56,7 +56,7 @@ LicenseFile=..\..\docs-src\fr_license.txt InfoBeforeFile=info_before_win64.rtf #endif InfoAfterFile= -MinVersion=0,6.0 +MinVersion=0,6.1 #ifdef DEBUG Compression=lzma/ultra #ifdef X64VERSION From 8b2b992ff63804533a68915f6c4f16da726aa0d9 Mon Sep 17 00:00:00 2001 From: arvanus Date: Tue, 23 Jul 2024 09:41:14 -0300 Subject: [PATCH 2/2] Update frversion.h --- src/frversion.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frversion.h b/src/frversion.h index db3cbd13..84ae3959 100644 --- a/src/frversion.h +++ b/src/frversion.h @@ -1,6 +1,6 @@ #define FR_VERSION_MAJOR 0 #define FR_VERSION_MINOR 9 -#define FR_VERSION_RLS 10 +#define FR_VERSION_RLS 11 // if this file can't be found you need to run the update-revision-info script #include "revisioninfo.h"