diff options
-rw-r--r-- | RELEASE_NOTES | 10 | ||||
-rw-r--r-- | openscad.pro | 7 | ||||
-rw-r--r-- | scripts/chrpath_linux.c | 2 |
3 files changed, 16 insertions, 3 deletions
diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 69fe747..972da0a 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,10 +1,18 @@ +OpenSCAD 20XX.YY +================ + -OpenSCAD 2010.XX +OpenSCAD 2011.01 ================ o Added rands() function o Added sign() function +o Now supports escaping of the following characters in strings: \n, \t, \r, \\, \" +o Support nested includes +o Improved parsing of numbers +o DXF: output LWPOLYLINE instead of just LINE entities o Bugfixes: More robust DXF export +o Some bugs fixed, maybe some new bugs added OpenSCAD 2010.05 ================ diff --git a/openscad.pro b/openscad.pro index 42a5d22..0e94eb0 100644 --- a/openscad.pro +++ b/openscad.pro @@ -1,4 +1,9 @@ -isEmpty(VERSION) VERSION = $$system(date "+%Y.%m.%d") +win32 { + isEmpty(VERSION) VERSION = $$system(date /t) +} else { + isEmpty(VERSION) VERSION = $$system(date "+%Y.%m.%d") +} + DEFINES += OPENSCAD_VERSION=$$VERSION TEMPLATE = app RESOURCES = openscad.qrc diff --git a/scripts/chrpath_linux.c b/scripts/chrpath_linux.c index 000244a..685913c 100644 --- a/scripts/chrpath_linux.c +++ b/scripts/chrpath_linux.c @@ -476,7 +476,7 @@ elf_open(const char *filename, int flags, Elf_Ehdr *ehdr) if (ehdr->e_phentsize != sizeof(Elf_Phdr)) { fprintf(stderr, "section size was read as %d, not %d!\n", - ehdr->e_phentsize, sizeof(Elf_Phdr)); + ehdr->e_phentsize, (int)sizeof(Elf_Phdr)); close(fd); return -1; } |