NSIS: use pretty name for Start Menu shortcut

This commit is contained in:
Filippo Gentile 2021-12-03 19:55:57 +01:00
parent 3ecd70c1b1
commit e74cf4b73a
1 changed files with 2 additions and 2 deletions

View File

@ -226,7 +226,7 @@ Section "Start Menu Shortcuts" sm_shorcuts
# Start Menu # Start Menu
SetShellVarContext current SetShellVarContext current
CreateDirectory "$SMPROGRAMS\${COMPANY_NAME}" CreateDirectory "$SMPROGRAMS\${COMPANY_NAME}"
CreateShortCut "$SMPROGRAMS\${COMPANY_NAME}\${APP_PRODUCT}.lnk" "$INSTDIR\${MR_TIMETABLE_PLANNER_EXE}" "" "$INSTDIR\icon.ico" CreateShortCut "$SMPROGRAMS\${COMPANY_NAME}\${APP_NAME}.lnk" "$INSTDIR\${MR_TIMETABLE_PLANNER_EXE}" "" "$INSTDIR\icon.ico"
SectionEnd SectionEnd
; Open a section to register file type ; Open a section to register file type
@ -321,7 +321,7 @@ FunctionEnd
Section un.main_program Section un.main_program
# Remove Start Menu launcher # Remove Start Menu launcher
Delete "$SMPROGRAMS\${COMPANY_NAME}\${APP_PRODUCT}.lnk" Delete "$SMPROGRAMS\${COMPANY_NAME}\${APP_NAME}.lnk"
# Try to remove the Start Menu folder - this will only happen if it is empty # Try to remove the Start Menu folder - this will only happen if it is empty
RMDir "$SMPROGRAMS\${COMPANY_NAME}" RMDir "$SMPROGRAMS\${COMPANY_NAME}"