Skip to content

Commit ce5d531

Browse files
committed
bump version to 7.7.0 and update release-notes.md
1 parent 671757f commit ce5d531

4 files changed

Lines changed: 32 additions & 5 deletions

File tree

MinieLibrary/release-notes.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Release log for the Minie library, DacWizard, MinieExamples, and VhacdTuner
22

3+
## Version 7.7.0 released on TBD
4+
5+
+ Fixed bugs:
6+
+ `NullPointerException` after rebuilding a `DynamicAnimControl`
7+
+ unhelpful warnings while cloning a `PhysicsRigidBody`
8+
+ `SplitDemo` app crashes caused by attempting to rotate heightfields
9+
10+
+ Added to the library:
11+
+ the `MinkowskiSum` collision shape
12+
+ the `ClassFilter` class, for filtering physics objects
13+
+ Specified a more precise return type for `Convex2dShape.getBaseShape()`
14+
+ `DynamicAnimControl` now logs a warning if armature scaling exceeds 1%.
15+
16+
+ Improvements to the `DacWizard` application:
17+
+ Re-scale the 3-D model for each pose.
18+
+ Added a "rebuild" action to test mode, bound to `KEY_F3`.
19+
+ Improvements to the `MinieDump` application:
20+
+ Added command-line options to specify an asset root.
21+
+ Added help/usage hints.
22+
+ Improvements to the `MinieExamples` application:
23+
+ Added more shapes to `DropTest` and `SplitDemo`.
24+
+ Reduced the risk of fallthru in `DropTest`, by disabling contact filtering.
25+
26+
+ Based on v3.6.1-stable of JMonkeyEngine and v8.7.0 of the Heart library.
27+
+ Built using Gradle v8.3 .
28+
+ Updated the native libraries to v18.5.2 of Libbulletjme.
29+
330
## Version 7.6.0 released on 3 June 2023
431

532
+ Bugfix: the gravity of a rigid body isn't read/written/cloned

MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ private MinieVersion() {
5959
* @return the branch and revision string (not null, not empty)
6060
*/
6161
public static String versionShort() {
62-
return "master 7.6.1-SNAPSHOT";
62+
return "master 7.7.0";
6363
}
6464
}

bash/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
export JAVA_HOME=/usr/lib/jvm/Temurin/jdk-17.0.6+10
66

7-
V=7.6.0
7+
V=7.7.0
88
D=/home/sgold/Releases/Minie/$V
99
mkdir $D
1010

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ ext {
2626
//lwjglCoordinates = 'org.jmonkeyengine:jme3-lwjgl:' + jme3Version // for LWJGL 2.x
2727
lwjglCoordinates = 'org.jmonkeyengine:jme3-lwjgl3:' + jme3Version // for LWJGL 3.x
2828

29-
minieSnapshot = '-SNAPSHOT' // for development builds
30-
//minieSnapshot = '' // for release builds
31-
minieVersion = '7.6.1'
29+
//minieSnapshot = '-SNAPSHOT' // for development builds
30+
minieSnapshot = '' // for release builds
31+
minieVersion = '7.7.0'
3232
}
3333

3434
subprojects {

0 commit comments

Comments
 (0)