commit 3ac18a5a6406df4d0043f34f339b69425f817118
parent 71461a2564435192682296e8292e7989bdce44f8
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 19 Oct 2021 10:11:00 +0200
Merge branch 'release_0.2.4' into develop
Diffstat:
12 files changed, 42 insertions(+), 27 deletions(-)
diff --git a/README.md b/README.md
@@ -23,32 +23,36 @@ variable the install directories of its dependencies.
## Release notes
+### Version 0.2.4
+
+Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has become
+obsolete.
+
### Version 0.2.3
-- Remove code that is now part of rsys and upgrade to rsys 0.10.
- This prevented building using rsys >= 0.8.
+Remove code that is now part of rsys and upgrade to rsys 0.10. This prevented
+building using rsys >= 0.8.
### Version 0.2.2
-- Fix a compilation issue that prevented building tests.
+Fix a compilation issue that prevented building tests.
### Version 0.2.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`.
### Version 0.2
-- Update the `sanim_node_visit_tree` function: the submitted sun direction may
- be NULL. In this case, the pivot constraints are not resolved during the tree
- traversal.
+Update the `sanim_node_visit_tree` function: the submitted sun direction may be
+NULL. In this case, the pivot constraints are not resolved during the tree
+traversal.
-## Licenses
+## License
-Solstice-Anim is developed by [|Meso|Star>](http://www.meso-star.com) for the
-[National Center for Scientific Research](http://www.cnrs.fr/index.php) (CNRS).
-It is a free software copyright (C) CNRS 2016-2017 and it is 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) 2018, 2020, 2021 |Meso|Star> (<contact@meso-star.com>).
+Copyright (C) 2016, 2017 CNRS.
+Solstice Animation 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,5 @@
-# Copyright (C) CNRS 2016-2017
+# Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+# Copyright (C) 2016, 2017 CNRS
#
# 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
@@ -41,7 +42,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys)
################################################################################
set(VERSION_MAJOR 0)
set(VERSION_MINOR 2)
-set(VERSION_PATCH 3)
+set(VERSION_PATCH 4)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(SANIM_FILES_SRC
diff --git a/src/sanim.h b/src/sanim.h
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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/sanim_node.c b/src/sanim_node.c
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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/sanim_node_c.h b/src/sanim_node_c.h
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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_sanim_node.c b/src/test_sanim_node.c
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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_sanim_node_pivot.c b/src/test_sanim_node_pivot.c
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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_sanim_node_transform.c b/src/test_sanim_node_transform.c
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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_sanim_search.c b/src/test_sanim_search.c
@@ -1,5 +1,6 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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_sanim_utils.c b/src/test_sanim_utils.c
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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_sanim_utils.h b/src/test_sanim_utils.h
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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_sanim_visit.c b/src/test_sanim_visit.c
@@ -1,4 +1,5 @@
-/* Copyright (C) CNRS 2016-2017
+/* Copyright (C) 2018, 2020, 2021 |Méso|Star> (contact@meso-star.com)
+ * Copyright (C) 2016, 2017 CNRS
*
* 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