diff --git a/pkg/gpxsee.nsi b/pkg/gpxsee.nsi index 7059ccc7..ae40f19b 100644 --- a/pkg/gpxsee.nsi +++ b/pkg/gpxsee.nsi @@ -16,6 +16,14 @@ RequestExecutionLevel admin ; The default installation directory InstallDir "$PROGRAMFILES\GPXSee" +; Installer executable info +VIProductVersion "${VERSION}.0.0" +VIAddVersionKey "ProductVersion" ${VERSION} +VIAddVersionKey "FileVersion" "${VERSION}.0.0" +VIAddVersionKey "ProductName" "GPXSee" +VIAddVersionKey "LegalCopyright" "GPXSee project" +VIAddVersionKey "FileDescription" "GPXSee installer" + ; Registry key to check for directory (so if you install again, it will ; overwrite the old one automatically) InstallDirRegKey HKLM "Software\GPXSee" "Install_Dir" diff --git a/pkg/gpxsee64.nsi b/pkg/gpxsee64.nsi index f77f4768..7042c080 100644 --- a/pkg/gpxsee64.nsi +++ b/pkg/gpxsee64.nsi @@ -16,6 +16,14 @@ RequestExecutionLevel admin ; The default installation directory InstallDir "$PROGRAMFILES64\GPXSee" +; Installer executable info +VIProductVersion "${VERSION}.0.0" +VIAddVersionKey "ProductVersion" ${VERSION} +VIAddVersionKey "FileVersion" "${VERSION}.0.0" +VIAddVersionKey "ProductName" "GPXSee" +VIAddVersionKey "LegalCopyright" "GPXSee project" +VIAddVersionKey "FileDescription" "GPXSee installer (64b)" + ; Registry key to check for directory (so if you install again, it will ; overwrite the old one automatically) InstallDirRegKey HKLM "Software\GPXSee" "Install_Dir"