2016-04-12 19:16:52 +02:00
|
|
|
!include "MUI2.nsh"
|
|
|
|
!include "x64.nsh"
|
2017-02-12 17:34:13 +01:00
|
|
|
!include "WinVer.nsh"
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
; The name of the installer
|
|
|
|
Name "GPXSee"
|
2016-05-05 22:28:53 +02:00
|
|
|
; Program version
|
2018-01-08 23:47:45 +01:00
|
|
|
!define VERSION "5.0"
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
; The file to write
|
2016-05-05 22:28:53 +02:00
|
|
|
OutFile "GPXSee-${VERSION}_x64.exe"
|
2017-06-18 13:23:00 +02:00
|
|
|
; Compression method
|
|
|
|
SetCompressor /SOLID lzma
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
; Required execution level
|
|
|
|
RequestExecutionLevel admin
|
|
|
|
|
|
|
|
; The default installation directory
|
|
|
|
InstallDir "$PROGRAMFILES64\GPXSee"
|
|
|
|
|
2017-02-16 18:59:37 +01:00
|
|
|
; Installer executable info
|
|
|
|
VIProductVersion "${VERSION}.0.0"
|
|
|
|
VIAddVersionKey "ProductVersion" ${VERSION}
|
|
|
|
VIAddVersionKey "FileVersion" "${VERSION}.0.0"
|
|
|
|
VIAddVersionKey "ProductName" "GPXSee"
|
|
|
|
VIAddVersionKey "LegalCopyright" "GPXSee project"
|
2017-04-01 18:02:34 +02:00
|
|
|
VIAddVersionKey "FileDescription" "GPXSee installer (x64)"
|
2017-02-16 18:59:37 +01:00
|
|
|
|
2016-04-12 19:16:52 +02:00
|
|
|
; Registry key to check for directory (so if you install again, it will
|
|
|
|
; overwrite the old one automatically)
|
|
|
|
InstallDirRegKey HKLM "Software\GPXSee" "Install_Dir"
|
|
|
|
|
|
|
|
; Registry key for uninstaller
|
2016-05-03 10:18:51 +02:00
|
|
|
!define REGENTRY "Software\Microsoft\Windows\CurrentVersion\Uninstall\GPXSee"
|
2016-11-02 19:39:32 +01:00
|
|
|
; File types registry entries
|
|
|
|
!define REGGPX "GPXSee.gpx"
|
|
|
|
!define REGTCX "GPXSee.tcx"
|
|
|
|
!define REGKML "GPXSee.kml"
|
|
|
|
!define REGFIT "GPXSee.fit"
|
2016-11-11 19:54:53 +01:00
|
|
|
!define REGIGC "GPXSee.igc"
|
2016-11-18 08:03:04 +01:00
|
|
|
!define REGNMEA "GPXSee.nmea"
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
; Start menu page configuration
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKLM"
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\GPXSee"
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "GPXSee"
|
|
|
|
|
|
|
|
Var StartMenuFolder
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
; Pages
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
|
|
!insertmacro MUI_PAGE_LICENSE "licence.txt"
|
|
|
|
!insertmacro MUI_PAGE_COMPONENTS
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
|
|
!insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
|
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
; Languages
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
2017-02-12 17:34:13 +01:00
|
|
|
Function .onInit
|
|
|
|
${IfNot} ${AtLeastWin7}
|
|
|
|
MessageBox MB_OK "GPXSee can only be installed on Windows 7 or later."
|
|
|
|
Abort
|
|
|
|
${EndIf}
|
|
|
|
|
2016-04-12 19:16:52 +02:00
|
|
|
${If} ${RunningX64}
|
|
|
|
SetRegView 64
|
|
|
|
${Else}
|
|
|
|
MessageBox MB_OK "The 64b version of GPXSee can not be run on 32b systems."
|
|
|
|
Abort
|
|
|
|
${EndIf}
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
; The stuff to install
|
2017-02-12 17:34:13 +01:00
|
|
|
Section "GPXSee" SEC_APP
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
SectionIn RO
|
|
|
|
|
|
|
|
; Set output path to the installation directory.
|
|
|
|
SetOutPath $INSTDIR
|
|
|
|
|
|
|
|
; Put the files there
|
|
|
|
File "gpxsee.exe"
|
2018-01-29 00:19:57 +01:00
|
|
|
File /r "maps"
|
2017-04-17 19:56:29 +02:00
|
|
|
File "ellipsoids.csv"
|
2018-01-20 20:13:56 +01:00
|
|
|
File "gcs.csv"
|
2018-01-08 23:47:45 +01:00
|
|
|
File "pcs.csv"
|
2016-04-12 19:16:52 +02:00
|
|
|
|
2016-11-02 19:39:32 +01:00
|
|
|
; Create start menu entry and add links
|
|
|
|
SetShellVarContext all
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
|
|
|
|
CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
|
|
|
|
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
|
|
|
|
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\GPXSee.lnk" "$INSTDIR\gpxsee.exe"
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
|
|
|
|
|
|
; Create the uninstaller
|
|
|
|
WriteUninstaller "$INSTDIR\uninstall.exe"
|
|
|
|
|
2016-04-12 19:16:52 +02:00
|
|
|
; Write the installation path into the registry
|
2016-11-02 19:39:32 +01:00
|
|
|
DetailPrint "Registering application..."
|
2016-04-12 19:16:52 +02:00
|
|
|
WriteRegStr HKLM SOFTWARE\GPXSee "Install_Dir" "$INSTDIR"
|
2016-11-02 19:39:32 +01:00
|
|
|
|
2016-04-12 19:16:52 +02:00
|
|
|
; Write the uninstall keys for Windows
|
2017-04-01 18:02:34 +02:00
|
|
|
WriteRegStr HKLM "${REGENTRY}" "DisplayName" "GPXSee (x64)"
|
2016-04-12 19:16:52 +02:00
|
|
|
WriteRegStr HKLM "${REGENTRY}" "Publisher" "Martin Tuma"
|
2016-05-05 22:28:53 +02:00
|
|
|
WriteRegStr HKLM "${REGENTRY}" "DisplayVersion" "${VERSION}"
|
2016-04-12 19:16:52 +02:00
|
|
|
WriteRegStr HKLM "${REGENTRY}" "UninstallString" '"$INSTDIR\uninstall.exe"'
|
|
|
|
WriteRegDWORD HKLM "${REGENTRY}" "NoModify" 1
|
|
|
|
WriteRegDWORD HKLM "${REGENTRY}" "NoRepair" 1
|
|
|
|
|
2016-11-02 19:39:32 +01:00
|
|
|
; Associate file formats
|
|
|
|
DetailPrint "Associating file types..."
|
2016-05-03 10:18:51 +02:00
|
|
|
WriteRegStr HKCR ".gpx" "" "${REGGPX}"
|
|
|
|
WriteRegStr HKCR "${REGGPX}" "" "GPS Exchange Format"
|
|
|
|
WriteRegStr HKCR "${REGGPX}\DefaultIcon" "" "$INSTDIR\GPXSee.exe,1"
|
|
|
|
WriteRegStr HKCR "${REGGPX}\shell\open\command" "" "$\"$INSTDIR\GPXSee.exe$\" $\"%1$\""
|
2016-11-02 19:39:32 +01:00
|
|
|
WriteRegStr HKCR ".tcx" "" "${REGTCX}"
|
|
|
|
WriteRegStr HKCR "${REGTCX}" "" "Training Center XML"
|
|
|
|
WriteRegStr HKCR "${REGTCX}\DefaultIcon" "" "$INSTDIR\GPXSee.exe,2"
|
|
|
|
WriteRegStr HKCR "${REGTCX}\shell\open\command" "" "$\"$INSTDIR\GPXSee.exe$\" $\"%1$\""
|
|
|
|
WriteRegStr HKCR ".kml" "" "${REGKML}"
|
|
|
|
WriteRegStr HKCR "${REGKML}" "" "Keyhole Markup Language"
|
|
|
|
WriteRegStr HKCR "${REGKML}\DefaultIcon" "" "$INSTDIR\GPXSee.exe,3"
|
|
|
|
WriteRegStr HKCR "${REGKML}\shell\open\command" "" "$\"$INSTDIR\GPXSee.exe$\" $\"%1$\""
|
|
|
|
WriteRegStr HKCR ".fit" "" "${REGFIT}"
|
|
|
|
WriteRegStr HKCR "${REGFIT}" "" "Flexible and Interoperable Data Transfer"
|
|
|
|
WriteRegStr HKCR "${REGFIT}\DefaultIcon" "" "$INSTDIR\GPXSee.exe,4"
|
|
|
|
WriteRegStr HKCR "${REGFIT}\shell\open\command" "" "$\"$INSTDIR\GPXSee.exe$\" $\"%1$\""
|
2016-11-11 19:54:53 +01:00
|
|
|
WriteRegStr HKCR ".igc" "" "${REGIGC}"
|
|
|
|
WriteRegStr HKCR "${REGIGC}" "" "Flight Recorder Data Format"
|
|
|
|
WriteRegStr HKCR "${REGIGC}\DefaultIcon" "" "$INSTDIR\GPXSee.exe,5"
|
|
|
|
WriteRegStr HKCR "${REGIGC}\shell\open\command" "" "$\"$INSTDIR\GPXSee.exe$\" $\"%1$\""
|
2016-11-18 08:03:04 +01:00
|
|
|
WriteRegStr HKCR ".nmea" "" "${REGNMEA}"
|
|
|
|
WriteRegStr HKCR "${REGNMEA}" "" "NMEA 0183 data"
|
|
|
|
WriteRegStr HKCR "${REGNMEA}\DefaultIcon" "" "$INSTDIR\GPXSee.exe,6"
|
|
|
|
WriteRegStr HKCR "${REGNMEA}\shell\open\command" "" "$\"$INSTDIR\GPXSee.exe$\" $\"%1$\""
|
2016-11-11 19:54:53 +01:00
|
|
|
|
2016-05-03 10:18:51 +02:00
|
|
|
System::Call 'shell32.dll::SHChangeNotify(i, i, i, i) v (0x08000000, 0, 0, 0)'
|
|
|
|
|
2016-04-12 19:16:52 +02:00
|
|
|
SectionEnd
|
|
|
|
|
2017-02-12 17:34:13 +01:00
|
|
|
Section "QT framework" SEC_QT
|
|
|
|
|
|
|
|
SectionIn RO
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
File "Qt5Core.dll"
|
|
|
|
File "Qt5Gui.dll"
|
|
|
|
File "Qt5Widgets.dll"
|
|
|
|
File "Qt5PrintSupport.dll"
|
|
|
|
File "Qt5Network.dll"
|
|
|
|
File /r "platforms"
|
|
|
|
File /r "imageformats"
|
2016-05-29 19:35:38 +02:00
|
|
|
File /r "printsupport"
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "MSVC runtime" SEC_MSVC
|
|
|
|
|
2017-02-12 17:34:13 +01:00
|
|
|
SectionIn RO
|
|
|
|
|
2016-04-12 19:16:52 +02:00
|
|
|
DetailPrint "Checking whether Visual C++ 2015 Redistributable is already installed..."
|
|
|
|
ReadRegDword $R0 HKLM "SOFTWARE\Wow6432Node\Microsoft\VisualStudio\14.0\VC\Runtimes\x64" "Installed"
|
|
|
|
StrCmp $R0 "1" 0 +3
|
|
|
|
DetailPrint "Visual C++ 2015 Redistributable is already installed, skipping install."
|
|
|
|
Goto done
|
|
|
|
|
|
|
|
DetailPrint "Installing Visual C++ 2015 Redistributable..."
|
|
|
|
SetOutPath $TEMP
|
2017-06-18 12:23:54 +02:00
|
|
|
File "vcredist_x64.exe"
|
2017-06-19 22:48:48 +02:00
|
|
|
ExecWait '"$TEMP\vcredist_x64.exe" /install /quiet /norestart'
|
2017-02-13 20:13:13 +01:00
|
|
|
SetOutPath $INSTDIR
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
done:
|
|
|
|
SectionEnd
|
|
|
|
|
2017-02-12 17:34:13 +01:00
|
|
|
Section "OpenSSL" SEC_OPENSSL
|
|
|
|
|
|
|
|
File "libeay32.dll"
|
|
|
|
File "ssleay32.dll"
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
Section "ANGLE" SEC_ANGLE
|
|
|
|
|
|
|
|
File "libGLESv2.dll"
|
|
|
|
File "libEGL.dll"
|
|
|
|
File "D3DCompiler_47.dll"
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
2018-02-08 18:16:44 +01:00
|
|
|
SectionGroup "Localization" SEC_LOCALE
|
|
|
|
Section "Czech"
|
|
|
|
CreateDirectory "$INSTDIR\locale"
|
|
|
|
File /oname=locale\gpxsee_cs.qm locale\gpxsee_cs.qm
|
|
|
|
SectionEnd
|
|
|
|
Section "German"
|
|
|
|
CreateDirectory "$INSTDIR\locale"
|
|
|
|
File /oname=locale\gpxsee_de.qm locale\gpxsee_de.qm
|
|
|
|
SectionEnd
|
|
|
|
Section "Finish"
|
|
|
|
CreateDirectory "$INSTDIR\locale"
|
|
|
|
File /oname=locale\gpxsee_fi.qm locale\gpxsee_fi.qm
|
|
|
|
SectionEnd
|
|
|
|
Section "Russian"
|
|
|
|
CreateDirectory "$INSTDIR\locale"
|
|
|
|
File /oname=locale\gpxsee_ru.qm locale\gpxsee_ru.qm
|
|
|
|
SectionEnd
|
|
|
|
Section "Swedish"
|
|
|
|
CreateDirectory "$INSTDIR\locale"
|
|
|
|
File /oname=locale\gpxsee_sv.qm locale\gpxsee_sv.qm
|
|
|
|
SectionEnd
|
|
|
|
SectionGroupEnd
|
|
|
|
|
2016-04-12 19:16:52 +02:00
|
|
|
;--------------------------------
|
|
|
|
|
|
|
|
; Uninstaller
|
|
|
|
|
|
|
|
Section "Uninstall"
|
|
|
|
|
|
|
|
; Remove registry keys
|
2016-04-15 18:19:35 +02:00
|
|
|
SetRegView 64
|
2016-04-12 19:16:52 +02:00
|
|
|
DeleteRegKey HKLM "${REGENTRY}"
|
|
|
|
DeleteRegKey HKLM SOFTWARE\GPXSee
|
|
|
|
|
|
|
|
; Remove directories used
|
|
|
|
RMDir /r "$INSTDIR"
|
|
|
|
|
|
|
|
; Remove Start menu entries
|
|
|
|
SetShellVarContext all
|
|
|
|
!insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuFolder
|
|
|
|
Delete "$SMPROGRAMS\$StartMenuFolder\*.*"
|
2016-05-03 10:18:51 +02:00
|
|
|
RMDir "$SMPROGRAMS\$StartMenuFolder"
|
|
|
|
|
2016-11-02 19:39:32 +01:00
|
|
|
; Remove File associations
|
2016-05-03 10:18:51 +02:00
|
|
|
DeleteRegKey HKCR "${REGGPX}"
|
|
|
|
DeleteRegKey HKCR ".gpx"
|
2016-11-02 19:39:32 +01:00
|
|
|
DeleteRegKey HKCR "${REGTCX}"
|
|
|
|
DeleteRegKey HKCR ".tcx"
|
|
|
|
DeleteRegKey HKCR "${REGKML}"
|
|
|
|
DeleteRegKey HKCR ".kml"
|
|
|
|
DeleteRegKey HKCR "${REGFIT}"
|
|
|
|
DeleteRegKey HKCR ".fit"
|
2016-11-11 19:54:53 +01:00
|
|
|
DeleteRegKey HKCR "${REGIGC}"
|
|
|
|
DeleteRegKey HKCR ".igc"
|
2016-11-18 08:03:04 +01:00
|
|
|
DeleteRegKey HKCR "${REGNMEA}"
|
|
|
|
DeleteRegKey HKCR ".nmea"
|
2016-05-03 10:18:51 +02:00
|
|
|
System::Call 'shell32.dll::SHChangeNotify(i, i, i, i) v (0x08000000, 0, 0, 0)'
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
;-------------------------------
|
|
|
|
|
|
|
|
;Descriptions
|
|
|
|
|
|
|
|
;Language strings
|
|
|
|
LangString DESC_QT ${LANG_ENGLISH} \
|
2017-02-12 17:34:13 +01:00
|
|
|
"QT cross-platform application framework."
|
2016-04-12 19:16:52 +02:00
|
|
|
LangString DESC_MSVC ${LANG_ENGLISH} \
|
2017-02-12 17:34:13 +01:00
|
|
|
"Visual C++ 2015 runtime components. If already installed, will be skipped."
|
|
|
|
LangString DESC_OPENSSL ${LANG_ENGLISH} \
|
|
|
|
"OpenSSL library. Required for HTTPS to work."
|
|
|
|
LangString DESC_ANGLE ${LANG_ENGLISH} \
|
|
|
|
"ANGLE (OpenGL via Direct3D). Enables OpenGL on systems without native OpenGL drivers."
|
2016-04-12 19:16:52 +02:00
|
|
|
LangString DESC_APP ${LANG_ENGLISH} \
|
|
|
|
"GPXSee application"
|
2018-02-08 18:16:44 +01:00
|
|
|
LangString DESC_LOCALE ${LANG_ENGLISH} \
|
|
|
|
"Localization"
|
2016-04-12 19:16:52 +02:00
|
|
|
|
|
|
|
;Assign language strings to sections
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_QT} $(DESC_QT)
|
2017-02-12 17:34:13 +01:00
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_OPENSSL} $(DESC_OPENSSL)
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_ANGLE} $(DESC_ANGLE)
|
2016-04-12 19:16:52 +02:00
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_MSVC} $(DESC_MSVC)
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_APP} $(DESC_APP)
|
2018-02-08 18:16:44 +01:00
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SEC_LOCALE} $(DESC_LOCALE)
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|