Skip to content

Commit

Permalink
Version 0.10.3 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurgen committed Nov 27, 2019
1 parent 50ec050 commit 19b6302
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Change Log

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

**Implemented enhancements:**

- Added shift backspace to delete backward [\#855](https://github.com/FXMisc/RichTextFX/issues/855)
- Added methods to recreate or get a paragraph graphic [\#854](https://github.com/FXMisc/RichTextFX/issues/854)
- Added methods to preset the style of inserted text and paragraphs [\#864](https://github.com/FXMisc/RichTextFX/issues/864)
- Added convenience API to EditActions and StyleClassedTextArea [\#868](https://github.com/FXMisc/RichTextFX/issues/868)
- Added Bullet Lists to RichTextDemo [\#826](https://github.com/FXMisc/RichTextFX/issues/826)

**Fixed bugs:**

- Bug: Fixed line highlighter not adjusting to area's width changes [\#845](https://github.com/FXMisc/RichTextFX/pull/845#issuecomment-540535109)
- Bug: Fixed not highlighting from beginning of line after adding text when empty [\#845](https://github.com/FXMisc/RichTextFX/pull/845#issuecomment-552252829)
- Bug: Fixed line spacing not being applied between paragraphs [\#862](https://github.com/FXMisc/RichTextFX/issues/862)
- Bug: Fixed anchor properties not updating correctly with listeners [\#874](https://github.com/FXMisc/RichTextFX/issues/874)

**Other:**

- Balanced linespacing above and below text for better highlighting look [\#872](https://github.com/FXMisc/RichTextFX/issues/872)
- Changed styled-text-area CSS [\#738](https://github.com/FXMisc/RichTextFX/issues/738#issuecomment-555592054)

## [v0.10.2](https://github.com/FXMisc/RichTextFX/tree/v0.10.2) (2019-08-29)
[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.10.1...v0.10.2)

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

#### Maven coordinates

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

#### Gradle example

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

#### Sbt example

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

#### Manual download

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

### Snapshot releases

Expand Down

0 comments on commit 19b6302

Please sign in to comment.