Skip to content

Commit

Permalink
Version 0.10.5 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurgen committed Apr 17, 2020
1 parent 7552c74 commit d70a0f4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

## [v0.10.5](https://github.com/FXMisc/RichTextFX/tree/v0.10.5) (2020-04-19)
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.4...v0.10.5)

**Implemented enhancements:**

- Upgraded Gradle Maven plugin [\#910](https://github.com/FXMisc/RichTextFX/pull/910)
- Provide suspendable undo manager and test [\#914](https://github.com/FXMisc/RichTextFX/pull/914)
- Added getLocale and setLocale for BreakIterator use [\#920](https://github.com/FXMisc/RichTextFX/pull/920)
- Allow ALT and ALT + CONTROL (or ALTGR on Windows) accelerators [\#922](https://github.com/FXMisc/RichTextFX/pull/922)

**Fixed bugs:**

- Bug: Fixed SelectionImpl not honouring constructor range [\#907](https://github.com/FXMisc/RichTextFX/pull/907)
- Bug: Fixed RichTextChange reported by ReadOnlyStyledDocument replace [\#908](https://github.com/FXMisc/RichTextFX/pull/908)
- Bug: Fixed post undo/redo caret position [\#915](https://github.com/FXMisc/RichTextFX/pull/915)
- Bug: Fixed tests not on FX thread [\#917](https://github.com/FXMisc/RichTextFX/pull/917)
- 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)
- Bug: Fixed focus lost on right click [\#921](https://github.com/FXMisc/RichTextFX/pull/921) (Thank you [gaeqs](https://github.com/gaeqs))

## [v0.10.4](https://github.com/FXMisc/RichTextFX/tree/v0.10.4) (2020-02-19)
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.3...v0.10.4)

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ It does not follow the MVC paradigm as this prevented access to view-specific AP

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.

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

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

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

### Stable release

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

#### Maven coordinates

| Group ID | Artifact ID | Version |
| :-----------------: | :---------: | :-----: |
| org.fxmisc.richtext | richtextfx | 0.10.4 |
| org.fxmisc.richtext | richtextfx | 0.10.5 |

#### Gradle example

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

#### Sbt example

```scala
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.4"
libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.10.5"
```

#### Manual download

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

### Snapshot releases

Expand Down

0 comments on commit d70a0f4

Please sign in to comment.