Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Inno Setup script #19578

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 30 additions & 10 deletions ppsspp.iss
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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
Expand All @@ -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

Expand Down