diff --git a/CHANGELOG.md b/CHANGELOG.md index 015623fe..91894fac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [v0.11.4](https://github.com/FXMisc/RichTextFX/tree/v0.11.4) (2024-11-29) +[Full Changelog](https://github.com/FXMisc/RichTextFX/compare/v0.11.3...v0.11.4) + +**Implemented enhancements:** + +- Added double underline [\#1256](https://github.com/FXMisc/RichTextFX/pull/1256) + +**Fixed bugs:** + +- Fix minimum paragraph width [\#1242](https://github.com/FXMisc/RichTextFX/pull/1242) +- Calc auto height on first pass using pref height [\#1245](https://github.com/FXMisc/RichTextFX/pull/1245) +- ParagraphText fixed IOOBE [\#1250](https://github.com/FXMisc/RichTextFX/pull/1250) +- Changed KeyCharacterCombination to KeyCodeCombination [\#1255](https://github.com/FXMisc/RichTextFX/pull/1255) + ## [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) diff --git a/README.md b/README.md index 1aa6092d..5308ee12 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Table of Contents * [Stable](#stable-release) * [Snapshot](#snapshot-releases) * API Documentation (Javadoc) - * [0.11.3](http://fxmisc.github.io/richtext/javadoc/0.11.3/index.html?org/fxmisc/richtext/package-summary.html) + * [0.11.4](http://fxmisc.github.io/richtext/javadoc/0.11.4/index.html?org/fxmisc/richtext/package-summary.html) * [License](#license) * [Contributing](./CONTRIBUTING.md) @@ -155,13 +155,13 @@ Download ### Stable release -Current stable release is 0.11.3 which is ONLY compatible with Java 11 and UP. +Current stable release is 0.11.4 which is ONLY compatible with Java 11 and UP. #### Maven coordinates | Group ID | Artifact ID | Version | | :-----------------: | :---------: | :-----: | -| org.fxmisc.richtext | richtextfx | 0.11.3 | +| org.fxmisc.richtext | richtextfx | 0.11.4 | [![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) @@ -169,19 +169,19 @@ Current stable release is 0.11.3 which is ONLY compatible with Java 11 and UP. ```groovy dependencies { - compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.11.3' + compile group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.11.4' } ``` #### Sbt example ```scala -libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.11.3" +libraryDependencies += "org.fxmisc.richtext" % "richtextfx" % "0.11.4" ``` #### Manual download -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. +Download [the JAR file](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.4/richtextfx-0.11.4.jar) or [the fat JAR file (including dependencies)](https://github.com/FXMisc/RichTextFX/releases/download/v0.11.4/richtextfx-fat-0.11.4.jar) and place it on your classpath. ### Snapshot releases