Use a datestamp for development builds

git-svn-id: http://svn.clifford.at/openscad/trunk@171 b57f626f-c46c-0410-a088-ec61d464b74c
stl_dim
kintel 2009-12-13 21:21:23 +00:00
parent e63ca44aca
commit fc7ee9cc39
3 changed files with 4 additions and 3 deletions

View File

@ -1,9 +1,9 @@
BUGS BUGS
---- ----
o On Linux, large files load veery slowly
TODO TODO
---- ----
o File menu: Recently opened
o Preferences o Preferences
- background colors - background colors
- Model outside/inside color - Model outside/inside color

View File

@ -1,4 +1,4 @@
isEmpty(VERSION) VERSION = 9999.99 isEmpty(VERSION) VERSION = $$system(date "+%Y.%m.%d")
DEFINES += OPENSCAD_VERSION=$$VERSION DEFINES += OPENSCAD_VERSION=$$VERSION
TEMPLATE = app TEMPLATE = app

View File

@ -1,7 +1,8 @@
#!/bin/sh #!/bin/sh
# WARNING: This script might only work with the authors setup... # WARNING: This script might only work with the authors setup...
VERSION=2010.01 VERSION=`date "+%Y.%m.%d"`
#VERSION=2010.01
echo "Building.." echo "Building.."
qmake VERSION=$VERSION qmake VERSION=$VERSION