forked from openlp/openlp
Added code to inno setup script to:
1. Remove the "support" directory that is created when OpenLP is executed. 2. Unload psvince.dll after it is used during uninstall. This allows the uninstaller to delete this dll. 3. Remove the "app" directory if it is empty. The app dir is being left behind during uninstall as a result of previous installs/un-installs. bzr-revno: 1794 Fixes: https://launchpad.net/bugs/884044
This commit is contained in:
commit
231c8b4168
@ -84,10 +84,16 @@ Name: {userappdata}\Microsoft\Internet Explorer\Quick Launch\{#AppName}; Filenam
|
|||||||
Filename: {app}\{#AppExeName}; Description: {cm:LaunchProgram,{#AppName}}; Flags: nowait postinstall skipifsilent
|
Filename: {app}\{#AppExeName}; Description: {cm:LaunchProgram,{#AppName}}; Flags: nowait postinstall skipifsilent
|
||||||
|
|
||||||
[Registry]
|
[Registry]
|
||||||
Root: HKCR; Subkey: ".osz"; ValueType: string; ValueName: ""; ValueData: "OpenLP"; Flags: uninsdeletevalue
|
Root: HKCR; Subkey: .osz; ValueType: string; ValueName: ; ValueData: OpenLP; Flags: uninsdeletevalue
|
||||||
Root: HKCR; Subkey: "OpenLP"; ValueType: string; ValueName: ""; ValueData: "OpenLP Service"; Flags: uninsdeletekey
|
Root: HKCR; Subkey: OpenLP; ValueType: string; ValueName: ; ValueData: OpenLP Service; Flags: uninsdeletekey
|
||||||
Root: HKCR; Subkey: "OpenLP\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\OpenLP.exe,0"
|
Root: HKCR; Subkey: OpenLP\DefaultIcon; ValueType: string; ValueName: ; ValueData: {app}\OpenLP.exe,0
|
||||||
Root: HKCR; Subkey: "OpenLP\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\OpenLP.exe"" ""%1"""
|
Root: HKCR; Subkey: OpenLP\shell\open\command; ValueType: string; ValueName: ; ValueData: """{app}\OpenLP.exe"" ""%1"""
|
||||||
|
|
||||||
|
[UninstallDelete]
|
||||||
|
; Remove support directory created when program is run:
|
||||||
|
Type: filesandordirs; Name: {app}\support
|
||||||
|
; Remove program directory if empty:
|
||||||
|
Name: {app}; Type: dirifempty
|
||||||
|
|
||||||
[Code]
|
[Code]
|
||||||
// Function to call psvince.dll at install time
|
// Function to call psvince.dll at install time
|
||||||
@ -173,4 +179,6 @@ begin
|
|||||||
Result := false;
|
Result := false;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
// Unload psvince.dll, otherwise it is not deleted
|
||||||
|
UnloadDLL(ExpandConstant('{app}\psvince.dll'));
|
||||||
end;
|
end;
|
Loading…
Reference in New Issue
Block a user