diff --git a/InnoSetup/ShareX setup.iss b/InnoSetup/ShareX setup.iss index 3162e881c..cc7e5affa 100644 --- a/InnoSetup/ShareX setup.iss +++ b/InnoSetup/ShareX setup.iss @@ -84,6 +84,9 @@ Source: "..\Lib\screen-capture-recorder-x64.dll"; DestDir: {app}; Flags: regserv Source: "..\Lib\audio_sniffer.dll"; DestDir: {app}; Flags: regserver 32bit; Check: IsAdminLoggedOn and not IsWin64 Source: "..\Lib\audio_sniffer-x64.dll"; DestDir: {app}; Flags: regserver 64bit; Check: IsAdminLoggedOn and IsWin64 +[InstallDelete] +Type: files; Name: "{app}\*.pdb" + [Icons] Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppFile}"; WorkingDir: "{app}" Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"; WorkingDir: "{app}" diff --git a/ShareX_Setup/Program.cs b/ShareX_Setup/Program.cs index 844a40260..fd1801822 100644 --- a/ShareX_Setup/Program.cs +++ b/ShareX_Setup/Program.cs @@ -41,7 +41,7 @@ private enum SetupType Beta // Debug build setup, uploads it using Debug/ShareX.exe } - private const SetupType Setup = SetupType.Stable; + private const SetupType Setup = SetupType.Beta; private static string parentDir = @"..\..\..\"; private static string binDir = Path.Combine(parentDir, @"ShareX\bin");