Skip to content

Commit

Permalink
bump ui version to 0.5.1, nifty version to 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 11, 2017
1 parent 54742af commit 2d15c94
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 11 deletions.
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ ext {
// version numbers for libraries
jcommanderVersion = '1.71'
jme3utilitiesdebugVersion = '0.5.2'
jme3utilitiesniftyVersion = '0.6.2'
jme3utilitiesuiVersion = '0.5.0'
jme3utilitiesniftyVersion = '0.6.3'
jme3utilitiesuiVersion = '0.5.1'
jmonkeyengineVersion = '3.1.0-stable'
skycontrolVersion = '0.9.3'
}
Expand Down
4 changes: 2 additions & 2 deletions nifty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ dependencies {
compile "jme3utilities:SkyControl:$skycontrolVersion"
//compile project(':SkyControl')

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

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

## Version 0.6.2 released 2 May 2017
## Version 0.6.3 released on TBD

Added a simple confirmation dialog box.
Added DialogController class for customizing dialog boxes.
Added a feedback section to text-entry dialog box.
Bound the F5 key in menu input mode and dialog input modes.

## Version 0.6.2 released on 2 May 2017

Public access to updateSliderStatus() in GuiScreenController class.

## Version 0.6.1 released 27 April 2017
## Version 0.6.1 released on 27 April 2017

Added informational dialog boxes and changed APIs, renaming showDialog() and
showPopup() methods.

## Version 0.6.0 released 15 April 2017
## Version 0.6.0 released on 15 April 2017

Added WindowController class and revamped APIs (especially GuiScreenController)
making most methods public and non-static.

## Version 0.5.2 released 13 April 2017
## Version 0.5.2 released on 13 April 2017

Improved sizing of popup menus.

## Version 0.5.1 released 12 April 2017
## Version 0.5.1 released on 12 April 2017

Fixed assertion error when activating BindScreen from a popup.

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.2+1";
return "master 0.6.3";
}
}
4 changes: 4 additions & 0 deletions ui/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# release notes for the jme3-utilities-ui library and related tests

## Version 0.5.1 released on TBD

Extended the HotKey class to include mouse buttons, redesigned the API.

## Version 0.5.0 released on 9 April 2017

This was the initial baseline release.
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.0+1";
return "master 0.5.1";
}
}

0 comments on commit 2d15c94

Please sign in to comment.