Skip to content

Commit

Permalink
bump library versions: Minie->0.2.0, nifty->0.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 2, 2018
1 parent 8418871 commit 3f85c79
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Minie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,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')
}

task pom {
Expand Down
7 changes: 7 additions & 0 deletions Minie/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# release notes for the Minie library and related tests

## Version 0.2.0 released on TBD

+ Added axisIndex(), describe(), describeType(), halfExtents(), height(),
radius(), setHalfExtents(), setHeight(), and setRadius() methods to the
MyShape utility class.
+ Copied source files from jme3-bullet library and correcting many minor issues.

## Version 0.1.2 released on 26 January 2018

This was the initial baseline release, based largely on code formerly
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 getVersionShort() {
return "master 0.1.2+1";
return "master 0.2.0";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ ext {
jcommanderVersion = '1.72'
jme3utilitiesdebugVersion = '0.8.7'
jme3utilitiesheartVersion = '2.2.0'
jme3utilitiesniftyVersion = '0.7.8'
jme3utilitiesniftyVersion = '0.7.9'
jme3utilitiesuiVersion = '0.6.2'
jme3utilitiesxVersion = '0.2.3'
jmonkeyengineVersion = '3.2.1-stable'
minieVersion = '0.1.2'
minieVersion = '0.2.0'
skycontrolVersion = '0.9.11'
wesVersion = '0.3.3'
}
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
13 changes: 12 additions & 1 deletion nifty/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# release notes for the jme3-utilities-nifty library and related tests

## Version 0.7.3 released on 25 January 2018
## Version 0.7.9 released on TBD

+ More flexible policies for the placement of submenus.
+ Disable warnings while loading the screen layout in BasicScreenController.
+ Don't pre-validate the screen layout in BasicScreenController.
+ Add readColorBank() methods to the GuiScreenController and
GuiWindowController classes.
+ Incorporate the fix for Nifty issue #384.
+ Remove the useControls and useStyles directives from the layouts for
simple popups.

## Version 0.7.8 released on 25 January 2018

+ Bypass the jme3-niftygui library to avoid its dependency on
nifty-style-black.
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 getVersionShort() {
return "master 0.7.8+1";
return "master 0.7.9";
}
}

0 comments on commit 3f85c79

Please sign in to comment.