From 1523a984f28cf4b445a808421f10c946ee3c2005 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Mon, 23 Nov 2020 13:34:08 -0800 Subject: [PATCH] UI library: bump version to 0.9.1 and and update release-notes.md --- common.gradle | 2 +- ui/release-notes.md | 11 +++++++++++ ui/src/main/java/jme3utilities/ui/UiVersion.java | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/common.gradle b/common.gradle index 269a8559b..a92c9f68e 100644 --- a/common.gradle +++ b/common.gradle @@ -32,7 +32,7 @@ ext { // current versions of various libraries heartVersion = '6.2.0' jme3utilitiesniftyVersion = '0.9.16-SNAPSHOT' - jme3utilitiesuiVersion = '0.9.0' + jme3utilitiesuiVersion = '0.9.1' jme3utilitiesxVersion = '0.2.19' jmonkeyengineVersion = '3.3.2-stable' } diff --git a/ui/release-notes.md b/ui/release-notes.md index 84e68b974..8e55ed397 100644 --- a/ui/release-notes.md +++ b/ui/release-notes.md @@ -1,5 +1,16 @@ # release log for the jme3-utilities-ui library and related tests +## Version 0.9.1 released on TBD + + + Added combo hints to help screens. + + Allowed spaces in signal names (should still be discouraged). + + Added the `listCombos()` method to the `InputMode` class. + + Added `countSignals()`, `isPositive()`, and `signalName()` methods + to the `Combo` class. + + Clarified the `TestCombo` application. + + Reimplemented `Signals` as a subclass of `SignalTracker`. + + Based on version 6.2.0 of the Heart Library. + ## Version 0.9.0 released on 16 August 2020 + Redesigned the API of the `InputMode` class: diff --git a/ui/src/main/java/jme3utilities/ui/UiVersion.java b/ui/src/main/java/jme3utilities/ui/UiVersion.java index 9b00ebcef..6443d5323 100644 --- a/ui/src/main/java/jme3utilities/ui/UiVersion.java +++ b/ui/src/main/java/jme3utilities/ui/UiVersion.java @@ -60,6 +60,6 @@ private UiVersion() { * @return branch and revision (not null, not empty) */ public static String versionShort() { - return "master 0.9.0-SNAPSHOT"; + return "master 0.9.1"; } }