update release and win build scripts

This commit is contained in:
Guilherme Brondani Torri 2015-03-04 22:00:23 +01:00
parent 21aae0f026
commit 4f6da34ce6
3 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@
; - commented out non admin install, doesn't seem to work
; - enable non admin install
#define RELEASE "0.0.18"
#define RELEASE "0.0.19"
#define BASENAME "qucs"
#define APPNAME "Qucs"
#define APPVERNAME "Quite Universal Circuit Simulator 0.0.18 binary package for Win32"
@ -62,7 +62,7 @@ UsePreviousAppDir=yes
[Registry]
Root: HKLM; Subkey: SYSTEM\CurrentControlSet\Control\Session Manager\Environment; ValueType: string; ValueName: QUCSDIR; ValueData: "{app}"; Flags: deletevalue createvalueifdoesntexist noerror; MinVersion: 0,4.00.1381
Root: HKLM; Subkey: SYSTEM\CurrentControlSet\Control\Session Manager\Environment; ValueType: string; ValueName: HOME; ValueData: "{code:HomeDir}"; Flags: createvalueifdoesntexist noerror; MinVersion: 0,4.00.1381
;Root: HKLM; Subkey: SYSTEM\CurrentControlSet\Control\Session Manager\Environment; ValueType: string; ValueName: HOME; ValueData: "{code:HomeDir}"; Flags: createvalueifdoesntexist noerror; MinVersion: 0,4.00.1381
Root: HKLM; Subkey: SYSTEM\CurrentControlSet\Control\Session Manager\Environment; ValueType: string; ValueName: ADMSXMLBINDIR; ValueData: "{app}\bin"; Flags: deletevalue createvalueifdoesntexist noerror; MinVersion: 0,4.00.1381
Root: HKLM; Subkey: SYSTEM\CurrentControlSet\Control\Session Manager\Environment; ValueType: string; ValueName: ASCOBINDIR; ValueData: "{app}\bin"; Flags: createvalueifdoesntexist noerror ; MinVersion: 0,4.00.1381

View File

@ -29,7 +29,7 @@ then
RELEASE=$1
else
RELEASE=$(date +"%y%m%d")
RELEASE="0.0.18."${RELEASE:0:6}
RELEASE="0.0.19."${RELEASE:0:6}
# Get Git short hash
GIT=$(git log --pretty=format:'%h' -n 1)
@ -123,7 +123,7 @@ rm qucs.iss
echo Saving copy to ${HOME}/Downloads/qucs-$RELEASE-win32.exe
# TODO version is hardcoded on the Inno Setup file
cp ./Output/qucs-0.0.18-setup.exe ${HOME}/Downloads/qucs-$RELEASE-win32.exe
cp ./Output/qucs-0.0.19-setup.exe ${HOME}/Downloads/qucs-$RELEASE-win32.exe
#rm -r release/Output

View File

@ -40,7 +40,7 @@ else
# Set Release git tag
# TODO get it from git tags or VERSION file
RELEASE=$(date +"%y%m%d")
RELEASE="0.0.18-"${RELEASE:0:6}
RELEASE="0.0.19-"${RELEASE:0:6}
# Get Git short hash
GIT=$(git log --pretty=format:'%h' -n 1)