diff --git a/packages/fleather/CHANGELOG.md b/packages/fleather/CHANGELOG.md index ea27384f..9cfec52e 100644 --- a/packages/fleather/CHANGELOG.md +++ b/packages/fleather/CHANGELOG.md @@ -1,3 +1,13 @@ +## 1.12.0 + +* Introduce AutoFormats to handle automatic text formatting and make Heuristics only responsible for validity of document +* Show context menu on desktop +* Add unset background and text color option +* Handle more text editing intents (See #180 for the list) +* [Fix] toolbar button design +* [Fix] preserve line style on new line +* [Fix] example app build for Android + ## 1.11.0 * Support for Flutter 3.16 diff --git a/packages/fleather/README.md b/packages/fleather/README.md index 6d28da2c..426debc4 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.11.0 + fleather: ^1.12.0 ``` ## Usage diff --git a/packages/fleather/pubspec.yaml b/packages/fleather/pubspec.yaml index e2efc5d6..91d05589 100644 --- a/packages/fleather/pubspec.yaml +++ b/packages/fleather/pubspec.yaml @@ -1,7 +1,16 @@ name: fleather description: Clean, minimalistic and collaboration-ready rich text editor for Flutter. -version: 1.11.0 -homepage: https://github.com/fleather-editor/fleather +version: 1.12.0 +homepage: https://fleather-editor.github.io +repository: https://github.com/fleather-editor/fleather +issue_tracker: https://github.com/fleather-editor/fleather/issues +screenshots: + - description: 'Banner' + path: ../../images/banner.png +topics: + - editor + - text + - widgets publish_to: none environment: diff --git a/packages/parchment/CHANGELOG.md b/packages/parchment/CHANGELOG.md index c0f54495..3ce36465 100644 --- a/packages/parchment/CHANGELOG.md +++ b/packages/parchment/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.12.0 +* Introduce AutoFormats to handle automatic text formatting and make Heuristics only responsible for validity of document +* [Fix] preserve line style on new line + ## 1.11.0 * Add support for strike-through in Markdown codec diff --git a/packages/parchment/pubspec.yaml b/packages/parchment/pubspec.yaml index b3bb1860..5acf16e9 100644 --- a/packages/parchment/pubspec.yaml +++ b/packages/parchment/pubspec.yaml @@ -1,7 +1,9 @@ name: parchment description: Platform-agnostic rich text document model based on Delta format and used in Fleather editor. -version: 1.11.0 -homepage: https://github.com/fleather-editor/fleather +version: 1.12.0 +homepage: https://fleather-editor.github.io +repository: https://github.com/fleather-editor/fleather +issue_tracker: https://github.com/fleather-editor/fleather/issues environment: sdk: ">=3.0.0 <4.0.0"