Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-01 | Merge pull request #491 from vicnet/master | Marius Kintel | |
Remove unused stuff | |||
2013-10-01 | Added appdata for Linux desktops. #494 | Marius Kintel | |
2013-09-25 | remove unused stuff | Vicnet | |
2013-09-19 | Don't recompile while editing the text. Wait until saving or manual refresh. ↵ | Marius Kintel | |
Fixes #482 | |||
2013-09-19 | gcc 4.7 should work for demangling of CGAL kernel info name | Don Bright | |
2013-09-19 | enable --info output of names of CGAL Kernels to aid debugging | Don Bright | |
2013-09-15 | fix camdist test, issue #430 | don bright | |
2013-09-15 | fix issue with gcc 4.4.5. pointer to renderer in export_png segfaulted | don bright | |
worked fine in clang | |||
2013-09-14 | Merge pull request #478 from vicnet/master | Marius Kintel | |
Indent and reorder parser for clarity | |||
2013-09-13 | Merge remote-tracking branch 'upstream/master' | Vicnet | |
2013-09-13 | reorder parser predicat to better understanding | Vicnet | |
2013-09-13 | Indent parser file for better clarity | Vicnet | |
2013-09-13 | Merge pull request #476 from openscad/testfixes | Marius Kintel | |
Testfixes | |||
2013-09-13 | Merge pull request #472 from openscad/fixcamera1 | Marius Kintel | |
fix issue #430 | |||
2013-09-13 | copyright info to nsis scripts | Don Bright | |
2013-09-13 | rm googlecode stuff | Don Bright | |
2013-09-13 | remove googlecode uploader | Don Bright | |
2013-09-13 | cleanup | Don Bright | |
2013-09-13 | clean | Don Bright | |
2013-09-13 | cleanup | Don Bright | |
2013-09-13 | cleanup, remove unused files and code, etc | Don Bright | |
2013-09-13 | cleanups, tab fixes, remove redundant code | Don Bright | |
2013-09-13 | little tweaks, cleanups, tab fixing, eliminating comments | Don Bright | |
2013-09-13 | fix bug in 2d resize code | Don Bright | |
2013-09-12 | remove extraneous files, add rands working test | Don Bright | |
2013-09-12 | remove redundant code | Don Bright | |
2013-09-12 | cmdline throwntogether, integrate w chrysn tests, update resize tests | Don Bright | |
2013-09-12 | rendersettings.h not needed | Don Bright | |
2013-09-12 | lodepng: write RGB instead of RGBA: decoders differ on alpha rendering | Don Bright | |
2013-09-12 | use background color when writing PNG with lodepng | Don Bright | |
2013-09-12 | fix issue #430 | Don Bright | |
2013-09-06 | Merge pull request #471 from dmopalmer/mac_compile_2013.09 | Marius Kintel | |
Mac Build update build to 2013-09 versions | |||
2013-09-06 | Mac Build update build to 2013-09 versions | David M. Palmer | |
README.md reflect change in setenv_mac*.sh files macosx-build-dependencies.sh qt4 version updated to 4.8.5 and is now at a different host which uses 302 redirection FindBoost.cmake Added paths for MacPorts (/opt/local) and Brew (/usr/local) to previous Fink (/sw/local) | |||
2013-08-21 | Merge branch 'master' of github.com:openscad/openscad | Marius Kintel | |
2013-08-21 | Fixes two problems related to : lookup was dynamic rather than lexical, ↵ | Marius Kintel | |
assignment was done after all local variables causing it not to be copyable | |||
2013-08-20 | Put back some stuff necessary for building on non-MSVC platforms for now | Marius Kintel | |
2013-08-20 | Merge branch 'master' of git://github.com/ivoknutsel/openscad into ↵ | Marius Kintel | |
ivoknutsel-master | |||
2013-08-17 | Support out-of-source use of testsuite. Fixes #456 | Marius Kintel | |
2013-08-15 | Merge branch 'master' of github.com:openscad/openscad | Marius Kintel | |
2013-08-14 | more migration from google-code to files.openscad.org | Don Bright | |
2013-08-14 | switch from google-code file hosting to files.openscad.org | Don Bright | |
2013-08-14 | first step of dealing with issue #455 | Don Bright | |
2013-08-11 | fix #452 | Don Bright | |
2013-08-08 | commit bugfix per report from chrysn to mailing list 8/8/13 | Don Bright | |
2013-07-28 | In this commit i'll change just the Qt project, c and header files to get ↵ | Ivo Noorhoff | |
OpenSCAD building and working on Windows 7 compiled with Visual Studio Express 2012. A couple of things needed changing : * MSVC 2012 has no trunc or round, i have added those to mathc99 and included mathc99 to the files needed. The implementations were taken from boost. * MSVC 2012 stl does now allow accessing out of bounds elements in std:vector as an array, so "chain->objects[i]" will fail in "OpenCSGRenderer::renderCSGChain". Whatever the platform, it will me a good idea to change this code to something that does not trigger undefined behavior. * MSVC 2012 cannot figure out the types involved in "if (file_size == 80 + 4 + 50*facenum) {", i have added a cast to force it to "if (file_size == static_cast<std::streamoff>(80 + 4 + 50*facenum)) {". The next round would be regression testing and debugging and possibly more changes to the OpenSCAD main code. The round after that would be changing the .pro and .pri files to create correct visual studio solutions. | |||
2013-07-02 | Ported use of check_output to Python-2.6 | Marius Kintel | |
2013-07-02 | dumptest now supports the root modifier - updated test results | Marius Kintel | |
2013-07-02 | cgalstlsanitytest moved | Marius Kintel | |
2013-07-02 | Re-enable tests which previously cause floating point comparison issues | Marius Kintel | |
2013-06-28 | python validation for cgal stl sanity test | chrysn | |
this drops another static binary and replaces it with a very small shell^Wpython script (again, python used to avoid sed / grep implementation differences) |