File tree Expand file tree Collapse file tree 5 files changed +17
-9
lines changed
java/com/jme3/bullet/util Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
# configure deployment by AppVeyor.com
3
3
4
- version : 21.2.1
4
+ version : 21.3.0
5
5
6
6
image : Visual Studio 2022
7
7
@@ -11,15 +11,15 @@ build_script:
11
11
- cmd : gradlew.bat build --console=plain --no-daemon
12
12
13
13
artifacts :
14
- - path : dist/Libbulletjme-21.2.1 .jar
14
+ - path : dist/Libbulletjme-21.3.0 .jar
15
15
name : classJar
16
- - path : dist/Libbulletjme-21.2.1 -javadoc.jar
16
+ - path : dist/Libbulletjme-21.3.0 -javadoc.jar
17
17
name : javadocJar
18
- - path : dist/Libbulletjme-21.2.1 -sources.jar
18
+ - path : dist/Libbulletjme-21.3.0 -sources.jar
19
19
name : sourcesJar
20
- - path : dist/Libbulletjme-21.2.1 .pom
20
+ - path : dist/Libbulletjme-21.3.0 .pom
21
21
name : pom
22
- - path : dist/Libbulletjme-21.2.1 .module
22
+ - path : dist/Libbulletjme-21.3.0 .module
23
23
name : module
24
24
- path : dist/Windows32DebugDp_bulletjme.dll
25
25
name : dll32DD
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plugins {
12
12
ext {
13
13
group = ' com.github.stephengold'
14
14
artifact = ' Libbulletjme'
15
- version = ' 21.2.1 '
15
+ version = ' 21.3.0 '
16
16
baseName = " ${ artifact} -${ version} " // for artifacts
17
17
websiteUrl = ' https://github.com/stephengold/Libbulletjme'
18
18
}
Original file line number Diff line number Diff line change 1
1
# Release log for the Libbulletjme project
2
2
3
+ ## Version 21.3.0 released on 31 August 2024
4
+
5
+ + Bugfix: ` copyPcoProperties() ` doesn't copy user indices
6
+ + Bugfix: logic error in ` CollisionShape.nativeMargin() `
7
+ + Publicized the ` CollisionSpace.setLocalThreadPhysicsSpace() ` method so
8
+ per-thread physics spaces can nulled and garbage collected.
9
+ + Added public method ` Quaternion.isValidQuaternion() ` .
10
+
3
11
## Version 21.2.1 released on 9 May 2024
4
12
5
13
+ Changed the default setting for collision-shape contact filtering
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ final public class NativeLibrary {
52
52
/**
53
53
* expected version string of the native library
54
54
*/
55
- final public static String expectedVersion = "21.2.1 " ;
55
+ final public static String expectedVersion = "21.3.0 " ;
56
56
// *************************************************************************
57
57
// constructors
58
58
Original file line number Diff line number Diff line change 38
38
*/
39
39
#include < jni.h>
40
40
41
- #define LIBBULLETJME_VERSION " 21.2.1 "
41
+ #define LIBBULLETJME_VERSION " 21.3.0 "
42
42
43
43
#define EXCEPTION_CHK (pEnv, retval ) \
44
44
if (pEnv->ExceptionCheck ()) { \
You can’t perform that action at this time.
0 commit comments