From af89e263226174989bbd9d7ce993846c8fb6fc07 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Thu, 6 Jun 2013 22:18:24 -0300 Subject: Updated version to 2013.06 diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 870b498..6ad6e32 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,4 +1,4 @@ -OpenSCAD 2013.05 +OpenSCAD 2013.06 ================ Language Features: -- cgit v0.10.1 From 0d448ff3cdf2958f6721dd5ae705b7f81d54acf0 Mon Sep 17 00:00:00 2001 From: Don Bright Date: Fri, 7 Jun 2013 14:07:50 -0500 Subject: linux mint -> debian diff --git a/scripts/uni-get-dependencies.sh b/scripts/uni-get-dependencies.sh index e2fdaa7..f0281d9 100755 --- a/scripts/uni-get-dependencies.sh +++ b/scripts/uni-get-dependencies.sh @@ -74,6 +74,8 @@ if [ -e /etc/issue ]; then get_debian_deps elif [ "`grep -i debian /etc/issue`" ]; then get_debian_deps + elif [ "`grep -i mint /etc/issue`" ]; then + get_debian_deps elif [ "`grep -i suse /etc/issue`" ]; then get_opensuse_deps elif [ "`grep -i fedora /etc/issue`" ]; then -- cgit v0.10.1 From 0df515b46696d95a4c50bb9383105bef2f78236e Mon Sep 17 00:00:00 2001 From: Don Bright Date: Fri, 7 Jun 2013 15:24:07 -0400 Subject: build fix for gcc 4.7, fedora 17 diff --git a/scripts/uni-get-dependencies.sh b/scripts/uni-get-dependencies.sh index e2fdaa7..f5ace44 100755 --- a/scripts/uni-get-dependencies.sh +++ b/scripts/uni-get-dependencies.sh @@ -7,8 +7,9 @@ get_fedora_deps() { sudo yum install qt-devel bison flex eigen2-devel python-paramiko \ - boost-devel mpfr-devel gmp-devel glew-devel CGAL-devel gcc pkgconfig \ - git libXmu-devel curl imagemagick + boost-devel mpfr-devel gmp-devel glew-devel CGAL-devel gcc gcc-c++ pkgconfig \ + opencsg-devel git libXmu-devel curl imagemagick ImageMagick make \ + xorg-x11-server-Xvfb } get_qomo_deps() diff --git a/src/mainwin.cc b/src/mainwin.cc index 946bc2a..d10337d 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -655,7 +655,11 @@ bool MainWindow::compile(bool reload, bool procevents) if (procevents) QApplication::processEvents(); AbstractNode::resetIndexCounter(); - this->root_inst = ModuleInstantiation("group"); + + // split these two lines - gcc 4.7 bug + ModuleInstantiation mi = ModuleInstantiation( "group" ); + this->root_inst = mi; + this->absolute_root_node = this->root_module->instantiate(&top_ctx, &this->root_inst, NULL); if (this->absolute_root_node) { -- cgit v0.10.1 From 9e78c066f9a96f9b5fca360844dd42acde2ef3a9 Mon Sep 17 00:00:00 2001 From: Don Bright Date: Fri, 7 Jun 2013 20:26:50 -0500 Subject: list the gallium bugs on linux diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 6ad6e32..1de208a 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -17,7 +17,7 @@ o Added basic syntax highlighting in the editor o There is now a built-in library path in user-space: http://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Libraries#Library_Locations o Commandline output to PNG, with various camera and rendering settings. - Run openscad -h to see usage info. + Run openscad -h to see usage info or see the OpenSCAD wiki user manual. o Attempting to open dxf, off or stl files in the GUI will now create an import statement. o The preview operator (%) will now preserve any manually set color o The highlight operator (#) will now color the object in transparent red @@ -47,6 +47,10 @@ o Regression test auto-starts & stops Xvfb / Xvnc if on headless unix machine o The backend is finally independent of Qt o Windows: We now have a 64-bit version +Known Bugs: +o Linux: command-line png rendering on Gallium is flaky. + Workaround: use CGAL --render or hardware rendering. + OpenSCAD 2013.01 ================ -- cgit v0.10.1