diff options
-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 |