Skip to content
This repository has been archived by the owner on Nov 24, 2024. It is now read-only.

Commit

Permalink
Upgrade version in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
2press committed Oct 30, 2021
1 parent fcd3e86 commit 3540986
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inno-setup/scct.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "StarCraft Casting Tool"
#define MyAppVersion "2.10.2"
#define MyDataVersion "2.10.0"
#define MyAppVersion "2.11.0"
#define MyDataVersion "2.11.0"
#define MyAppPublisher "team pheeniX"
#define MyAppURL "https://teampheenix.github.io/StarCraft-Casting-Tool/"
#define MyAppExeName "StarCraft-Casting-Tool.exe"
Expand Down Expand Up @@ -65,7 +65,7 @@ procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
begin
if CurUninstallStep = usPostUninstall then
begin
if MsgBox('Do you want to delete StarCraft Casting Tool`s profile data?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2) = IDYES then
if MsgBox('Do you want to delete StarCraft Casting Tool´s profile data?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2) = IDYES then
//this is the msg that will display after uninstall,change is as you prefer
begin
DelTree(ExpandConstant('{localappdata}\team pheeniX\StarCraft-Casting-Tool'), True, True, True);
Expand Down

0 comments on commit 3540986

Please sign in to comment.