Skip to content

Commit

Permalink
Bump version of NSIS scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
klembot committed Jun 1, 2015
1 parent 024c4d3 commit f58119c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions nsis/install32.nsi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
; NOTE: this .NSI script is designed for NSIS v1.8+
; and is shamelessly ripped from https://github.com/tweecode/twine/blob/master/install.nsi

Name "Twine 2.0.5"
OutFile "..\dist\download\twine_2.0.5_win32.exe"
Name "Twine 2.0.6"
OutFile "..\dist\download\twine_2.0.6_win32.exe"

; Some default compiler settings (uncomment and change at will):
; SetCompress auto ; (can be off or force)
Expand Down Expand Up @@ -35,7 +35,7 @@ CreateShortCut "$SMPROGRAMS\Twine 2\Uninstall.lnk" "$INSTDIR\uninstalltwine.exe"
; add uninstall entry in Add/Remove Programs

WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Twine2" "" "$INSTDIR"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Twine2" "DisplayName" "Twine 2.0.5 (remove only)"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Twine2" "DisplayName" "Twine 2.0.6 (remove only)"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Twine2" "UninstallString" '"$INSTDIR\uninstalltwine.exe"'

; write out uninstaller
Expand All @@ -47,7 +47,7 @@ SectionEnd ; end of default section

; begin uninstall settings/section

UninstallText "This will uninstall Twine 2.0.5 from your system."
UninstallText "This will uninstall Twine 2.0.6 from your system."

Section Uninstall

Expand Down
8 changes: 4 additions & 4 deletions nsis/install64.nsi
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
; NOTE: this .NSI script is designed for NSIS v1.8+
; and is shamelessly ripped from https://github.com/tweecode/twine/blob/master/install.nsi

Name "Twine 2.0.5"
OutFile "..\dist\download\twine_2.0.5_win64.exe"
Name "Twine 2.0.6"
OutFile "..\dist\download\twine_2.0.6_win64.exe"

; Some default compiler settings (uncomment and change at will):
; SetCompress auto ; (can be off or force)
Expand Down Expand Up @@ -35,7 +35,7 @@ CreateShortCut "$SMPROGRAMS\Twine 2\Uninstall.lnk" "$INSTDIR\uninstalltwine.exe"
; add uninstall entry in Add/Remove Programs

WriteRegStr HKEY_LOCAL_MACHINE "SOFTWARE\Twine2" "" "$INSTDIR"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Twine2" "DisplayName" "Twine 2.0.5 (remove only)"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Twine2" "DisplayName" "Twine 2.0.6 (remove only)"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Uninstall\Twine2" "UninstallString" '"$INSTDIR\uninstalltwine.exe"'

; write out uninstaller
Expand All @@ -47,7 +47,7 @@ SectionEnd ; end of default section

; begin uninstall settings/section

UninstallText "This will uninstall Twine 2.0.5 from your system."
UninstallText "This will uninstall Twine 2.0.6 from your system."

Section Uninstall

Expand Down

0 comments on commit f58119c

Please sign in to comment.