Skip to content

Commit

Permalink
UI library: bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Aug 16, 2020
1 parent 5cf4dbc commit f5a584c
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 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
heartVersion = '6.0.0'
jme3utilitiesniftyVersion = '0.9.14'
jme3utilitiesuiVersion = '0.8.3'
jme3utilitiesuiVersion = '0.9.0'
jme3utilitiesxVersion = '0.2.19'
jmonkeyengineVersion = '3.3.2-stable'
}
Expand Down
23 changes: 23 additions & 0 deletions ui/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# release log for the jme3-utilities-ui library and related tests

## Version 0.9.0 released on TBD

+ Redesigned the API of the `InputMode` class:
+ Renamed the `findHotkeys()`, `getActionName()`, `getConfigPath()`,
and `getShortName()` methods.
+ Privatized the `suspend()` and `resume()` methods.
+ Protected the `activate()` and `deactivate()` methods.
+ Extended the `bind(String, int)` method to accept multiple keycodes.
+ Redesigned the API of the `Hotkey` class:
+ De-publicized the `map()` and `unmap()` methods.
+ Renamed the `getButtonCode()`, `getCode()`, `getKeyCode()`, and `getName()`
methods.
+ Other changes to the library API:
+ Deleted the `exists()` method from the `Signals` class.
+ Privatized the `mapActions()` method from the `HelpUtils` class.
+ Implemented combos and combo actions, including a `Combo` class.
+ Implemented a suspend/resume stack and added `suspendAndActivate()`
and `resumeLifo()` methods to the `InputMode` class.
+ Added the `bindSignal()` convenience methods to the `InputMode` class.
+ Added the `TestCaos`, `TestCombo`, `TestCursors`,
and `TestTwoModes` applications.
+ Based on version 6.0.0 of the Heart Library.

## Version 0.8.3 released on 27 April 2020

+ Updated the `DisplaySettings` class to allow BPP, MSAA, and gamma-correction
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.8.3-SNAPSHOT";
return "master 0.9.0";
}
}

0 comments on commit f5a584c

Please sign in to comment.