Skip to content

Commit

Permalink
Release 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurgen committed Nov 25, 2018
1 parent cc11721 commit 74efc78
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
15 changes: 6 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
==========
Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 74efc78

Please # to comment.