- windows installer - check for free disk space, better downloading error dialog, build_release_windows.bat - add -web flavour

This commit is contained in:
Slawek Mikula
2021-04-15 12:15:32 +01:00
committed by Automatic Release Builder
parent f05a164538
commit 30718abd99
3 changed files with 68 additions and 2 deletions
+12
View File
@@ -155,6 +155,11 @@ IF %IS_NIGHTLY_BUILD% EQU 1 (
CALL :writeBaseConfig
CALL :writeReleaseConfig
iscc /Q FlightGear.iss
REM FlightGear release: with fgdata web installer, output filename would be "FlightGear-x.x.x-web.exe"
CALL :writeBaseConfig
CALL :writeReleaseWebConfig
iscc /Q FlightGear.iss
)
GOTO End
@@ -173,6 +178,13 @@ ECHO #define FGDetails "" >> InstallConfig.iss
ECHO #define IncludeData "TRUE" >> InstallConfig.iss
GOTO End
:writeReleaseWebConfig
CALL :writeBaseConfig
ECHO #define FGDetails "-web" >> InstallConfig.iss
ECHO #define IncludeData "FALSE" >> InstallConfig.iss
ECHO #define IncludeWeb "TRUE" >> InstallConfig.iss
GOTO End
:writeNightlyFullConfig
CALL :writeBaseConfig
ECHO #define FGDetails "-nightly-full" >> InstallConfig.iss