diff options
author | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-12-13 21:21:23 (GMT) |
---|---|---|
committer | kintel <kintel@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-12-13 21:21:23 (GMT) |
commit | fc7ee9cc39d4b33b94f876dd0c3b98ff34d00756 (patch) | |
tree | 437393786d87c9bead224c80646b5d9d0d23b7d0 | |
parent | e63ca44aca045492fedae85b19b17d1e4d184950 (diff) |
Use a datestamp for development builds
git-svn-id: http://svn.clifford.at/openscad/trunk@171 b57f626f-c46c-0410-a088-ec61d464b74c
-rw-r--r-- | TODO.txt | 2 | ||||
-rw-r--r-- | openscad.pro | 2 | ||||
-rwxr-xr-x | release-macosx.sh | 3 |
3 files changed, 4 insertions, 3 deletions
@@ -1,9 +1,9 @@ BUGS ---- +o On Linux, large files load veery slowly TODO ---- -o File menu: Recently opened o Preferences - background colors - Model outside/inside color diff --git a/openscad.pro b/openscad.pro index 7ba2580..5adfaff 100644 --- a/openscad.pro +++ b/openscad.pro @@ -1,4 +1,4 @@ -isEmpty(VERSION) VERSION = 9999.99 +isEmpty(VERSION) VERSION = $$system(date "+%Y.%m.%d") DEFINES += OPENSCAD_VERSION=$$VERSION TEMPLATE = app diff --git a/release-macosx.sh b/release-macosx.sh index f92e723..615a65f 100755 --- a/release-macosx.sh +++ b/release-macosx.sh @@ -1,7 +1,8 @@ #!/bin/sh # WARNING: This script might only work with the authors setup... -VERSION=2010.01 +VERSION=`date "+%Y.%m.%d"` +#VERSION=2010.01 echo "Building.." qmake VERSION=$VERSION |