diff --git a/CHANGELOG.md b/CHANGELOG.md index 036076988..c276a9ffc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index fdf576d85..f41b2007f 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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