From 1f3cdd5245b12135154741141c1b0946c2c1676d Mon Sep 17 00:00:00 2001 From: Jurgen Date: Tue, 26 Oct 2021 08:53:12 +0200 Subject: [PATCH] Version 0.10.7 Release --- CHANGELOG.md | 18 ++++++++++++++++++ README.md | 12 ++++++------ 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2389720..9e19eb88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Change Log +## [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) + +**Implemented enhancements:** + +- Added setPlaceholder( Node, Pos ) [\#1035](https://github.com/FXMisc/RichTextFX/pull/1035) +- Bumped Flowless to 0.6.7 +- Bumped undofx to 2.1.1 + +**Fixed bugs:** + +- Bug: Fixed caret disappear with large font [\#1017](https://github.com/FXMisc/RichTextFX/issues/1017) +- Bug: Fixed CodeArea w/ LineNumberFactory throws when replacing multi-line text with .replaceText() [\#1021](https://github.com/FXMisc/RichTextFX/issues/1021) +- Bug: Fixed CaretNode not being transparent to mouse picking [\#1032](https://github.com/FXMisc/RichTextFX/pull/1032) (Thank you [chrisf-london](https://github.com/chrisf-london)) +- Bug: Fixed async demo syntax highlighting after file load [\#1045](https://github.com/FXMisc/RichTextFX/pull/1045) (Thank you [BorisSkegin](https://github.com/sirop)) +- Bug: Fixed visibleParToAllParIndex parameter check [\#1022](https://github.com/FXMisc/RichTextFX/pull/1022) +- Bug: Fixed StyledTextField initial height [\#1037](https://github.com/FXMisc/RichTextFX/pull/1037) + ## [v0.10.6](https://github.com/FXMisc/RichTextFX/tree/v0.10.6) (2021-03-15) [Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.5...v0.10.6) diff --git a/README.md b/README.md index d34e1ab6..309a4d6c 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.6](http://fxmisc.github.io/richtext/javadoc/0.10.6/index.html?org/fxmisc/richtext/package-summary.html) + * [0.10.7](http://fxmisc.github.io/richtext/javadoc/0.10.7/index.html?org/fxmisc/richtext/package-summary.html) * [License](#license) * [Contributing](./CONTRIBUTING.md) @@ -148,31 +148,31 @@ Download ### Stable release -Current stable release is 0.10.6 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.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. #### Maven coordinates | Group ID | Artifact ID | Version | | :-----------------: | :---------: | :-----: | -| org.fxmisc.richtext | richtextfx | 0.10.6 | +| org.fxmisc.richtext | richtextfx | 0.10.7 | #### Gradle example ```groovy dependencies { - compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.6' + compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.7' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.6" +libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.7" ``` #### Manual download -Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.6/richtextfx-0.10.6.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.6/richtextfx-fat-0.10.6.jar) and place it on your classpath. +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. ### Snapshot releases