Skip to content

Commit

Permalink
Nifty library: bump version to 0.8.0 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Sep 13, 2018
1 parent a3eedb2 commit 41edfcd
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ext {
jcommanderVersion = '1.74'
jme3utilitiesdebugVersion = '0.9.2'
jme3utilitiesheartVersion = '2.9.0'
jme3utilitiesniftyVersion = '0.7.13'
jme3utilitiesniftyVersion = '0.8.0'
jme3utilitiesuiVersion = '0.6.4'
jme3utilitiesxVersion = '0.2.4'
jmonkeyengineVersion = '3.2.1-stable'
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
10 changes: 10 additions & 0 deletions nifty/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# release notes for the jme3-utilities-nifty library and related tests

## Version 0.8.0 released on TBD

+ 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
controller, providing more flexibility.
+ Added a MinimalDialog class for use as a default and a superclass.
+ Use TextEntryDialog as superclass for all dialog boxes based on
Interface/Nifty/dialogs/text-entry.xml .

## Version 0.7.13 released on 17 August 2018

+ Add a commit description to TextEntryDialog class.
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.13+1";
return "master 0.8.0";
}
}

0 comments on commit 41edfcd

Please sign in to comment.