diff --git a/CHANGELOG.md b/CHANGELOG.md index 8490b47c2..3c8e498ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## [v0.9.2](https://github.com/FXMisc/RichTextFX/tree/v0.9.2) (2018-11-23) +[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.9.1...v0.9.2) + +**Fixed bugs:** + +- Issue: Extreme memory usage with large blocks of text [\#627](https://github.com/FXMisc/RichTextFX/issues/627) +- Bug: Replace selected text with pasted text causes exception [\#774](https://github.com/FXMisc/RichTextFX/issues/774) +- Bug: After undo (ctrl-Z), text insertion point jumps to the start [\#780](https://github.com/FXMisc/RichTextFX/issues/780) + +**Merged pull requests:** + +- Fixed issue: Extreme memory usage with large blocks of text [\#779](https://github.com/FXMisc/RichTextFX/pull/779) ([JonathanMarchand](https://github.com/JonathanMarchand)) +- Fix bug: Replace selected text with pasted text causes exception [\#775](https://github.com/FXMisc/RichTextFX/pull/775) ([MrChebik](https://github.com/MrChebik)) +- Fix bug: After undo (ctrl-Z), text insertion point jumps to the start [\#785](https://github.com/FXMisc/RichTextFX/pull/785) ([Jugen](https://github.com/Jugen)) +- Added George to 'Who uses RichTextFX?' [\#778](https://github.com/FXMisc/RichTextFX/pull/778) ([terjedahl](https://github.com/terjedahl)) +- Added Nearde IDE to 'Who uses RichTextFX?' [\#784](https://github.com/FXMisc/RichTextFX/pull/784) ([MWGuy](https://github.com/MWGuy)) + ## [v0.9.1](https://github.com/FXMisc/RichTextFX/tree/v0.9.1) (2018-07-16) [Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.9.0...v0.9.1) diff --git a/README.md b/README.md index 48b76f2f4..7c2fc8e20 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ -**This project is no longer being maintained. See [this issue](https://github.com/FXMisc/RichTextFX/issues/768) for more details.** RichTextFX ========== @@ -32,7 +31,7 @@ Table of Contents * [Stable](#stable-release) * [Snapshot](#snapshot-releases) * API Documentation (Javadoc) - * [0.9.1](http://fxmisc.github.io/richtext/javadoc/0.9.1/org/fxmisc/richtext/package-summary.html) + * [0.9.2](http://fxmisc.github.io/richtext/javadoc/0.9.1/org/fxmisc/richtext/package-summary.html) * [License](#license) * [Contributing](./CONTRIBUTING.md) @@ -138,38 +137,36 @@ Requirements [JDK8](https://jdk8.java.net/download.html) is required, because [TextFlow](http://download.java.net/jdk8/jfxdocs/javafx/scene/text/TextFlow.html), introduced in JavaFX 8.0, is used to render each line. Also, there's a heavy use of lambdas, defender methods and the stream API in the code base. -JDK 8u40 is recommended, because it fixes some text rendering bugs. - Download -------- ### Stable release -Current stable release is 0.9.1. +Current stable release is 0.9.2. #### Maven coordinates | Group ID | Artifact ID | Version | | :-----------------: | :---------: | :-----: | -| org.fxmisc.richtext | richtextfx | 0.9.1 | +| org.fxmisc.richtext | richtextfx | 0.9.2 | #### Gradle example ```groovy dependencies { - compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.9.1' + compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.9.2' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.9.1" +libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.9.2" ``` #### Manual download -Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.9.1/richtextfx-0.9.1.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.9.1/richtextfx-fat-0.9.1.jar) and place it on your classpath. +Download [the JAR file](https://github.com/TomasMikula/RichTextFX/releases/download/v0.9.2/richtextfx-0.9.2.jar) or [the fat JAR file (including dependencies)](https://github.com/TomasMikula/RichTextFX/releases/download/v0.9.2/richtextfx-fat-0.9.2.jar) and place it on your classpath. ### Snapshot releases