; Script generated by the HM NIS Edit Script Wizard. ; HM NIS Edit Wizard helper defines !define PRODUCT_NAME "Jungle Math" !define PRODUCT_VERSION "1.0" !define PRODUCT_PUBLISHER "Victoria Valdez and Zoe Galbraith (Girlstart)" !define PRODUCT_WEB_SITE "http://www.girlstart.org/itgirl" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\Jungle Math.exe" !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" !define PRODUCT_UNINST_ROOT_KEY "HKLM" ; MUI 1.67 compatible ------ !include "MUI.nsh" ; MUI Settings !define MUI_ABORTWARNING !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico" !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" ; Welcome page !insertmacro MUI_PAGE_WELCOME ; License page !insertmacro MUI_PAGE_LICENSE "gpl.txt" ; Directory page !insertmacro MUI_PAGE_DIRECTORY ; Instfiles page !insertmacro MUI_PAGE_INSTFILES ; Finish page !define MUI_FINISHPAGE_RUN "$INSTDIR\Jungle Math.exe" !insertmacro MUI_PAGE_FINISH ; Uninstaller pages !insertmacro MUI_UNPAGE_INSTFILES ; Language files !insertmacro MUI_LANGUAGE "English" ; MUI end ------ Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" OutFile "Setup.exe" InstallDir "$PROGRAMFILES\Jungle Math" InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" "" ShowInstDetails show ShowUnInstDetails show Section "MainSection" SEC01 SetOutPath "$INSTDIR" SetOverwrite try File "dist\base.pyd" File "dist\bz2.pyd" File "dist\cdrom.pyd" File "dist\constants.pyd" File "dist\credits.txt" SetOutPath "$INSTDIR\data\fonts" File "dist\data\fonts\freesansbold.ttf" SetOutPath "$INSTDIR\data\images" File "dist\data\images\answercorrect1.png" File "dist\data\images\answerswrong1.png" File "dist\data\images\answerwrong1.png" File "dist\data\images\correct2.png" File "dist\data\images\correct3.png" File "dist\data\images\correct4.png" File "dist\data\images\finishedintropage copy.png" File "dist\data\images\giraffe copy.png" File "dist\data\images\hello copy.png" File "dist\data\images\junglething.jpg" File "dist\data\images\lion 3.png" File "dist\data\images\moneky copy 3.png" File "dist\data\images\newgiraffe transition screen.png" File "dist\data\images\snake 2.png" File "dist\data\images\snake background copy.png" File "dist\data\images\snakeytransitionpage.png" File "dist\data\images\wrong2.png" File "dist\data\images\wrong22.png" File "dist\data\images\wrong3.png" File "dist\data\images\wrong33.png" File "dist\data\images\wrong4.png" File "dist\data\images\wrong44.png" SetOutPath "$INSTDIR" File "dist\display.pyd" File "dist\draw.pyd" File "dist\event.pyd" File "dist\fastevent.pyd" File "dist\font.pyd" File "dist\gpl.txt" File "dist\image.pyd" File "dist\imageext.pyd" File "dist\joystick.pyd" File "dist\Jungle Math.exe" CreateDirectory "$SMPROGRAMS\Project IT Girl Games" CreateShortCut "$SMPROGRAMS\Project IT Girl Games\Jungle Math.lnk" "$INSTDIR\Jungle Math.exe" CreateShortCut "$DESKTOP\Jungle Math.lnk" "$INSTDIR\Jungle Math.exe" File "dist\key.pyd" File "dist\library.zip" File "dist\mixer.pyd" File "dist\mixer_music.pyd" File "dist\mouse.pyd" File "dist\movie.pyd" File "dist\MSVCR71.dll" File "dist\overlay.pyd" File "dist\python25.dll" File "dist\README.txt" File "dist\rect.pyd" File "dist\rwobject.pyd" File "dist\SDL.dll" File "dist\SDL_image.dll" File "dist\SDL_mixer.dll" File "dist\SDL_ttf.dll" File "dist\smpeg.dll" File "dist\sndarray.pyd" File "dist\surface.pyd" File "dist\surfarray.pyd" File "dist\surflock.pyd" File "dist\time.pyd" File "dist\transform.pyd" File "dist\unicodedata.pyd" File "dist\w9xpopen.exe" SectionEnd Section -AdditionalIcons WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}" CreateShortCut "$SMPROGRAMS\Project IT Girl Games\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url" CreateShortCut "$SMPROGRAMS\Project IT Girl Games\Uninstall.lnk" "$INSTDIR\uninst.exe" SectionEnd Section -Post WriteUninstaller "$INSTDIR\uninst.exe" WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\Jungle Math.exe" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\Jungle Math.exe" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}" SectionEnd Function un.onUninstSuccess HideWindow MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." FunctionEnd Function un.onInit MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2 Abort FunctionEnd Section Uninstall Delete "$INSTDIR\${PRODUCT_NAME}.url" Delete "$INSTDIR\uninst.exe" Delete "$INSTDIR\w9xpopen.exe" Delete "$INSTDIR\unicodedata.pyd" Delete "$INSTDIR\transform.pyd" Delete "$INSTDIR\time.pyd" Delete "$INSTDIR\surflock.pyd" Delete "$INSTDIR\surfarray.pyd" Delete "$INSTDIR\surface.pyd" Delete "$INSTDIR\sndarray.pyd" Delete "$INSTDIR\smpeg.dll" Delete "$INSTDIR\SDL_ttf.dll" Delete "$INSTDIR\SDL_mixer.dll" Delete "$INSTDIR\SDL_image.dll" Delete "$INSTDIR\SDL.dll" Delete "$INSTDIR\rwobject.pyd" Delete "$INSTDIR\rect.pyd" Delete "$INSTDIR\README.txt" Delete "$INSTDIR\python25.dll" Delete "$INSTDIR\overlay.pyd" Delete "$INSTDIR\MSVCR71.dll" Delete "$INSTDIR\movie.pyd" Delete "$INSTDIR\mouse.pyd" Delete "$INSTDIR\mixer_music.pyd" Delete "$INSTDIR\mixer.pyd" Delete "$INSTDIR\library.zip" Delete "$INSTDIR\key.pyd" Delete "$INSTDIR\Jungle Math.exe" Delete "$INSTDIR\joystick.pyd" Delete "$INSTDIR\imageext.pyd" Delete "$INSTDIR\image.pyd" Delete "$INSTDIR\gpl.txt" Delete "$INSTDIR\font.pyd" Delete "$INSTDIR\fastevent.pyd" Delete "$INSTDIR\event.pyd" Delete "$INSTDIR\draw.pyd" Delete "$INSTDIR\display.pyd" Delete "$INSTDIR\data\images\wrong44.png" Delete "$INSTDIR\data\images\wrong4.png" Delete "$INSTDIR\data\images\wrong33.png" Delete "$INSTDIR\data\images\wrong3.png" Delete "$INSTDIR\data\images\wrong22.png" Delete "$INSTDIR\data\images\wrong2.png" Delete "$INSTDIR\data\images\snakeytransitionpage.png" Delete "$INSTDIR\data\images\snake background copy.png" Delete "$INSTDIR\data\images\snake 2.png" Delete "$INSTDIR\data\images\newgiraffe transition screen.png" Delete "$INSTDIR\data\images\moneky copy 3.png" Delete "$INSTDIR\data\images\lion 3.png" Delete "$INSTDIR\data\images\junglething.jpg" Delete "$INSTDIR\data\images\hello copy.png" Delete "$INSTDIR\data\images\giraffe copy.png" Delete "$INSTDIR\data\images\finishedintropage copy.png" Delete "$INSTDIR\data\images\correct4.png" Delete "$INSTDIR\data\images\correct3.png" Delete "$INSTDIR\data\images\correct2.png" Delete "$INSTDIR\data\images\answerwrong1.png" Delete "$INSTDIR\data\images\answerswrong1.png" Delete "$INSTDIR\data\images\answercorrect1.png" Delete "$INSTDIR\data\fonts\freesansbold.ttf" Delete "$INSTDIR\credits.txt" Delete "$INSTDIR\constants.pyd" Delete "$INSTDIR\cdrom.pyd" Delete "$INSTDIR\bz2.pyd" Delete "$INSTDIR\base.pyd" Delete "$SMPROGRAMS\Project IT Girl Games\Uninstall.lnk" Delete "$SMPROGRAMS\Project IT Girl Games\Website.lnk" Delete "$DESKTOP\Jungle Math.lnk" Delete "$SMPROGRAMS\Project IT Girl Games\Jungle Math.lnk" RMDir "$SMPROGRAMS\Project IT Girl Games" RMDir "$INSTDIR\data\images" RMDir "$INSTDIR\data\fonts" RMDir "$INSTDIR" DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}" SetAutoClose true SectionEnd