Skip to content

Commit 13798dd

Browse files
committed
bump version to 0.6.4 and update release-notes.md and README.md
1 parent 31da166 commit 13798dd

4 files changed

Lines changed: 28 additions & 5 deletions

File tree

MinieLibrary/release-notes.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,34 @@
11
# release notes for the Minie library and related examples
22

3+
## Version 0.6.4 released on TBD
4+
5+
Important changes to the library:
6+
7+
+ Standardized the `PhysicsCharacter.getWalkDirection()` method. (API change)
8+
+ Fixed a bug where debug shapes were re-used incorrectly.
9+
+ Fixed a bug where 6 `PhysicsCharacter` parameters were neither loaded
10+
nor saved.
11+
+ Added an `isDynamic()` method to the `PhysicsRigidBody` class.
12+
+ Added optional axes to debug visualizations.
13+
+ Moved the CCD accessors to the `PhysicsCollisionObject` class.
14+
+ Added a `copyCenter()` method to the `MultiSphere` class.
15+
+ Added the capability to disable the startup message.
16+
+ Added `getUpDirection()` and `reset()` methods to the
17+
`PhysicsCharacter` class.
18+
+ Added the capability to configure the `PhysicsCharacter` sweep test.
19+
+ Reduced `CollisionShape` validation in the `PhysicsRigidBody` class.
20+
21+
Important changes to the examples:
22+
23+
+ Port the `TestQ3` app from `jme3-examples`.
24+
+ In `TestRectagularSolid`, set the seed for each trial and add UI text.
25+
326
## Version 0.6.3 released on 17 January 2019
427

528
Important changes to the library:
629

730
+ Prohibited `PhysicsRigidBody.setKinematic()` on static bodies.
8-
+ Use `EmptyShape` to permit linking a bone without
31+
+ Used `EmptyShape` to permit linking a bone without
932
vertices in a `DynamicAnimControl`.
1033
+ Added `getSpatial()` methods to `GhostControl` and `RigidBodyControl`.
1134
+ Updated the native libraries to version 1.0.24 of `jme3-bullet-native`.

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 branch and revision (not null, not empty)
6060
*/
6161
public static String versionShort() {
62-
return "master 0.6.3+1";
62+
return "master 0.6.4";
6363
}
6464
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,15 +227,15 @@ repository location:
227227
jcenter()
228228
}
229229
dependencies {
230-
compile 'jme3utilities:Minie:0.6.3'
230+
compile 'jme3utilities:Minie:0.6.4'
231231
}
232232

233233
#### For Ant projects
234234

235235
For project built using Ant, download the 3 non-standard
236236
libraries from GitHub:
237237

238-
+ https://github.com/stephengold/Minie/releases/tag/0.6.3
238+
+ https://github.com/stephengold/Minie/releases/tag/0.6.4
239239
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.18.0
240240
+ https://github.com/stephengold/jme3-utilities/releases/tag/debug-0.9.9
241241

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ gradle.projectsEvaluated {
3030
ext {
3131
// current versions of the libraries
3232
jmonkeyengineVersion = '3.2.2-stable'
33-
minieVersion = '0.6.3'
33+
minieVersion = '0.6.4'
3434
}
3535

3636
repositories {

0 commit comments

Comments
 (0)