Skip to content

Commit

Permalink
Version 0.10.8 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugen committed Feb 28, 2022
1 parent 9a490fc commit 68af3f5
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 7 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Change Log

## [v0.10.8](https://github.com/FXMisc/RichTextFX/tree/v0.10.8) (2022-02-28)
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.7...v0.10.8)

**Implemented enhancements:**

- Added overwrite mode [\#1051](https://github.com/FXMisc/RichTextFX/pull/1051)
- Added showParagraphAtCenter [\#1054](https://github.com/FXMisc/RichTextFX/pull/1054)
- Add hasChanges to MultiChangeBuilder [\#1084](https://github.com/FXMisc/RichTextFX/pull/1084)
- Added nextLine & prevLine, behaves like nextPage & prevPage [\#1086](https://github.com/FXMisc/RichTextFX/pull/1086)
- Changed code area navigation to behave more like a code editor [\#1090](https://github.com/FXMisc/RichTextFX/pull/1090)

**Fixed bugs:**

- Bug: Fixed getCaretBounds exception [\#1049](https://github.com/FXMisc/RichTextFX/pull/1049)
- Bug: Fixed follow caret with selection update [\#1059](https://github.com/FXMisc/RichTextFX/pull/1059)
- Bug: Fixed line selection off not updating [\#1066](https://github.com/FXMisc/RichTextFX/pull/1066)
- Bug: Fixed selection shape [\#1067](https://github.com/FXMisc/RichTextFX/pull/1067)
- Bug: Fixed InputMethodRequest getTextLocation fix [\#1075](https://github.com/FXMisc/RichTextFX/pull/1075)
- Bug: Fixed getCharacterBoundsOnScreen when from == to [\#1076](https://github.com/FXMisc/RichTextFX/pull/1076)
- Bug: Fixed ParagraphBox not respecting the graphic node's managed property [\#1079](https://github.com/FXMisc/RichTextFX/pull/1079)
- 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)
- Bug: Fixed linehighlighter off on selection [\#1085](https://github.com/FXMisc/RichTextFX/pull/1085)
- Bug: Fixed wordBreaksForward not using locale [\#1089](https://github.com/FXMisc/RichTextFX/pull/1089)
- Bug: Reverted Flowless back to 0.6.4 for Java 8 compatibility

## [v0.10.7](https://github.com/FXMisc/RichTextFX/tree/v0.10.7) (2021-10-26)
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.6...v0.10.7)

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Table of Contents
* [Stable](#stable-release)
* [Snapshot](#snapshot-releases)
* API Documentation (Javadoc)
* [0.10.7](http://fxmisc.github.io/richtext/javadoc/0.10.7/index.html?org/fxmisc/richtext/package-summary.html)
* [0.10.8](http://fxmisc.github.io/richtext/javadoc/0.10.8/index.html?org/fxmisc/richtext/package-summary.html)
* [License](#license)
* [Contributing](./CONTRIBUTING.md)

Expand Down Expand Up @@ -150,31 +150,31 @@ Download

### Stable release

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

#### Maven coordinates

| Group ID | Artifact ID | Version |
| :-----------------: | :---------: | :-----: |
| org.fxmisc.richtext | richtextfx | 0.10.7 |
| org.fxmisc.richtext | richtextfx | 0.10.8 |

#### Gradle example

```groovy
dependencies {
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.7'
compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.8'
}
```

#### Sbt example

```scala
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.7"
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.8"
```

#### Manual download

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

### Snapshot releases

Expand Down
2 changes: 1 addition & 1 deletion richtextfx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ sourceSets {
dependencies {
api group: 'org.reactfx', name: 'reactfx', version: '2.0-M5'
api group: 'org.fxmisc.undo', name: 'undofx', version: '2.1.1'
api group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.8'
api group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.4'
api group: 'org.fxmisc.wellbehaved', name: 'wellbehavedfx', version: '0.3.3'

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

0 comments on commit 68af3f5

Please sign in to comment.