Skip to content

Commit

Permalink
added splash screen
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/jailer/code/trunk@1279 3dd849cd-670e-4645-a7cd-dd197c8d0e81
  • Loading branch information
rwisser committed May 17, 2017
1 parent cb7ddaf commit d49d50c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion admin/Jailer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ Section "Start Menu Shortcuts"

SectionEnd

Section "Desktop Shortcuts"

CreateShortcut "$DESKTOP\Jailer ${Version}.lnk" "$INSTDIR\Jailer.exe"
CreateShortcut "$DESKTOP\Jailer ${Version} Data Browser.lnk" "$INSTDIR\JailerDataBrowser.exe"

SectionEnd

;--------------------------------

; Uninstaller
Expand All @@ -84,7 +91,10 @@ Section "Uninstall"
; Remove shortcuts, if any
Delete "$SMPROGRAMS\Jailer\*.*"
Delete "$INSTDIR\*.*"


Delete "$DESKTOP\Jailer ${Version}.lnk"
Delete "$DESKTOP\Jailer ${Version} Data Browser.lnk"

; Remove directories used
RMDir "$SMPROGRAMS\Jailer"
RMDir "$INSTDIR"
Expand Down

0 comments on commit d49d50c

Please sign in to comment.