Skip to content

Commit d70a0f4

Browse files
author
Jurgen
committed
Version 0.10.5 Release
1 parent 7552c74 commit d70a0f4

2 files changed

Lines changed: 26 additions & 7 deletions

File tree

CHANGELOG.md

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

3+
## [v0.10.5](https://github.com/FXMisc/RichTextFX/tree/v0.10.5) (2020-04-19)
4+
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.4...v0.10.5)
5+
6+
**Implemented enhancements:**
7+
8+
- Upgraded Gradle Maven plugin [\#910](https://github.com/FXMisc/RichTextFX/pull/910)
9+
- Provide suspendable undo manager and test [\#914](https://github.com/FXMisc/RichTextFX/pull/914)
10+
- Added getLocale and setLocale for BreakIterator use [\#920](https://github.com/FXMisc/RichTextFX/pull/920)
11+
- Allow ALT and ALT + CONTROL (or ALTGR on Windows) accelerators [\#922](https://github.com/FXMisc/RichTextFX/pull/922)
12+
13+
**Fixed bugs:**
14+
15+
- Bug: Fixed SelectionImpl not honouring constructor range [\#907](https://github.com/FXMisc/RichTextFX/pull/907)
16+
- Bug: Fixed RichTextChange reported by ReadOnlyStyledDocument replace [\#908](https://github.com/FXMisc/RichTextFX/pull/908)
17+
- Bug: Fixed post undo/redo caret position [\#915](https://github.com/FXMisc/RichTextFX/pull/915)
18+
- Bug: Fixed tests not on FX thread [\#917](https://github.com/FXMisc/RichTextFX/pull/917)
19+
- 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)
20+
- Bug: Fixed focus lost on right click [\#921](https://github.com/FXMisc/RichTextFX/pull/921) (Thank you [gaeqs](https://github.com/gaeqs))
21+
322
## [v0.10.4](https://github.com/FXMisc/RichTextFX/tree/v0.10.4) (2020-02-19)
423
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.3...v0.10.4)
524

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It does not follow the MVC paradigm as this prevented access to view-specific AP
88

99
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.
1010

11-
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)
11+
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)
1212

1313
Demos
1414
-----
@@ -31,7 +31,7 @@ Table of Contents
3131
* [Stable](#stable-release)
3232
* [Snapshot](#snapshot-releases)
3333
* API Documentation (Javadoc)
34-
* [0.10.4](http://fxmisc.github.io/richtext/javadoc/0.10.4/index.html?org/fxmisc/richtext/package-summary.html)
34+
* [0.10.5](http://fxmisc.github.io/richtext/javadoc/0.10.5/index.html?org/fxmisc/richtext/package-summary.html)
3535
* [License](#license)
3636
* [Contributing](./CONTRIBUTING.md)
3737

@@ -145,31 +145,31 @@ Download
145145

146146
### Stable release
147147

148-
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.
148+
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.
149149

150150
#### Maven coordinates
151151

152152
| Group ID | Artifact ID | Version |
153153
| :-----------------: | :---------: | :-----: |
154-
| org.fxmisc.richtext | richtextfx | 0.10.4 |
154+
| org.fxmisc.richtext | richtextfx | 0.10.5 |
155155

156156
#### Gradle example
157157

158158
```groovy
159159
dependencies {
160-
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.4'
160+
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.5'
161161
}
162162
```
163163

164164
#### Sbt example
165165

166166
```scala
167-
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.4"
167+
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.5"
168168
```
169169

170170
#### Manual download
171171

172-
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.
172+
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.
173173

174174
### Snapshot releases
175175

0 commit comments

Comments
 (0)