diff --git a/CHANGELOG.md b/CHANGELOG.md index 09e1604f..3792d066 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,23 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). [//]: ##[Unreleased] +# [11.17.0] - 13-11-2023 + +## Changed + +- Update Gradle and some dependencies +- Import build scripts from the `rewrite` branch +- Improved notification systems thanks to @infinite-dev22 (PR#325) +- Backport and replace the Theming API from the `rewrite` branch, performance now should be vastly better +- Explicitly add MFXCore and MFXResources as dependencies to always use their latest version + +## Fixed + +- Fixed MFXSimpleTreeCell still using old MFXResources for the arrow icon. It is now set in CSS +- Fixed how FilterBeans produce Predicates, leading to the wrong filter being built +- Fixed exceptions being thrown when changing the MFXFilterPane's skin, due to a listener not being disposed +- Fixed MFXScrollPane not changing the track and thumb colors because the respective color tokens in CSS were changed + # [11.16.1] - 08-04-2023 ## Changed diff --git a/README.md b/README.md index 2717ddd9..0f6e86e8 100755 --- a/README.md +++ b/README.md @@ -235,7 +235,7 @@ repositories { } dependencies { - implementation 'io.github.palexdev:materialfx:11.16.1' + implementation 'io.github.palexdev:materialfx:11.17.0' } ``` @@ -246,7 +246,7 @@ dependencies { io.github.palexdev materialfx - 11.16.1 + 11.17.0 ``` diff --git a/gradle.properties b/gradle.properties index bdba5faa..2f185b7f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ #--------------------------------------# jdk=11 testJdk=17 -materialfx=11.16.1 +materialfx=11.17.0 # Plugins jfxPlugin=0.0.13 diff --git a/materialfx/gradle.properties b/materialfx/gradle.properties index a598b925..42ef325b 100755 --- a/materialfx/gradle.properties +++ b/materialfx/gradle.properties @@ -1,6 +1,6 @@ GROUP=io.github.palexdev POM_ARTIFACT_ID=materialfx -VERSION_NAME=11.16.1 +VERSION_NAME=11.17.0 POM_NAME=materialfx POM_DESCRIPTION=Material Desgin components for JavaFX