From 0158920cbe56effbaa009f977b1fdbe2a319f894 Mon Sep 17 00:00:00 2001 From: bovirus <1262554+bovirus@users.noreply.github.com> Date: Sun, 3 Nov 2024 21:40:16 +0100 Subject: [PATCH] Update Inno Setup script --- ppsspp.iss | 40 ++++++++++++++++++++++++++++++---------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/ppsspp.iss b/ppsspp.iss index 09c3936d59..6442891004 100644 --- a/ppsspp.iss +++ b/ppsspp.iss @@ -1,5 +1,8 @@ -#define ApplicationName 'PPSSPP' -#define ApplicationVersion GetFileVersion('PPSSPPWindows.exe') +#define ApplicationName "PPSSPP" +#define ApplicationVersion GetFileVersion('PPSSPPWindows.exe') +#define StartYearCopyright "2017" +#define CurrentYear GetDateTimeString('yyyy','','') +#define ApplicationAuthor "PPSSPP Team" [Languages] Name: "en"; MessagesFile: "compiler:Default.isl" @@ -36,15 +39,33 @@ Name: "uk"; MessagesFile: "compiler:Languages\Ukrainian.isl" [Setup] ; Installer - name for title and wizard pages AppName={#ApplicationName} -; Installer - version -VersionInfoVersion={#ApplicationVersion} - -; Programs and Features - Name -AppVerName={#ApplicationName} ; Programs and Features - Version AppVersion={#ApplicationVersion} -; Programs and Features - Publisher -AppPublisher=PPSSPP Team +; Programs and Features - Name +AppVerName={#ApplicationName} {#ApplicationVersion} + +; Installer - Exe file properties - App Version +VersionInfoVersion={#ApplicationVersion} +; Installer - Exe file properties - File Version +VersionInfoProductName={#ApplicationName} +; Installer - Exe file properties - Application description +VersionInfoDescription={#ApplicationName} installer +; Installer - Exe file properties - Copyright info +AppCopyright={#StartYearCopyright}-{#CurrentYear} {#ApplicationAuthor} + +; Windows control Panel - Uninstaller program name icon and author +UninstallDisplayName={#ApplicationName} +UninstallDisplayIcon={app}\PPSSPPWindows.exe +AppPublisher={#ApplicationAuthor} + +; Languages dialog settings +ShowLanguageDialog=yes +UsePreviousLanguage=no +LanguageDetectionMethod=uilanguage + +; Modern interface +WizardStyle=modern + ; Programs and Features - Help link AppSupportURL=https://forums.ppsspp.org ; Programs and Features - Support link @@ -56,7 +77,6 @@ DefaultDirName={pf}\PPSSPP ; Since no icons will be created in "{group}", we don't need the wizard ; to ask for a Start Menu folder name: DisableProgramGroupPage=yes -UninstallDisplayIcon={app}\PPSSPPWindows.exe ; Detect the correct directory for Program Files x86/64 ArchitecturesInstallIn64BitMode=x64