Skip to content

Commit

Permalink
Updating Assembly information.
Browse files Browse the repository at this point in the history
Updating WiinUPro Installer.
  • Loading branch information
Justin Keys committed Dec 31, 2019
1 parent bd55f96 commit ba41176
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions Installers/wiinupro_installer.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;Inno Setup 6
#define MyAppName "WiinUPro"
#define MyAppVersion "0.9.3"
#define MyAppVersion "0.9.4"
#define MyAppPublisher "Justin Keys"
#define MyAppURL "https://github.com/KeyPuncher/WiinUPro/releases"
#define MyAppExeName "WiinUPro.exe"
Expand Down Expand Up @@ -128,22 +128,22 @@ end;
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
var
FileName: String;
DirName: String;
begin
if CurUninstallStep = usPostUninstall then
begin
FileName := ExpandConstant('{userappdata}') + '\WiinUSoft_prefs.config';
if FileExists(FileName) then
DirName := ExpandConstant('{userappdata}') + '\WiinUPro';
if DirExists(DirName) then
begin
if (GetUninstallString() = '') then
begin
if MsgBox('Do you want to delete your saved WiinUSoft preferences ?',
if MsgBox('Do you want to delete your saved WiinUPro preferences ?',
mbConfirmation, MB_YESNO) = IDYES
then
DeleteFile(FileName);
DelTree(DirName, True, True, True);
end
else
DeleteFile(FileName);
DelTree(DirName, True, True, True);
end;
end;
end;
Expand Down Expand Up @@ -254,7 +254,7 @@ begin
Result := False;
if (GetUninstallString() <> '') then
begin
if MsgBox('There is another version of WiinUSoft installed. Uninstall it?',
if MsgBox('There is another version of WiinUPro installed. Uninstall it?',
mbConfirmation, MB_YESNO) = IDYES
then
Result := True;
Expand Down
4 changes: 2 additions & 2 deletions Nintroller/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.6.2.551")]
[assembly: AssemblyFileVersion("2.6.2.551")]
[assembly: AssemblyVersion("2.7.1.616")]
[assembly: AssemblyFileVersion("2.7.1.616")]
4 changes: 2 additions & 2 deletions WiinUPro/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.9.3.592")]
[assembly: AssemblyFileVersion("0.9.3.592")]
[assembly: AssemblyVersion("0.9.4.616")]
[assembly: AssemblyFileVersion("0.9.4.616")]
4 changes: 2 additions & 2 deletions WiinUSoft/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.4.1.592")]
[assembly: AssemblyFileVersion("3.4.1.592")]
[assembly: AssemblyVersion("3.4.1.616")]
[assembly: AssemblyFileVersion("3.4.1.616")]

0 comments on commit ba41176

Please sign in to comment.