star-cpr

Clip 2D meshes with 2D polygons
git clone git://git.meso-star.fr/star-cpr.git
Log | Files | Refs | README | LICENSE

commit 9aefd234d7c7b3da83d5b5ec9f6fbc26b110fa6b
parent 24be3c14d987dcca661ac8a2316d874ed88e1f3d
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue, 19 Oct 2021 15:07:12 +0200

Merge branch 'release_0.1.3' into develop

Diffstat:
MREADME.md | 23++++++++++++++---------
Mcmake/CMakeLists.txt | 4++--
Mcmake/ClipperConfig.cmake | 2+-
Msrc/scpr.h | 2+-
Msrc/scpr_mesh.c | 2+-
Msrc/test_scpr_clip.c | 2+-
Msrc/test_scpr_mesh.c | 2+-
Msrc/test_scpr_utils.h | 2+-
8 files changed, 22 insertions(+), 17 deletions(-)

diff --git a/README.md b/README.md @@ -22,20 +22,25 @@ project from the `cmake/CMakeLists.txt` file by appending to the ## Release notes +### Version 0.1.3 + +- Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has + become obsolete. +- Fix compilation warnings detected by gcc 11. + ### Version 0.1.2 -- Update CMake module of the Clipper library: on GNU/Linux, make optional the - debug version of the library. +Update CMake module of the Clipper library: on GNU/Linux, make optional the +debug version of the library. ### Version 0.1.1 -- Update the version of the RSys dependency to 0.6: replace the deprecated - `[N]CHECK` macros by the new macro `CHK`. +Update the version of the RSys dependency to 0.6: replace the deprecated +`[N]CHECK` macros by the new macro `CHK`. ## License -Star-Clipper is Copyright (C) |Meso|Star> 2016 (<contact@meso-star.com>). It is -a free software released under the [OSI](http://opensource.org)-approved GPL -v3+ license. You are welcome to redistribute it under certain conditions; refer -to the COPYING file for details. - +Copyright (C) 2016-2018, 2021 |Meso|Star> (<contact@meso-star.com>). +Star-CliPpeR is free software released under the GPL v3+ license: GNU GPL +version 3 or later. You are welcome to redistribute it under certain +conditions; refer to the COPYING file for details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) |Meso|Star> 2016 (contact@meso-star.com) +# Copyright (C) 2016-2018, 2021 |Meso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -48,7 +48,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys Polygon) ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 1) -set(VERSION_PATCH 2) +set(VERSION_PATCH 3) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(SCPR_FILES_SRC scpr_mesh.c) diff --git a/cmake/ClipperConfig.cmake b/cmake/ClipperConfig.cmake @@ -1,4 +1,4 @@ -# Copyright (C) |Meso|Star> 2016-2018 (contact@meso-star.com) +# Copyright (C) 2016-2018, 2021 |Meso|Star> (contact@meso-star.com) # # This software is a computer program whose purpose is to generate files # used to build the Star-3D library. diff --git a/src/scpr.h b/src/scpr.h @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2016 (contact@meso-star.com) +/* Copyright (C) 2016-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/scpr_mesh.c b/src/scpr_mesh.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2016 (contact@meso-star.com) +/* Copyright (C) 2016-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_scpr_clip.c b/src/test_scpr_clip.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2016 (contact@meso-star.com) +/* Copyright (C) 2016-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_scpr_mesh.c b/src/test_scpr_mesh.c @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2016 (contact@meso-star.com) +/* Copyright (C) 2016-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_scpr_utils.h b/src/test_scpr_utils.h @@ -1,4 +1,4 @@ -/* Copyright (C) |Meso|Star> 2016 (contact@meso-star.com) +/* Copyright (C) 2016-2018, 2021 |Meso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by