Bump version to 15.05.95

This commit is contained in:
Arjen Hiemstra 2015-06-19 06:10:55 -07:00
parent f1ebb3389d
commit 2c139c4037
3 changed files with 14 additions and 7 deletions

View file

@ -1,5 +1,5 @@
!ifndef VERSION
!define VERSION 'BETA'
!define VERSION '15.05.95'
!endif
; The name of the installer
@ -44,6 +44,9 @@ SetCompressor /SOLID lzma
!define MUI_FINISHPAGE_RUN_TEXT "Start Cura ${VERSION}"
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchLink"
;Add an option to show release notes
!define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\release_notes.txt"
; Pages
;!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_DIRECTORY
@ -101,10 +104,10 @@ FunctionEnd
Section "Install Visual Studio 2010 Redistributable"
SetOutPath "$INSTDIR"
File "vcredist_2010_x86.exe"
File "vcredist_2010_20110908_x86.exe"
IfSilent +2
ExecWait '"$INSTDIR\vcredist_2010_x86.exe"'
ExecWait '"$INSTDIR\vcredist_2010_20110908_x86.exe" /silent /norestart'
SectionEnd