diff --git a/CHANGELOG.md b/CHANGELOG.md index 53fed3d..36b8cd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [v0.6.3](https://github.com/FXMisc/Flowless/tree/v0.6.3) (2021-02-23) +[Full Changelog](https://github.com/FXMisc/Flowless/compare/v0.6.2...v0.6.3) + +**Fixed issues:** + +- VirtualizedScrollPane causes high CPU and GPU on idle with 125% screen scaling [\#81](https://github.com/FXMisc/Flowless/issues/81) + +**Merged pull requests:** + +- Scrollbars height/width ceiled to nearest pixel if this region's snapToPixel property is true [\#82](https://github.com/FXMisc/Flowless/pull/82) ([FredericThevenet](https://github.com/fthevenet)) + ## [v0.6.2](https://github.com/FXMisc/Flowless/tree/v0.6.2) (2020-10-02) [Full Changelog](https://github.com/FXMisc/Flowless/compare/v0.6.1...v0.6.2) diff --git a/README.md b/README.md index 3bc9ff0..296f979 100644 --- a/README.md +++ b/README.md @@ -73,25 +73,25 @@ Include Flowless in your project | Group ID | Artifact ID | Version | | :---------: | :---------: | :-----: | -| org.fxmisc.flowless | flowless | 0.6.2 | +| org.fxmisc.flowless | flowless | 0.6.3 | #### Gradle example ```groovy dependencies { - compile group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.2' + compile group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.3' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.flowless" % "flowless" % "0.6.2" +libraryDependencies += "org.fxmisc.flowless" % "flowless" % "0.6.3" ``` #### Manual download -Download the [0.6.2 jar](https://github.com/FXMisc/Flowless/releases/tag/v0.6.2) and place it on your classpath. +Download the [0.6.3 jar](https://github.com/FXMisc/Flowless/releases/tag/v0.6.3) and place it on your classpath. Documentation -------------