Skip to content

Commit

Permalink
Version 0.10.4 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurgen committed Feb 19, 2020
1 parent beeb5ea commit 9a410d3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

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

**Implemented enhancements:**

- Added convenience method to UndoUtils to create a NO OP undo manager [\#881](/~https://github.com/FXMisc/RichTextFX/issues/881)
- Added styled text fields [\#894](/~https://github.com/FXMisc/RichTextFX/pull/894), [\#895](/~https://github.com/FXMisc/RichTextFX/pull/895), [\#896](/~https://github.com/FXMisc/RichTextFX/pull/896) & [\#897](/~https://github.com/FXMisc/RichTextFX/pull/897)
- Added place holder to GenericStyledArea [\#899](/~https://github.com/FXMisc/RichTextFX/pull/899) [\#900](/~https://github.com/FXMisc/RichTextFX/pull/900)
- Added prompt text to StyledTextField [\#899](/~https://github.com/FXMisc/RichTextFX/pull/899)
- Added Automatic-Module-Name
- Bumped to Flowless 0.6.1

**Fixed bugs:**

- Bug: Fixed paragraph graphic creation if index is -1 [\#882](/~https://github.com/FXMisc/RichTextFX/pull/882)
- Bug: Fixed Java 9 code [\#887](/~https://github.com/FXMisc/RichTextFX/pull/887/files) and [\#888](/~https://github.com/FXMisc/RichTextFX/pull/888)
- Bug: Fixed memory leak in ParagraphText [\#893](/~https://github.com/FXMisc/RichTextFX/pull/893)

## [v0.10.3](/~https://github.com/FXMisc/RichTextFX/tree/v0.10.3) (2019-11-27)
[Full Changelog](/~https://github.com/FXMisc/RichTextFX/compare/v0.10.2...v0.10.3)

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.3](http://fxmisc.github.io/richtext/javadoc/0.10.3/index.html?org/fxmisc/richtext/package-summary.html)
* [0.10.4](http://fxmisc.github.io/richtext/javadoc/0.10.4/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.3 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.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.

#### Maven coordinates

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

#### Gradle example

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

#### Sbt example

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

#### Manual download

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

### Snapshot releases

Expand Down

0 comments on commit 9a410d3

Please sign in to comment.