Skip to content

Commit

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

## [v0.10.9](https://github.com/FXMisc/RichTextFX/tree/v0.10.9) (2022-03-01)
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.7...v0.10.9)

**Implemented enhancements:**

- Bumped Flowless to 0.6.9
- Compiled with Java 9

**Fixed bugs:**

- Both of the following were fixed in Flowless:
- Bug: Fixed thin horizontal lines appear between lines of text when rapidly scrolling vertically [\#105](https://github.com/FXMisc/Flowless/pull/105)
- Bug: Fixed horizontal scrolling of an area can result in large empty blocks in the upper right [\#106](https://github.com/FXMisc/Flowless/pull/106)

## [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)

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,38 +143,38 @@ This renders the text in the range `(from, to)` in red.
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.
**JDK9** or higher is required.

Download
--------

### Stable release

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.
Current stable release is 0.10.9 which is ONLY 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.8 |
| org.fxmisc.richtext | richtextfx | 0.10.9 |

#### Gradle example

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

#### Sbt example

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

#### Manual download

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.
Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.9/richtextfx-0.10.9.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.10.9/richtextfx-fat-0.10.9.jar) and place it on your classpath.

### Snapshot releases

Expand Down
6 changes: 3 additions & 3 deletions 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.4'
api group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.9'
api group: 'org.fxmisc.wellbehaved', name: 'wellbehavedfx', version: '0.3.3'

java9Implementation files(sourceSets.main.output.classesDirs) { builtBy compileJava }
Expand All @@ -53,8 +53,8 @@ dependencies {

compileJava {
if ( JavaVersion.current() == JavaVersion.VERSION_1_9 ) {
sourceCompatibility = 8
targetCompatibility = 8
sourceCompatibility = 9
targetCompatibility = 9
}
options.deprecation = true
}
Expand Down

0 comments on commit 5ac2039

Please sign in to comment.