From 6af6b22d7267f15bd3873878d6593ea7171c81a9 Mon Sep 17 00:00:00 2001 From: Piotrekol <4990365+Piotrekol@users.noreply.github.com> Date: Sat, 12 Nov 2022 21:42:47 +0100 Subject: [PATCH] Misc: Rename App.exe to CollectionManagerApp.exe also changes %localappdata% settings folder name --- App/{App.csproj => CollectionManagerApp.csproj} | 0 CollectionManager.sln | 2 +- InnoSetup/script.iss | 7 +++++-- 3 files changed, 6 insertions(+), 3 deletions(-) rename App/{App.csproj => CollectionManagerApp.csproj} (100%) diff --git a/App/App.csproj b/App/CollectionManagerApp.csproj similarity index 100% rename from App/App.csproj rename to App/CollectionManagerApp.csproj diff --git a/CollectionManager.sln b/CollectionManager.sln index 0f5d185..9b409e5 100644 --- a/CollectionManager.sln +++ b/CollectionManager.sln @@ -15,7 +15,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GuiComponents", "GuiCompone EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common", "Common\Common.csproj", "{14768636-102A-4A27-AB5A-9B5D1BA316A6}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "App", "App\App.csproj", "{F87A0F61-B6F3-4B5E-8A1A-C19C8C8FEAA4}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CollectionManagerApp", "App\CollectionManagerApp.csproj", "{F87A0F61-B6F3-4B5E-8A1A-C19C8C8FEAA4}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CollectionGenerator", "CollectionGenerator\CollectionGenerator.csproj", "{3070A7AA-7493-42A7-9E0E-74878453ABB4}" EndProject diff --git a/InnoSetup/script.iss b/InnoSetup/script.iss index f7ab9fe..027bad3 100644 --- a/InnoSetup/script.iss +++ b/InnoSetup/script.iss @@ -5,7 +5,7 @@ #define MyAppVersion "4.2" #define MyAppPublisher "Piotrekol" #define MyAppURL "http://osustats.ppy.sh" -#define MyAppExeName "App.exe" +#define MyAppExeName "CollectionManagerApp.exe" [Setup] ; NOTE: The value of AppId uniquely identifies this application. @@ -51,7 +51,7 @@ Name: osdbAssociation; Description: "Associate "".osdb"" extension (Collection f Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; OnlyBelowVersion: 0,6.1 [Files] -Source: "..\App\bin\Release\net48\App.exe"; DestDir: "{app}"; Flags: ignoreversion +Source: "..\App\bin\Release\net48\CollectionManagerApp.exe"; DestDir: "{app}"; Flags: ignoreversion Source: "..\App\bin\Release\net48\downloadSources.json"; DestDir: "{app}"; Flags: ignoreversion Source: "..\App\bin\Release\net48\CollectionManager.dll"; DestDir: "{app}"; Flags: ignoreversion Source: "..\App\bin\Release\net48\CollectionManagerExtensionsDll.dll"; DestDir: "{app}"; Flags: ignoreversion @@ -76,5 +76,8 @@ Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon +[InstallDelete] +Type: files; Name: "{app}\App.exe" + [Run] Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent