diff --git a/AMMR.version.any b/AMMR.version.any index b5d87e0ae..d3ee99655 100644 --- a/AMMR.version.any +++ b/AMMR.version.any @@ -1,8 +1,7 @@ #ifndef AMMR_VERSION -#define AMMR_VERSION "2.4.1" +#define AMMR_VERSION "2.4.2" #define AMMR_VERSION_MAJOR 2 #define AMMR_VERSION_MINOR 4 -#define AMMR_VERSION_PATCH 1 +#define AMMR_VERSION_PATCH 2 #endif -// #define ANYBODY_HASH_BODY "e482a895197fb47bcffa0d0dfde2116e" diff --git a/CHANGELOG.md b/CHANGELOG.md index 184573a29..a88ca14f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,36 +4,30 @@ % random empty or make a new entry a random place in the bullet lists. +(ammr-2.4-changelog)= +## AMMR 2.4.2 (2022-07-08) +[![Zenodo link](https://zenodo.org/badge/DOI/10.5281/zenodo.6809697.svg)](https://doi.org/10.5281/zenodo.6809697) -## AMMR Beta - +AMMR version 2.4.2 contains only a few minor changes and fixes compared to version 2.4.1. -**New example models:** -- +**Changed:** +* Changed defintion (sign) of the `SkullThoraxRotation` and `SkullThoraxLateralbending` variable + in the `interface` folder. They are now consistent with similar difinitions in the rest of the spine. +* The location of the foot drawing generated by the `OptimizeBVH_Origin` class template + for visualization of the target location and orientation of + "LFOOT" and "RFOOT" has been updated to better match the expected actual foot location. + **Fixed:** -* Fixed a problem that caused the OptimizeBVH_Origin class template to fail to load if the same human segment was used - more than one time in the same model (for example, at different time intervals) to optimize the BVH origin. The class template has been fixed - and the {ref}`BVH optimize origin example model ` has been - updated to add a demo for optimizing the BVH model origin considering the same human segment at different time intervals. -**Changed:** +* Fixed the {ref}`Evaluate moments arms example ` + where a few branches of the latisimus dorsi, pectoralis major and trapezius muscles were not included. +* Fixed a problem that caused the `OptimizeBVH_Origin` class template to fail to load + if the same human segment was used more than one time in the same model. -* The location of the foot drawing generated by the OptimizeBVH_Origin class template for visualization of the target location and orientation of - "LFOOT" and "RFOOT" has been updated to better match the expected actual foot location. -* In BVH example models (BVH_BoxLift, BVH_Xsens, & BVH_Xsens_OptimizeOrigin), the calculation of PelvisWidth from BVH stick figure has been - changed to use the sRel values of RightHip and LeftHip reference nodes on the "Hips" segment. Previously, it was calculated using r0 values - of the RightHip and LeftHip segments. There should be no change in the calculated value of PelvisWidth due to this change. -* Changed defintion (sign) of the `SkullThoraxRotation` and `SkullThoraxLateralbending` variable - in the `interface` folder. They are now consistent with similar difinitions in the rest of the spine. - -**Added:** -* - -(ammr-2.4-changelog)= ## AMMR 2.4.1 (2022-05-30) [![Zenodo link](https://zenodo.org/badge/DOI/10.5281/zenodo.6533249.svg)](https://doi.org/10.5281/zenodo.6533249) diff --git a/Docs/conf.py b/Docs/conf.py index 586a2d994..7645e1c5d 100644 --- a/Docs/conf.py +++ b/Docs/conf.py @@ -158,7 +158,7 @@ def tagged_commit(): current_year = os.environ.get("YEAR", datetime.now().year) -ams_version = os.environ.get("AMS_VERSION", "7.4.1") +ams_version = os.environ.get("AMS_VERSION", "7.4.2") if not re.match("^\d\.\d\.\d", ams_version): raise ValueError("Wrong format for AMS version, environment variable") ams_version_short = ams_version.rpartition(".")[0]