diff --git a/packages/fleather/CHANGELOG.md b/packages/fleather/CHANGELOG.md index 62ebe11b..073e1d3a 100644 --- a/packages/fleather/CHANGELOG.md +++ b/packages/fleather/CHANGELOG.md @@ -1,3 +1,13 @@ +## 1.18.0 + +* Add the ability to use custom `TextSelectionControls` +* Add foundations for localization +* Add translations for French +* Add clear method on controller +* Improve performance by using repaint boundary +* Fix hit test issue when scrolled +* Fix copy issue when selection is inverted + ## 1.17.0 * Fleather manages the viewport diff --git a/packages/fleather/README.md b/packages/fleather/README.md index 07f3b104..a5ea0444 100644 --- a/packages/fleather/README.md +++ b/packages/fleather/README.md @@ -28,7 +28,7 @@ Add Fleather to your dependencies. dependencies: flutter: sdk: flutter - fleather: ^1.17.0 + fleather: ^1.18.0 ``` ## Usage diff --git a/packages/fleather/pubspec.yaml b/packages/fleather/pubspec.yaml index 65d8e3d8..aa3b6455 100644 --- a/packages/fleather/pubspec.yaml +++ b/packages/fleather/pubspec.yaml @@ -1,6 +1,6 @@ name: fleather description: Clean, minimalistic and collaboration-ready rich text editor for Flutter. -version: 1.17.0 +version: 1.18.0 homepage: https://fleather-editor.github.io repository: https://github.com/fleather-editor/fleather issue_tracker: https://github.com/fleather-editor/fleather/issues diff --git a/packages/parchment/CHANGELOG.md b/packages/parchment/CHANGELOG.md index e16dd253..d2b6471b 100644 --- a/packages/parchment/CHANGELOG.md +++ b/packages/parchment/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.18.0 + +* Expose `parchment_delta` by Parchment + ## 1.15.0 * Add support for decoding indentation,
, and in HTML codec diff --git a/packages/parchment/pubspec.yaml b/packages/parchment/pubspec.yaml index d782cb23..3b94c377 100644 --- a/packages/parchment/pubspec.yaml +++ b/packages/parchment/pubspec.yaml @@ -1,6 +1,6 @@ name: parchment description: Platform-agnostic rich text document model based on Delta format and used in Fleather editor. -version: 1.15.0 +version: 1.18.0 homepage: https://fleather-editor.github.io repository: https://github.com/fleather-editor/fleather issue_tracker: https://github.com/fleather-editor/fleather/issues