Skip to content

Commit

Permalink
nifty library: bump version to 0.7.7 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 10, 2018
1 parent df39bd7 commit fcc03d8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
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,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

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.6+1";
return "master 0.7.7";
}
}

0 comments on commit fcc03d8

Please sign in to comment.