File tree Expand file tree Collapse file tree 5 files changed +26
-9
lines changed
java/com/jme3/bullet/util Expand file tree Collapse file tree 5 files changed +26
-9
lines changed Original file line number Diff line number Diff line change 11---
22# configure deployment by AppVeyor.com
33
4- version : 20.1 .0
4+ version : 20.2 .0
55
66image : Visual Studio 2022
77
@@ -11,15 +11,15 @@ build_script:
1111 - cmd : gradlew.bat build --console=plain --no-daemon
1212
1313artifacts :
14- - path : dist/Libbulletjme-20.1 .0.jar
14+ - path : dist/Libbulletjme-20.2 .0.jar
1515 name : classJar
16- - path : dist/Libbulletjme-20.1 .0-javadoc.jar
16+ - path : dist/Libbulletjme-20.2 .0-javadoc.jar
1717 name : javadocJar
18- - path : dist/Libbulletjme-20.1 .0-sources.jar
18+ - path : dist/Libbulletjme-20.2 .0-sources.jar
1919 name : sourcesJar
20- - path : dist/Libbulletjme-20.1 .0.pom
20+ - path : dist/Libbulletjme-20.2 .0.pom
2121 name : pom
22- - path : dist/Libbulletjme-20.1 .0.module
22+ - path : dist/Libbulletjme-20.2 .0.module
2323 name : module
2424 - path : dist/Windows32DebugDp_bulletjme.dll
2525 name : dll32DD
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ plugins {
1111ext {
1212 group = ' com.github.stephengold'
1313 artifact = ' Libbulletjme'
14- version = ' 20.1 .0'
14+ version = ' 20.2 .0'
1515 baseName = " ${ artifact} -${ version} " // for artifacts
1616 websiteUrl = ' https://github.com/stephengold/Libbulletjme'
1717}
Original file line number Diff line number Diff line change 11# Release log for the Libbulletjme project
22
3+ ## Version 20.2.0 released on 18 March 2024
4+
5+ + Deprecated the ` DebugMeshCallback ` class.
6+ + Deleted the (unused) native portion of the ` DebugShapeFactory ` class.
7+ + Added 7 new public methods:
8+ + ` FastMath.clamp() `
9+ + ` GImpactCollisionShape.countSubmeshes() `
10+ + ` GImpactCollisionShape.getSubmesh() `
11+ + ` MeshCollisionShape.countSubmeshes() `
12+ + ` MeshCollisionShape.getSubmesh() `
13+ + ` MyMath.circle(double) `
14+ + ` MyMath.circle(float) `
15+ + Updated VHACD v4 to version 4.1 .
16+ + Added more detail to descriptions of GImpact and mesh shapes.
17+ + Began building Android binaries on a xenial distro,
18+ since trusty is nearing its end of life.
19+
320## Version 20.1.0 released on 9 February 2024
421
522+ Bugfix: ` CharacterController.onGround() ` returns false positives after
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ final public class NativeLibrary {
5252 /**
5353 * expected version string of the native library
5454 */
55- final public static String expectedVersion = "20.1 .0" ;
55+ final public static String expectedVersion = "20.2 .0" ;
5656 // *************************************************************************
5757 // constructors
5858
Original file line number Diff line number Diff line change 3838
3939#include < jni.h>
4040
41- #define LIBBULLETJME_VERSION " 20.1 .0"
41+ #define LIBBULLETJME_VERSION " 20.2 .0"
4242
4343#define EXCEPTION_CHK (pEnv, retval ) \
4444 if (pEnv->ExceptionCheck ()) { \
You can’t perform that action at this time.
0 commit comments