Skip to content

Commit

Permalink
bump library versions, to ui-0.9.5 and x-0.2.22
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 21, 2021
1 parent 1adb844 commit 724e6de
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ ext {
// current versions of various libraries
heartVersion = '7.0.0'
jme3utilitiesniftyVersion = '0.9.21'
jme3utilitiesuiVersion = '0.9.4'
jme3utilitiesxVersion = '0.2.22-SNAPSHOT'
jme3utilitiesuiVersion = '0.9.5'
jme3utilitiesxVersion = '0.2.22'
jmonkeyengineVersion = '3.4.0-stable'
}

Expand Down
15 changes: 15 additions & 0 deletions ui/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# release log for the jme3-utilities-ui library and related tests

## Version 0.9.5 released on TBD

+ Renamed the alphabet hotkeys from uppercase to lowercase.
+ To better support non-US keyboards, added localization of hotkey names when
the jme3-lwjgl3 library is accessible at runtime:
+ Added the `toStringLocal()` method to the `Combo` class.
+ Added the `findLocal()`, `findUs()`, `localName()`, and `usName()`
to the Hotkey class.
+ Added the `bindLocal()` method to the `InputMode` class.
+ Renamed `listHotkeys()` in the `InputMode` class.
+ Removed the `find()` and `name()` methods from the `Hotkey` class.
+ Enhanced test coverage for non-US keyboard issues.
+ Renamed the `intialize()` method in the `Hotkey` class.
+ Based on version 7.0.0 of the Heart Library.

## Version 0.9.4 released on 31 May 2021

Based on jMonkeyEngine version 3.4.0-stable and Heart version 6.4.4.
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 "master 0.9.4";
return "master 0.9.5";
}
}
4 changes: 4 additions & 0 deletions x/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# release log for the jme3-utilities-x library and related tests

## Version 0.2.22 released on TBD

+ Based on version 7.0.0 of the Heart Library.

## Version 0.2.21 released on 31 May 2021

+ Targeted version 3.4.0-stable of jMonkeyEngine.
Expand Down
2 changes: 1 addition & 1 deletion x/src/main/java/jme3utilities/x/XVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ private XVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.2.22-SNAPSHOT";
return "master 0.2.22";
}
}

0 comments on commit 724e6de

Please sign in to comment.