diff --git a/cmake/templates/NSIS.template.in b/cmake/templates/NSIS.template.in index ff80c21588..8c7479af48 100644 --- a/cmake/templates/NSIS.template.in +++ b/cmake/templates/NSIS.template.in @@ -1173,7 +1173,11 @@ Section "-Core installation" !insertmacro MUI_STARTMENU_WRITE_END - ApplicationID::Set "$SMPROGRAMS\$STARTMENU_FOLDER\@INTERFACE_SHORTCUT_NAME@.lnk" "com.highfidelity.interface" + !if @PRODUCTION_BUILD@ == 1 + ApplicationID::Set "$SMPROGRAMS\$STARTMENU_FOLDER\@INTERFACE_SHORTCUT_NAME@.lnk" "com.highfidelity.interface" + !else + ApplicationID::Set "$SMPROGRAMS\$STARTMENU_FOLDER\@INTERFACE_SHORTCUT_NAME@.lnk" "com.highfidelity.interface-dev" + !endif @CPACK_NSIS_EXTRA_INSTALL_COMMANDS@ diff --git a/server-console/src/main.js b/server-console/src/main.js index ab35529b48..498be966ed 100644 --- a/server-console/src/main.js +++ b/server-console/src/main.js @@ -867,6 +867,7 @@ function onContentLoaded() { } catch (e) { } + var appUserModelId = 'com.highfidelity.interface'; // For Windows jump list, etc. if (currentVersion !== null) { const CHECK_FOR_UPDATES_INTERVAL_SECONDS = 60 * 30; var hasShownUpdateNotification = false; @@ -878,7 +879,7 @@ function onContentLoaded() { title: 'An update is available!', message: 'High Fidelity version ' + latestVersion + ' is available', wait: true, - appID: 'com.highfidelity.interface', + appID: appUserModelId, url: url }); hasShownUpdateNotification = true;