From 224572585963a8b63258572a238a68b3c48d6d0d Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Fri, 5 Aug 2011 23:13:40 +0200 Subject: verbose option diff --git a/doc/TODO.txt b/doc/TODO.txt index 49cacd7..67d4d9e 100644 --- a/doc/TODO.txt +++ b/doc/TODO.txt @@ -119,6 +119,8 @@ o Misc - Save: Ask for confirmation if file has been externally changed - Rename OpenCSG and CGAL to smth. not specific to the underlying libraries (e.g Preview, Render) +o Cmd-line + - Add verbose option (PRINT command from mainwin.cc and progress output) ENGINE ------ -- cgit v0.10.1 From 8196385438caa45aef6ddd2dbae26a431d704268 Mon Sep 17 00:00:00 2001 From: Giles Bathgate Date: Sun, 14 Aug 2011 20:57:46 +0100 Subject: Fix for crash caused by 0-sized square as reported by chrysn. diff --git a/src/primitives.cc b/src/primitives.cc index 5180c16..45b2da3 100644 --- a/src/primitives.cc +++ b/src/primitives.cc @@ -434,7 +434,7 @@ sphere_next_r2: } } - if (type == SQUARE) + if (type == SQUARE && x > 0 && y > 0) { double x1, x2, y1, y2; if (center) { -- cgit v0.10.1 From 0823b1f3c0a26df4f487d76493eb58608a1ad0df Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Thu, 25 Aug 2011 16:54:02 +0200 Subject: bugfix: Flush caches now also flushes the use'd module cache diff --git a/src/mainwin.cc b/src/mainwin.cc index c63b2dd..7bbc0e9 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -1436,6 +1436,7 @@ void MainWindow::actionFlushCaches() #endif dxf_dim_cache.clear(); dxf_cross_cache.clear(); + Module::libs_cache.clear(); } void MainWindow::viewModeActionsUncheck() -- cgit v0.10.1 From a32007e66c6004531f812befb20a96040b4dbbdd Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Thu, 25 Aug 2011 16:54:56 +0200 Subject: bugfix: Flush caches now also flushes the use'd module cache diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 5364e0a..d3d6d92 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,6 +1,8 @@ OpenSCAD 20xx.yy ================ +Bugfixes: +o Flush Caches didn't flush cached USE'd modules OpenSCAD 2011.06 ================ -- cgit v0.10.1