diff --git a/CHANGELOG.md b/CHANGELOG.md index deb99d01..c5be7528 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ FlatLaf Change Log ================== -## Unreleased +## 0.28 - PasswordField: Warn about enabled Caps Lock. - TabbedPane: Support Ctrl+TAB / Ctrl+Shift+TAB to switch @@ -11,6 +11,10 @@ FlatLaf Change Log - IntelliJ Themes: Added Gradianto themes to demo. - Button, CheckBox and RadioButton: Fixed NPE when button has children. (PR #68) - ScrollBar: Improved colors. +- Reviewed (and tested) all key bindings on Windows and macOS. Linux key + bindings are equal to Windows key bindings. macOS key bindings are slightly + different for platform specific behavior. +- UI default values are no longer based on Metal/Aqua UI defaults. ## 0.27 diff --git a/build.gradle.kts b/build.gradle.kts index 82af0dc3..9d44f41b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,8 +14,8 @@ * limitations under the License. */ -val releaseVersion = "0.27" -val developmentVersion = "0.28-SNAPSHOT" +val releaseVersion = "0.28" +val developmentVersion = "0.29-SNAPSHOT" version = if( java.lang.Boolean.getBoolean( "release" ) ) releaseVersion else developmentVersion