Skip to content

Commit

Permalink
bump library versions: Minie0.3.0, nifty0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 23, 2018
1 parent e92eeea commit 40775c6
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 15 deletions.
12 changes: 6 additions & 6 deletions Minie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ sourcesJar { baseName project.ext.baseName }
dependencies {
runtime "org.jmonkeyengine:jme3-bullet-native:$jmonkeyengineVersion"

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

// The following dependencies are for testing and should be commented
// out when building a release.
runtime "org.jmonkeyengine:jme3-desktop:$jmonkeyengineVersion"
runtime "org.jmonkeyengine:jme3-lwjgl:$jmonkeyengineVersion"
compile "org.jmonkeyengine:jme3-plugins:$jmonkeyengineVersion"
runtime 'org.jmonkeyengine:jme3-testdata:3.1.0-stable'
//runtime "org.jmonkeyengine:jme3-desktop:$jmonkeyengineVersion"
//runtime "org.jmonkeyengine:jme3-lwjgl:$jmonkeyengineVersion"
//compile "org.jmonkeyengine:jme3-plugins:$jmonkeyengineVersion"
//runtime 'org.jmonkeyengine:jme3-testdata:3.1.0-stable'
}

task pom {
Expand Down
20 changes: 18 additions & 2 deletions Minie/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
# release notes for the Minie library and related tests

## Version 0.3.0 released on TBD

+ Fixed JME issue #740.
+ Standardized the design of constructors and accessors to reduce aliasing
of vectors and quaternions and enable the use of caller-allocated storage.
+ Implemented a more practical approach to filtering debug objects.
+ Simplified PhysicsCollisionEvent by eliminating event types.
+ Renamed 2 PhysicsJoint methods that misspelled "bodies".
+ Removed many needless fields, methods, and constructors.
+ Made the VehicleTuning class JmeCloneable and Savable.
+ Addressed the possibility of multiple physics controls added to the
same Spatial.
+ Replaced 6 parameters of VehicleWheel with a VehicleTuning reference.
+ Eviscerated 5 cloneForSpatial() methods.
+ Based on version 2.10 of the jme3-utilities-heart library.

## Version 0.2.10 released on 12 September 2018

+ Fixed JME issue #898.
+ Require collision margin > 0.
+ Changed default collision margin from 0 to 0.04.
+ Require collision margin > 0 .
+ Changed default collision margin from 0 to 0.04 .
+ Disabled setMargin() for SphereCollisionShape.
+ Don't allow dynamic bodies to have heightfield or plane shapes.
+ Publicized loggers.
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.2.10+1";
return "master 0.3.0";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ ext {
jcommanderVersion = '1.74'
jme3utilitiesdebugVersion = '0.9.3'
jme3utilitiesheartVersion = '2.10.0'
jme3utilitiesniftyVersion = '0.8.1'
jme3utilitiesniftyVersion = '0.8.2'
jme3utilitiesuiVersion = '0.6.5'
jme3utilitiesxVersion = '0.2.5'
jmonkeyengineVersion = '3.2.1-stable'
minieVersion = '0.2.10'
minieVersion = '0.3.0'
skycontrolVersion = '0.9.14'
wesVersion = '0.3.7'
}
Expand Down
4 changes: 2 additions & 2 deletions nifty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ dependencies {
compile 'com.github.nifty-gui:nifty:1.4.2'
compile 'com.github.nifty-gui:nifty-default-controls:1.4.2'

//compile "jme3utilities:jme3-utilities-ui:$jme3utilitiesuiVersion"
compile project(':ui')
compile "jme3utilities:jme3-utilities-ui:$jme3utilitiesuiVersion"
//compile project(':ui')
}

task pom {
Expand Down
8 changes: 7 additions & 1 deletion nifty/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# release notes for the jme3-utilities-nifty library and related tests

## Version 0.8.2 released on TBD

+ Require a controller for every dialog box.
+ Rename LibraryVersion.getVersionShort() to versionShort().
+ Based on version 2.10 of the jme3-utilities-heart library.

## Version 0.8.1 released on 14 September 2018

+ Allow modal dialog boxes to open popup menus
Expand All @@ -10,7 +16,7 @@

+ Improve the extensibility of dialog boxes. Formerly commit-action suffixes
were constructed in PopScreenController.dialogCommit() based on what
controls the dialog contained. That function has moved to the dialog
controls the dialog contained. That functionality has moved to the dialog
controller, providing more flexibility.
+ Add a MinimalDialog class for use as a default and a superclass.
+ Use TextEntryDialog as a superclass for all dialog boxes based on
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ private LibraryVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.8.1+1";
return "master 0.8.2";
}
}

0 comments on commit 40775c6

Please sign in to comment.