Skip to content

Commit 68af3f5

Browse files
committed
Version 0.10.8 Release
1 parent 9a490fc commit 68af3f5

File tree

3 files changed

+32
-7
lines changed

3 files changed

+32
-7
lines changed

CHANGELOG.md

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

3+
## [v0.10.8](https://github.com/FXMisc/RichTextFX/tree/v0.10.8) (2022-02-28)
4+
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.7...v0.10.8)
5+
6+
**Implemented enhancements:**
7+
8+
- Added overwrite mode [\#1051](https://github.com/FXMisc/RichTextFX/pull/1051)
9+
- Added showParagraphAtCenter [\#1054](https://github.com/FXMisc/RichTextFX/pull/1054)
10+
- Add hasChanges to MultiChangeBuilder [\#1084](https://github.com/FXMisc/RichTextFX/pull/1084)
11+
- Added nextLine & prevLine, behaves like nextPage & prevPage [\#1086](https://github.com/FXMisc/RichTextFX/pull/1086)
12+
- Changed code area navigation to behave more like a code editor [\#1090](https://github.com/FXMisc/RichTextFX/pull/1090)
13+
14+
**Fixed bugs:**
15+
16+
- Bug: Fixed getCaretBounds exception [\#1049](https://github.com/FXMisc/RichTextFX/pull/1049)
17+
- Bug: Fixed follow caret with selection update [\#1059](https://github.com/FXMisc/RichTextFX/pull/1059)
18+
- Bug: Fixed line selection off not updating [\#1066](https://github.com/FXMisc/RichTextFX/pull/1066)
19+
- Bug: Fixed selection shape [\#1067](https://github.com/FXMisc/RichTextFX/pull/1067)
20+
- Bug: Fixed InputMethodRequest getTextLocation fix [\#1075](https://github.com/FXMisc/RichTextFX/pull/1075)
21+
- Bug: Fixed getCharacterBoundsOnScreen when from == to [\#1076](https://github.com/FXMisc/RichTextFX/pull/1076)
22+
- Bug: Fixed ParagraphBox not respecting the graphic node's managed property [\#1079](https://github.com/FXMisc/RichTextFX/pull/1079)
23+
- Bug: Fixed wrapped lines get skipped at high DPI settings when navigating with up/down arrow keys. [\#1074](https://github.com/FXMisc/RichTextFX/pull/1074)
24+
- Bug: Fixed linehighlighter off on selection [\#1085](https://github.com/FXMisc/RichTextFX/pull/1085)
25+
- Bug: Fixed wordBreaksForward not using locale [\#1089](https://github.com/FXMisc/RichTextFX/pull/1089)
26+
- Bug: Reverted Flowless back to 0.6.4 for Java 8 compatibility
27+
328
## [v0.10.7](https://github.com/FXMisc/RichTextFX/tree/v0.10.7) (2021-10-26)
429
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.6...v0.10.7)
530

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Table of Contents
3131
* [Stable](#stable-release)
3232
* [Snapshot](#snapshot-releases)
3333
* API Documentation (Javadoc)
34-
* [0.10.7](http://fxmisc.github.io/richtext/javadoc/0.10.7/index.html?org/fxmisc/richtext/package-summary.html)
34+
* [0.10.8](http://fxmisc.github.io/richtext/javadoc/0.10.8/index.html?org/fxmisc/richtext/package-summary.html)
3535
* [License](#license)
3636
* [Contributing](./CONTRIBUTING.md)
3737

@@ -150,31 +150,31 @@ Download
150150

151151
### Stable release
152152

153-
Current stable release is 0.10.7 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.
153+
Current stable release is 0.10.8 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.
154154

155155
#### Maven coordinates
156156

157157
| Group ID | Artifact ID | Version |
158158
| :-----------------: | :---------: | :-----: |
159-
| org.fxmisc.richtext | richtextfx | 0.10.7 |
159+
| org.fxmisc.richtext | richtextfx | 0.10.8 |
160160

161161
#### Gradle example
162162

163163
```groovy
164164
dependencies {
165-
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.7'
165+
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.8'
166166
}
167167
```
168168

169169
#### Sbt example
170170

171171
```scala
172-
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.7"
172+
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.8"
173173
```
174174

175175
#### Manual download
176176

177-
Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.7/richtextfx-0.10.7.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.7/richtextfx-fat-0.10.7.jar) and place it on your classpath.
177+
Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.8/richtextfx-0.10.8.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.8/richtextfx-fat-0.10.8.jar) and place it on your classpath.
178178

179179
### Snapshot releases
180180

richtextfx/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ sourceSets {
3535
dependencies {
3636
api group: 'org.reactfx', name: 'reactfx', version: '2.0-M5'
3737
api group: 'org.fxmisc.undo', name: 'undofx', version: '2.1.1'
38-
api group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.8'
38+
api group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.4'
3939
api group: 'org.fxmisc.wellbehaved', name: 'wellbehavedfx', version: '0.3.3'
4040

4141
java9Implementation files(sourceSets.main.output.classesDirs) { builtBy compileJava }

0 commit comments

Comments
 (0)