Update setup.iss

This commit is contained in:
Namhyeon Go 2024-05-13 17:44:16 +09:00
parent 30ab79eae3
commit 6361cb333e

View File

@ -75,7 +75,7 @@ AppName=WelsonJS
[Code]
const
UninstSiteURL = 'https://policy.catswords.social/voc_en.html';
UninstSiteURL = 'https://github.com/gnh1201/welsonjs';
procedure SetElevationBit(Filename: string);
var
@ -109,5 +109,5 @@ var
ErrorCode: Integer;
begin
if CurUninstallStep = usDone then
ShellExec('explorer', UninstSiteURL, '', '', SW_SHOW, ewNoWait, ErrorCode);
ShellExec('open', UninstSiteURL, '', '', SW_SHOW, ewNoWait, ErrorCode);
end;