From 3540986fec2b0239e7649199a66b480399594928 Mon Sep 17 00:00:00 2001 From: 2press Date: Sat, 30 Oct 2021 12:55:30 +0200 Subject: [PATCH] Upgrade version in setup --- inno-setup/scct.iss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inno-setup/scct.iss b/inno-setup/scct.iss index ad0d47a..21a08c2 100644 --- a/inno-setup/scct.iss +++ b/inno-setup/scct.iss @@ -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" @@ -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);