Skip to content

Commit

Permalink
Minie library: bump version to 0.3.5 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Oct 10, 2018
1 parent 6a4616e commit bbd20ce
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Minie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ javadocJar { baseName project.ext.baseName }
sourcesJar { baseName project.ext.baseName }

dependencies {
//compile "jme3utilities:jme3-utilities-debug:$jme3utilitiesdebugVersion"
compile project(':debug')
compile "jme3utilities:jme3-utilities-debug:$jme3utilitiesdebugVersion"
//compile project(':debug')
}

compileJava.options.headerOutputDirectory = new File('build/cpp')
Expand Down
27 changes: 27 additions & 0 deletions Minie/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# release notes for the Minie library and related tests

## Version 0.3.5 released on TBD

Enhancements to `KinematicRagdollControl`:

+ Began treating the torso more like a bone.
+ Implemented a new algorithm to construct hulls without weight thresholds.
+ Redesigned how mass is configured and totaled.
+ Lowered the default dispatch threshold from 10 to 0.
+ Moved all the code in `RagdollUtils` to other classes.
+ Include the torso in `setDamping()`.
+ Added `boneMass()`, `getBoneLink()`, `getJointPreset()`, `gravity()`,
`linkedBoneNames()`, `setGravity()`, and `torsoMass()` methods.

Other noteworthy changes:

+ Added `getPhysicsScale()` and `setPhysicsScale()` methods to
`PhysicsRigidBody`.
+ Removed the `space` argument from the addPhysics() and removePhysics()
methods of `AbstractPhysicsControl` and its subclasses.
+ Added a list-based constructor for `HullCollisionShape`.
+ Fixed a logic bug in `MyObject` where vehicles were not recognized.
+ Added a `setPivot` method to `SixDofJoint.setPivot()`.
+ Added a `physicsTransform()` method to `RigidBodyMotionState`.
+ Added `JointEnd` and `TestRagdollScaling` classes.
+ Updated shared libraries to `jme3-bullet-native` v1.0.7 .
+ Removed the unused `PhysicsSpace.initNativePhysics()` method.

## Version 0.3.4 released on 5 October 2018

Enhancements to `KinematicRagdollControl`:
Expand Down
2 changes: 1 addition & 1 deletion Minie/src/main/java/jme3utilities/minie/MinieVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private MinieVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.3.4+1";
return "master 0.3.5";
}
}
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ext {
jme3utilitiesuiVersion = '0.6.5'
jme3utilitiesxVersion = '0.2.5'
jmonkeyengineVersion = '3.2.1-stable'
minieVersion = '0.3.4'
minieVersion = '0.3.5'
skycontrolVersion = '0.9.14'
wesVersion = '0.3.7'
}
Expand Down

0 comments on commit bbd20ce

Please sign in to comment.