commit af939e7607d42968d8c0dafc4766cef5a638d1dc parent 1c30b6f6da8a368de8392e517879baa87ec52b44 Author: Christophe Coustet <christophe.coustet@meso-star.com> Date: Fri, 28 Apr 2023 10:11:39 +0200 Merge branch 'release_0.2' into develop Diffstat:
| M | README.md | | | 13 | +++++++++++++ |
| M | cmake/CMakeLists.txt | | | 4 | ++-- |
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md @@ -21,6 +21,19 @@ project from the `cmake/CMakeLists.txt` file by appending to the ## Release notes +### Version 0.1.1 + +- Introduce reference counting for geometries (API break). +- Add the scad_stl_data_write API call to write a vector of coordinate as an STL + file the same way scad_stl_export do (producing the same decimals/bytes). +- Add scad_stl_get_data and scad_stl_get_data_partial API calls to get the mesh + of a geometry, allowing to manipulate it before writing it. +- Add the scad_stl_rxport_partial API call to export part of a geometry to an + STL file. +- Remove the reverse arg from STL related functions (API break). +- Add a scad_geometry_reverse API call. +- Code simplifications in STL-related code + ### Version 0.1.0 Initial version. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -37,8 +37,8 @@ include_directories(${GMSH_INCLUDE_DIR} ${RSys_INCLUDE_DIR}) # Configure and define targets ################################################################################ set(VERSION_MAJOR 0) -set(VERSION_MINOR 1) -set(VERSION_PATCH 1) +set(VERSION_MINOR 2) +set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(SCAD_FILES_SRC