Mark some LttP specific executables as such

This commit is contained in:
Fabian Dill 2021-03-03 07:50:27 +01:00
parent 1d6aabeea6
commit 2cb6ec2a70
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
#define sourcepath "build\exe.win-amd64-3.8\"
#define MyAppName "Archipelago"
#define MyAppExeName "ArchipelagoClient.exe"
#define MyAppExeName "ArchipelagoLttPClient.exe"
#define MyAppIcon "icon.ico"
[Setup]
@ -52,7 +52,7 @@ Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks:
[Run]
Filename: "{tmp}\vc_redist.x64.exe"; Parameters: "/passive /norestart"; Check: IsVCRedist64BitNeeded; StatusMsg: "Installing VC++ redistributable..."
Filename: "{app}\ArchipelagoCreator"; Parameters: "update_sprites"; StatusMsg: "Updating Sprite Library..."
Filename: "{app}\ArchipelagoLttPCreator"; Parameters: "update_sprites"; StatusMsg: "Updating Sprite Library..."
[UninstallDelete]
Type: dirifempty; Name: "{app}"

View File

@ -1,6 +1,6 @@
#define sourcepath "build\exe.win-amd64-3.9\"
#define MyAppName "Archipelago"
#define MyAppExeName "ArchipelagoClient.exe"
#define MyAppExeName "ArchipelagoLttPClient.exe"
#define MyAppIcon "icon.ico"
[Setup]
@ -52,7 +52,7 @@ Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks:
[Run]
Filename: "{tmp}\vc_redist.x64.exe"; Parameters: "/passive /norestart"; Check: IsVCRedist64BitNeeded; StatusMsg: "Installing VC++ redistributable..."
Filename: "{app}\ArchipelagoCreator"; Parameters: "update_sprites"; StatusMsg: "Updating Sprite Library..."
Filename: "{app}\ArchipelagoLttPCreator"; Parameters: "update_sprites"; StatusMsg: "Updating Sprite Library..."
[UninstallDelete]
Type: dirifempty; Name: "{app}"

View File

@ -54,10 +54,10 @@ def manifest_creation():
print("Created Manifest")
scripts = {"MultiClient.py": "ArchipelagoClient",
scripts = {"MultiClient.py": "ArchipelagoLttPClient",
"MultiMystery.py": "ArchipelagoMultiMystery",
"MultiServer.py": "ArchipelagoServer",
"gui.py": "ArchipelagoCreator",
"gui.py": "ArchipelagoLttPCreator",
"Mystery.py": "ArchipelagoMystery",
"Adjuster.py": "ArchipelagoLttPAdjuster"}