Skip to content

Commit

Permalink
Version 0.11.3 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugen committed Jun 25, 2024
1 parent d78bab9 commit 57f70b2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [v0.11.3](https://github.com/FXMisc/RichTextFX/tree/v0.11.3) (2024-06-25)
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.11.2...v0.11.3)

**Implemented enhancements:**

- Added getStyleRange method to StyleSpans [\#1232](https://github.com/FXMisc/RichTextFX/pull/1232)
- Add property to area to detect overwrite mode [\#1226](https://github.com/FXMisc/RichTextFX/pull/1226) (Thank you [PavelTurk](https://github.com/PavelTurk))
- Bumped Flowless to 0.7.3

**Fixed bugs:**

- Fixed NoSuchElement / IndexOutOfBounds exceptions when holding Page Up/Down [\#1211](https://github.com/FXMisc/RichTextFX/pull/1211)

## [v0.11.2](https://github.com/FXMisc/RichTextFX/tree/v0.11.2) (2023-10-22)
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.11.1...v0.11.2)

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

Expand Down Expand Up @@ -154,33 +154,33 @@ Download

### Stable release

Current stable release is 0.11.2 which is ONLY compatible with Java 11 and UP.
Current stable release is 0.11.3 which is ONLY compatible with Java 11 and UP.

#### Maven coordinates

| Group ID | Artifact ID | Version |
| :-----------------: | :---------: | :-----: |
| org.fxmisc.richtext | richtextfx | 0.11.2 |
| org.fxmisc.richtext | richtextfx | 0.11.3 |

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.fxmisc.richtext/richtextfx/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.fxmisc.richtext/richtextfx)

#### Gradle example

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

#### Sbt example

```scala
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.11.2"
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.11.3"
```

#### Manual download

Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.2/richtextfx-0.11.2.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.2/richtextfx-fat-0.11.2.jar) and place it on your classpath.
Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.3/richtextfx-0.11.3.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.3/richtextfx-fat-0.11.3.jar) and place it on your classpath.

### Snapshot releases

Expand Down

0 comments on commit 57f70b2

Please sign in to comment.