Skip to content

Commit 724e6de

Browse files
committed
bump library versions, to ui-0.9.5 and x-0.2.22
1 parent 1adb844 commit 724e6de

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

common.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ ext {
3232
// current versions of various libraries
3333
heartVersion = '7.0.0'
3434
jme3utilitiesniftyVersion = '0.9.21'
35-
jme3utilitiesuiVersion = '0.9.4'
36-
jme3utilitiesxVersion = '0.2.22-SNAPSHOT'
35+
jme3utilitiesuiVersion = '0.9.5'
36+
jme3utilitiesxVersion = '0.2.22'
3737
jmonkeyengineVersion = '3.4.0-stable'
3838
}
3939

ui/release-notes.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# release log for the jme3-utilities-ui library and related tests
22

3+
## Version 0.9.5 released on TBD
4+
5+
+ Renamed the alphabet hotkeys from uppercase to lowercase.
6+
+ To better support non-US keyboards, added localization of hotkey names when
7+
the jme3-lwjgl3 library is accessible at runtime:
8+
+ Added the `toStringLocal()` method to the `Combo` class.
9+
+ Added the `findLocal()`, `findUs()`, `localName()`, and `usName()`
10+
to the Hotkey class.
11+
+ Added the `bindLocal()` method to the `InputMode` class.
12+
+ Renamed `listHotkeys()` in the `InputMode` class.
13+
+ Removed the `find()` and `name()` methods from the `Hotkey` class.
14+
+ Enhanced test coverage for non-US keyboard issues.
15+
+ Renamed the `intialize()` method in the `Hotkey` class.
16+
+ Based on version 7.0.0 of the Heart Library.
17+
318
## Version 0.9.4 released on 31 May 2021
419

520
Based on jMonkeyEngine version 3.4.0-stable and Heart version 6.4.4.

ui/src/main/java/jme3utilities/ui/UiVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ private UiVersion() {
6060
* @return branch and revision (not null, not empty)
6161
*/
6262
public static String versionShort() {
63-
return "master 0.9.4";
63+
return "master 0.9.5";
6464
}
6565
}

x/release-notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# release log for the jme3-utilities-x library and related tests
22

3+
## Version 0.2.22 released on TBD
4+
5+
+ Based on version 7.0.0 of the Heart Library.
6+
37
## Version 0.2.21 released on 31 May 2021
48

59
+ Targeted version 3.4.0-stable of jMonkeyEngine.

x/src/main/java/jme3utilities/x/XVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ private XVersion() {
6060
* @return branch and revision (not null, not empty)
6161
*/
6262
public static String versionShort() {
63-
return "master 0.2.22-SNAPSHOT";
63+
return "master 0.2.22";
6464
}
6565
}

0 commit comments

Comments
 (0)