Skip to content

Commit

Permalink
Misc: Rename App.exe to CollectionManagerApp.exe
Browse files Browse the repository at this point in the history
also changes %localappdata% settings folder name
  • Loading branch information
Piotrekol committed Nov 12, 2022
1 parent 6383577 commit 6af6b22
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion CollectionManager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions InnoSetup/script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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

0 comments on commit 6af6b22

Please sign in to comment.