Skip to content

Commit

Permalink
UI library: bump version to 0.8.0for32 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 24, 2020
1 parent c4fe8f0 commit 3239ccd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ext { // current versions of various libraries
jcommanderVersion = '1.74'
jme3utilitiesheartVersion = '4.4.0for32'
jme3utilitiesniftyVersion = '0.9.12for32'
jme3utilitiesuiVersion = '0.7.10for32'
jme3utilitiesuiVersion = '0.8.0for32'
jme3utilitiesxVersion = '0.2.17for32'
jmonkeyengineVersion = '3.2.4-stable'
skycontrolVersion = '0.9.24for32'
Expand Down
4 changes: 2 additions & 2 deletions ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ javadocJar { archiveBaseName = project.ext.baseName }
sourcesJar { archiveBaseName = project.ext.baseName }

dependencies {
//api "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
api project(':heart')
api "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
//api project(':heart')
}

build.dependsOn('pom')
Expand Down
16 changes: 16 additions & 0 deletions ui/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# release notes for the jme3-utilities-ui library and related tests

## Version 0.8.0for32 released on TBD

+ Moved the `PropertiesLoader` class to the jme3-utilities-heart
library. (API change)
+ Finalized `simpleInitApp()` in the `ActionApplication` class. (API change)
+ Bufix: corrected the name for `KEY_NUMPADCOMMA` in the `Hotkey` class.
+ Added names for `KEY_PRTSCR`, `KEY_DECIMAL`, and `KEY_SUBTRACT`
to the `HotKey` class.
+ Added screenshot support to the `ActionApplication` class.
+ Added black backgrounds to all help nodes.
+ Added the `TestHotKeys` application to the tests sub-project.
+ Added a help node to the `TestFlyCam` application.
+ Added a `dumpAll()` method to the `Locators` class, for debugging.
+ Added "green.cur" cursor texture to the built-in assets.
+ Based on version 4.4 of the jme3-utilities-heart library.

## Version 0.7.10for32 released on 4 January 2020

+ Added the `HelpUtils` class.
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 @@ -60,6 +60,6 @@ private UiVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "for_jME3.2 0.7.10for32+1";
return "for_jME3.2 0.8.0for32";
}
}

0 comments on commit 3239ccd

Please sign in to comment.