From d70a0f4849cdadb3080e72a0569619aac0115651 Mon Sep 17 00:00:00 2001 From: Jurgen Date: Fri, 17 Apr 2020 10:01:44 +0200 Subject: [PATCH] Version 0.10.5 Release --- CHANGELOG.md | 19 +++++++++++++++++++ README.md | 14 +++++++------- 2 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 051ef61be..fa7c6bf67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [v0.10.5](https://github.com/FXMisc/RichTextFX/tree/v0.10.5) (2020-04-19) +[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.4...v0.10.5) + +**Implemented enhancements:** + +- Upgraded Gradle Maven plugin [\#910](https://github.com/FXMisc/RichTextFX/pull/910) +- Provide suspendable undo manager and test [\#914](https://github.com/FXMisc/RichTextFX/pull/914) +- Added getLocale and setLocale for BreakIterator use [\#920](https://github.com/FXMisc/RichTextFX/pull/920) +- Allow ALT and ALT + CONTROL (or ALTGR on Windows) accelerators [\#922](https://github.com/FXMisc/RichTextFX/pull/922) + +**Fixed bugs:** + +- Bug: Fixed SelectionImpl not honouring constructor range [\#907](https://github.com/FXMisc/RichTextFX/pull/907) +- Bug: Fixed RichTextChange reported by ReadOnlyStyledDocument replace [\#908](https://github.com/FXMisc/RichTextFX/pull/908) +- Bug: Fixed post undo/redo caret position [\#915](https://github.com/FXMisc/RichTextFX/pull/915) +- Bug: Fixed tests not on FX thread [\#917](https://github.com/FXMisc/RichTextFX/pull/917) +- Bug: Fixed scrollbar jump [\#918](https://github.com/FXMisc/RichTextFX/pull/918), also alternative fix for visibleParToAllParIndex crashing [\#777](https://github.com/FXMisc/RichTextFX/issues/777) +- Bug: Fixed focus lost on right click [\#921](https://github.com/FXMisc/RichTextFX/pull/921) (Thank you [gaeqs](https://github.com/gaeqs)) + ## [v0.10.4](https://github.com/FXMisc/RichTextFX/tree/v0.10.4) (2020-02-19) [Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.3...v0.10.4) diff --git a/README.md b/README.md index bd4a47e30..b3ab0b376 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ It does not follow the MVC paradigm as this prevented access to view-specific AP It is intended as a base for rich-text editors and code editors with syntax highlighting. Since it is a base, a number of suggested features (specific syntax highlighters, search-and-replace, specific support for hyperlinks, etc.) will not be implemented directly in this project. Rather, developers can implement these on top of RichTextFX and submit their work as a PR to the `richtextfx-demos` package. -For a greater explanation of RichTextFX, its design principles, how it works, and how to style its areas via CSS, please [see the wiki](https://github.com/TomasMikula/RichTextFX/wiki) +For a greater explanation of RichTextFX, its design principles, how it works, and how to style its areas via CSS, please [see the wiki](https://github.com/FXMisc/RichTextFX/wiki) Demos ----- @@ -31,7 +31,7 @@ Table of Contents * [Stable](#stable-release) * [Snapshot](#snapshot-releases) * API Documentation (Javadoc) - * [0.10.4](http://fxmisc.github.io/richtext/javadoc/0.10.4/index.html?org/fxmisc/richtext/package-summary.html) + * [0.10.5](http://fxmisc.github.io/richtext/javadoc/0.10.5/index.html?org/fxmisc/richtext/package-summary.html) * [License](#license) * [Contributing](./CONTRIBUTING.md) @@ -145,31 +145,31 @@ Download ### Stable release -Current stable release is 0.10.4 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.5 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.4 | +| org.fxmisc.richtext | richtextfx | 0.10.5 | #### Gradle example ```groovy dependencies { - compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.4' + compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.5' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.4" +libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.5" ``` #### Manual download -Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.10.4/richtextfx-0.10.4.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.10.4/richtextfx-fat-0.10.4.jar) and place it on your classpath. +Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.5/richtextfx-0.10.5.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.5/richtextfx-fat-0.10.5.jar) and place it on your classpath. ### Snapshot releases