Skip to content

Commit 74efc78

Browse files
author
Jurgen
committed
Release 0.9.2
1 parent cc11721 commit 74efc78

2 files changed

Lines changed: 23 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Change Log
22

3+
## [v0.9.2](https://github.com/FXMisc/RichTextFX/tree/v0.9.2) (2018-11-23)
4+
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.9.1...v0.9.2)
5+
6+
**Fixed bugs:**
7+
8+
- Issue: Extreme memory usage with large blocks of text [\#627](https://github.com/FXMisc/RichTextFX/issues/627)
9+
- Bug: Replace selected text with pasted text causes exception [\#774](https://github.com/FXMisc/RichTextFX/issues/774)
10+
- Bug: After undo (ctrl-Z), text insertion point jumps to the start [\#780](https://github.com/FXMisc/RichTextFX/issues/780)
11+
12+
**Merged pull requests:**
13+
14+
- Fixed issue: Extreme memory usage with large blocks of text [\#779](https://github.com/FXMisc/RichTextFX/pull/779) ([JonathanMarchand](https://github.com/JonathanMarchand))
15+
- Fix bug: Replace selected text with pasted text causes exception [\#775](https://github.com/FXMisc/RichTextFX/pull/775) ([MrChebik](https://github.com/MrChebik))
16+
- 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))
17+
- Added George to 'Who uses RichTextFX?' [\#778](https://github.com/FXMisc/RichTextFX/pull/778) ([terjedahl](https://github.com/terjedahl))
18+
- Added Nearde IDE to 'Who uses RichTextFX?' [\#784](https://github.com/FXMisc/RichTextFX/pull/784) ([MWGuy](https://github.com/MWGuy))
19+
320
## [v0.9.1](https://github.com/FXMisc/RichTextFX/tree/v0.9.1) (2018-07-16)
421
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.9.0...v0.9.1)
522

README.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
**This project is no longer being maintained. See [this issue](https://github.com/FXMisc/RichTextFX/issues/768) for more details.**
21

32
RichTextFX
43
==========
@@ -32,7 +31,7 @@ Table of Contents
3231
* [Stable](#stable-release)
3332
* [Snapshot](#snapshot-releases)
3433
* API Documentation (Javadoc)
35-
* [0.9.1](http://fxmisc.github.io/richtext/javadoc/0.9.1/org/fxmisc/richtext/package-summary.html)
34+
* [0.9.2](http://fxmisc.github.io/richtext/javadoc/0.9.1/org/fxmisc/richtext/package-summary.html)
3635
* [License](#license)
3736
* [Contributing](./CONTRIBUTING.md)
3837

@@ -138,38 +137,36 @@ Requirements
138137

139138
[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.
140139

141-
JDK 8u40 is recommended, because it fixes some text rendering bugs.
142-
143140
Download
144141
--------
145142

146143
### Stable release
147144

148-
Current stable release is 0.9.1.
145+
Current stable release is 0.9.2.
149146

150147
#### Maven coordinates
151148

152149
| Group ID | Artifact ID | Version |
153150
| :-----------------: | :---------: | :-----: |
154-
| org.fxmisc.richtext | richtextfx | 0.9.1 |
151+
| org.fxmisc.richtext | richtextfx | 0.9.2 |
155152

156153
#### Gradle example
157154

158155
```groovy
159156
dependencies {
160-
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.9.1'
157+
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.9.2'
161158
}
162159
```
163160

164161
#### Sbt example
165162

166163
```scala
167-
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.9.1"
164+
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.9.2"
168165
```
169166

170167
#### Manual download
171168

172-
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.
169+
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.
173170

174171
### Snapshot releases
175172

0 commit comments

Comments
 (0)