|
@@ -38,6 +38,8 @@ Section "Common Files (Required)"
|
|
|
File "installer\QtNetwork4.dll"
|
|
|
File "installer\QtWebKit4.dll"
|
|
|
File "installer\qjson.dll"
|
|
|
+ File "installer\libeay32.dll"
|
|
|
+ File "installer\ssleay32.dll"
|
|
|
File "installer\vcredist_sp1_x86.exe"
|
|
|
File "installer\GPL3.txt"
|
|
|
|
|
@@ -55,7 +57,7 @@ Section "Common Files (Required)"
|
|
|
WriteUninstaller "$INSTDIR\uninstall.exe"
|
|
|
#create shortcuts
|
|
|
CreateDirectory "$SMPROGRAMS\PhotoBunny"
|
|
|
- CreateShortCut "$SMPROGRAMS\PhotoBunny\FB SlideShow.lnk" "$INSTDIR\PhotoBunny.exe"
|
|
|
+ CreateShortCut "$SMPROGRAMS\PhotoBunny\PhotoBunny.lnk" "$INSTDIR\PhotoBunny.exe"
|
|
|
CreateShortCut "$SMPROGRAMS\PhotoBunny\Licence.lnk" "$INSTDIR\GPL3.txt"
|
|
|
CreateShortCut "$SMPROGRAMS\PhotoBunny\Uninstall.lnk" "$INSTDIR\uninstall.exe"
|
|
|
SectionEnd
|
|
@@ -63,12 +65,14 @@ SectionEnd
|
|
|
#uninstall section
|
|
|
Section "Uninstall"
|
|
|
#remove program files
|
|
|
- Delete "$INSTDIR\PhotoBunnyexe"
|
|
|
+ Delete "$INSTDIR\PhotoBunny.exe"
|
|
|
Delete "$INSTDIR\QtCore4.dll"
|
|
|
Delete "$INSTDIR\QtGui4.dll"
|
|
|
Delete "$INSTDIR\QtNetwork4.dll"
|
|
|
Delete "$INSTDIR\QtWebKit4.dll"
|
|
|
Delete "$INSTDIR\qjson.dll"
|
|
|
+ Delete "$INSTDIR\libeay32.dll"
|
|
|
+ Delete "$INSTDIR\ssleay32.dll"
|
|
|
Delete "$INSTDIR\GPL3.txt"
|
|
|
Delete "$INSTDIR\uninstall.exe"
|
|
|
|