Skip to content

Commit

Permalink
Nifty library: bump version to 0.6.8 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 17, 2017
1 parent 1f1ac91 commit 369d5d4
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ext {
jcommanderVersion = '1.72'
jme3utilitiesdebugVersion = '0.7.1'
jme3utilitiesheartVersion = '0.9.11'
jme3utilitiesniftyVersion = '0.6.7'
jme3utilitiesniftyVersion = '0.6.8'
jme3utilitiesuiVersion = '0.5.5'
jme3utilitiesxVersion = '0.2.1'
jmonkeyengineVersion = '3.1.0-stable'
Expand Down
8 changes: 4 additions & 4 deletions nifty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ dependencies {
compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion"
compile "org.jmonkeyengine:jme3-niftygui:$jmonkeyengineVersion"

//compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
compile project(':heart')
compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
//compile project(':heart')

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

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

## Version 0.6.8 released on TBD

+ Use wrap="true" for labels in dialog boxes and infoboxes.
+ Made the GUI render order an initialization option.

## Version 0.6.7 released on 3 July 2017

+ Render NiftyGUI after JME's guiNode.
Expand All @@ -10,7 +15,7 @@

## Version 0.6.5 released on 24 June 2017

+ Added simpler API for PopScreenController.showTextEntryDialog()
+ Added simpler API for PopScreenController.showTextEntryDialog() method.
+ Add 2 dialog controllers: FloatDialog and IntegerDialog.

## Version 0.6.4 released on 20 May 2017
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private LibraryVersion() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.6.7+1";
return "master 0.6.8";
}
}
4 changes: 2 additions & 2 deletions ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ sourcesJar { baseName "${project.ext.baseName}" }
dependencies {
compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion"

compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
//compile project(':heart')
//compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
compile project(':heart')
}

task pom {
Expand Down
2 changes: 1 addition & 1 deletion ui/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release notes for the jme3-utilities-ui library and related tests

## Version 0.5.5 released on TBD
## Version 0.5.5 released on 16 July 2017

Publicize InputMode.activate() and InputMode.deactivate() so they can be
overriden.
Expand Down
2 changes: 1 addition & 1 deletion ui/src/main/java/jme3utilities/ui/UiVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private UiVersion() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.5.5";
return "master 0.5.5+1";
}
}

0 comments on commit 369d5d4

Please sign in to comment.