Merge pull request 'update nsis script to make installed start menu link use icon' (#434) from nsi into master
the build failed Details

Reviewed-on: #434
This commit is contained in:
erinn 2020-11-27 18:43:56 -08:00
commit 04aae4d093
2 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@ InstallDirRegKey HKCU "Software\Cwtch" "installLocation"
!define MUI_INSTALLCOLORS "DFB9DE 281831"
!define MUI_ICON "..\nsis\knot.ico"
!define MUI_ICON "..\windows\cwtch.ico"
!define MUI_HEADERIMAGE
@ -83,7 +83,8 @@ Section
# create a shortcut in the start menu programs directory
CreateShortcut "$SMPROGRAMS\Cwtch.lnk" "$INSTDIR\ui.exe"
CreateDirectory "$SMPROGRAMS\Cwtch"
CreateShortcut "$SMPROGRAMS\Cwtch\Cwtch.lnk" "$INSTDIR\ui.exe" "" "$INSTDIR\cwtch.ico"
;Store installation folder
WriteRegStr HKCU "Software\Cwtch" "installLocation" $INSTDIR

View File

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB