From 68af3f5dedf29b308ccfaf43548c6d8733a0ae4d Mon Sep 17 00:00:00 2001 From: Jurgen Date: Mon, 28 Feb 2022 18:40:36 +0200 Subject: [PATCH] Version 0.10.8 Release --- CHANGELOG.md | 25 +++++++++++++++++++++++++ README.md | 12 ++++++------ richtextfx/build.gradle | 2 +- 3 files changed, 32 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e19eb88..7387ec1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Change Log +## [v0.10.8](https://github.com/FXMisc/RichTextFX/tree/v0.10.8) (2022-02-28) +[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.7...v0.10.8) + +**Implemented enhancements:** + +- Added overwrite mode [\#1051](https://github.com/FXMisc/RichTextFX/pull/1051) +- Added showParagraphAtCenter [\#1054](https://github.com/FXMisc/RichTextFX/pull/1054) +- Add hasChanges to MultiChangeBuilder [\#1084](https://github.com/FXMisc/RichTextFX/pull/1084) +- Added nextLine & prevLine, behaves like nextPage & prevPage [\#1086](https://github.com/FXMisc/RichTextFX/pull/1086) +- Changed code area navigation to behave more like a code editor [\#1090](https://github.com/FXMisc/RichTextFX/pull/1090) + +**Fixed bugs:** + +- Bug: Fixed getCaretBounds exception [\#1049](https://github.com/FXMisc/RichTextFX/pull/1049) +- Bug: Fixed follow caret with selection update [\#1059](https://github.com/FXMisc/RichTextFX/pull/1059) +- Bug: Fixed line selection off not updating [\#1066](https://github.com/FXMisc/RichTextFX/pull/1066) +- Bug: Fixed selection shape [\#1067](https://github.com/FXMisc/RichTextFX/pull/1067) +- Bug: Fixed InputMethodRequest getTextLocation fix [\#1075](https://github.com/FXMisc/RichTextFX/pull/1075) +- Bug: Fixed getCharacterBoundsOnScreen when from == to [\#1076](https://github.com/FXMisc/RichTextFX/pull/1076) +- Bug: Fixed ParagraphBox not respecting the graphic node's managed property [\#1079](https://github.com/FXMisc/RichTextFX/pull/1079) +- Bug: Fixed wrapped lines get skipped at high DPI settings when navigating with up/down arrow keys. [\#1074](https://github.com/FXMisc/RichTextFX/pull/1074) +- Bug: Fixed linehighlighter off on selection [\#1085](https://github.com/FXMisc/RichTextFX/pull/1085) +- Bug: Fixed wordBreaksForward not using locale [\#1089](https://github.com/FXMisc/RichTextFX/pull/1089) +- Bug: Reverted Flowless back to 0.6.4 for Java 8 compatibility + ## [v0.10.7](https://github.com/FXMisc/RichTextFX/tree/v0.10.7) (2021-10-26) [Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.6...v0.10.7) diff --git a/README.md b/README.md index 00bb7146..ead20e32 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Table of Contents * [Stable](#stable-release) * [Snapshot](#snapshot-releases) * API Documentation (Javadoc) - * [0.10.7](http://fxmisc.github.io/richtext/javadoc/0.10.7/index.html?org/fxmisc/richtext/package-summary.html) + * [0.10.8](http://fxmisc.github.io/richtext/javadoc/0.10.8/index.html?org/fxmisc/richtext/package-summary.html) * [License](#license) * [Contributing](./CONTRIBUTING.md) @@ -150,31 +150,31 @@ Download ### Stable release -Current stable release is 0.10.7 which is a multi-release JAR that is compatible with Java 9 and UP without the need for `add-exports` or `add-opens` JVM arguments. +Current stable release is 0.10.8 which is a multi-release JAR that is compatible with Java 9 and UP without the need for `add-exports` or `add-opens` JVM arguments. #### Maven coordinates | Group ID | Artifact ID | Version | | :-----------------: | :---------: | :-----: | -| org.fxmisc.richtext | richtextfx | 0.10.7 | +| org.fxmisc.richtext | richtextfx | 0.10.8 | #### Gradle example ```groovy dependencies { - compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.7' + compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.8' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.7" +libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.8" ``` #### Manual download -Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.7/richtextfx-0.10.7.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.7/richtextfx-fat-0.10.7.jar) and place it on your classpath. +Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.8/richtextfx-0.10.8.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.8/richtextfx-fat-0.10.8.jar) and place it on your classpath. ### Snapshot releases diff --git a/richtextfx/build.gradle b/richtextfx/build.gradle index 29060258..3ca417be 100644 --- a/richtextfx/build.gradle +++ b/richtextfx/build.gradle @@ -35,7 +35,7 @@ sourceSets { dependencies { api group: 'org.reactfx', name: 'reactfx', version: '2.0-M5' api group: 'org.fxmisc.undo', name: 'undofx', version: '2.1.1' - api group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.8' + api group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.4' api group: 'org.fxmisc.wellbehaved', name: 'wellbehavedfx', version: '0.3.3' java9Implementation files(sourceSets.main.output.classesDirs) { builtBy compileJava }