From fcc03d8f5af4df6faede555351fcedde9ff471dc Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Wed, 10 Jan 2018 11:31:37 -0800 Subject: [PATCH] nifty library: bump version to 0.7.7 and update release-notes.md --- common.gradle | 2 +- nifty/build.gradle | 8 ++++---- nifty/release-notes.md | 7 ++++++- .../src/main/java/jme3utilities/nifty/LibraryVersion.java | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/common.gradle b/common.gradle index e2e3d1e66..c2246a3d2 100644 --- a/common.gradle +++ b/common.gradle @@ -19,7 +19,7 @@ ext { jcommanderVersion = '1.72' jme3utilitiesdebugVersion = '0.8.3' jme3utilitiesheartVersion = '1.0.0for32' - jme3utilitiesniftyVersion = '0.7.6' + jme3utilitiesniftyVersion = '0.7.7' jme3utilitiesuiVersion = '0.6.0for32' jme3utilitieswesVersion = '0.3.0for32' jme3utilitiesxVersion = '0.2.2for32' diff --git a/nifty/build.gradle b/nifty/build.gradle index 246792ea9..d19d1a4b7 100644 --- a/nifty/build.gradle +++ b/nifty/build.gradle @@ -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 { diff --git a/nifty/release-notes.md b/nifty/release-notes.md index 32558cb2e..91662d1bf 100644 --- a/nifty/release-notes.md +++ b/nifty/release-notes.md @@ -1,12 +1,17 @@ # release notes for the jme3-utilities-nifty library and related tests +## Version 0.7.7 released on TBD + + + Add disableCheckBox() methods to the GuiScreenController and + GuiWindowController classes. + ## Version 0.7.6 released on 4 January 2018 + Remove disableSlider() and enableSlider() methods from GuiSceneController. + Fix an assertion error triggered by clicking a mouse button in "bind" screen. + In "bind" screen, selecting a bound hotkey using a keypress will now select its action as well. - + Add readVectorBank() method to the GuiWindowController class. + + Add a readVectorBank() method to the GuiWindowController class. ## Version 0.7.5 released on 3 January 2018 diff --git a/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java b/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java index 405c6c335..b477ae3cc 100644 --- a/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java +++ b/nifty/src/main/java/jme3utilities/nifty/LibraryVersion.java @@ -60,6 +60,6 @@ private LibraryVersion() { * @return branch and revision (not null, not empty) */ public static String getVersionShort() { - return "master 0.7.6+1"; + return "master 0.7.7"; } }