From a70daa7bf94f1840872dcb8f7f5f32b527860ec5 Mon Sep 17 00:00:00 2001 From: Ellet Date: Tue, 19 Dec 2023 16:53:42 +0300 Subject: [PATCH] Prepare to release 9.0.4 --- CHANGELOG.md | 1 + example/lib/presentation/quill/my_quill_toolbar.dart | 4 ++++ flutter_quill_extensions/CHANGELOG.md | 4 ++++ flutter_quill_extensions/pubspec.yaml | 2 +- flutter_quill_test/CHANGELOG.md | 4 ++++ flutter_quill_test/pubspec.yaml | 2 +- pubspec.yaml | 2 +- quill_html_converter/CHANGELOG.md | 4 ++++ quill_html_converter/pubspec.yaml | 2 +- version.dart | 2 +- 10 files changed, 22 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a837911b..2c013026 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. ## 9.0.4 * Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611) +* Export missing widgets ## 9.0.3 * Flutter Quill Extensions: diff --git a/example/lib/presentation/quill/my_quill_toolbar.dart b/example/lib/presentation/quill/my_quill_toolbar.dart index 4a07cee0..8efaa206 100644 --- a/example/lib/presentation/quill/my_quill_toolbar.dart +++ b/example/lib/presentation/quill/my_quill_toolbar.dart @@ -205,6 +205,10 @@ class MyQuillToolbar extends StatelessWidget { base: QuillToolbarBaseButtonOptions( // Request editor focus when any button is pressed afterButtonPressed: focusNode.requestFocus, + iconTheme: const QuillIconTheme( + iconSelectedFillColor: Colors.red, + iconUnselectedFillColor: Colors.yellow, + ), // globalIconSize: 18, ), selectHeaderStyleDropdownButton: diff --git a/flutter_quill_extensions/CHANGELOG.md b/flutter_quill_extensions/CHANGELOG.md index aaf21ad1..2c013026 100644 --- a/flutter_quill_extensions/CHANGELOG.md +++ b/flutter_quill_extensions/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 9.0.4 +* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611) +* Export missing widgets + ## 9.0.3 * Flutter Quill Extensions: * Fix file image support for web image emebed builder diff --git a/flutter_quill_extensions/pubspec.yaml b/flutter_quill_extensions/pubspec.yaml index 619b5c15..eb68dbb0 100644 --- a/flutter_quill_extensions/pubspec.yaml +++ b/flutter_quill_extensions/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill_extensions description: Embed extensions for flutter_quill including image, video, formula and etc. -version: 9.0.3 +version: 9.0.4 homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/ repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ diff --git a/flutter_quill_test/CHANGELOG.md b/flutter_quill_test/CHANGELOG.md index aaf21ad1..2c013026 100644 --- a/flutter_quill_test/CHANGELOG.md +++ b/flutter_quill_test/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 9.0.4 +* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611) +* Export missing widgets + ## 9.0.3 * Flutter Quill Extensions: * Fix file image support for web image emebed builder diff --git a/flutter_quill_test/pubspec.yaml b/flutter_quill_test/pubspec.yaml index 7a4d44b1..fe64d2b6 100644 --- a/flutter_quill_test/pubspec.yaml +++ b/flutter_quill_test/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill_test description: Test utilities for flutter_quill which includes methods to simplify interacting with the editor in test cases. -version: 9.0.3 +version: 9.0.4 homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/ repository: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ diff --git a/pubspec.yaml b/pubspec.yaml index 212afdad..821d8293 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor built for the modern Android, iOS, web and desktop platforms. It is the WYSIWYG editor and a Quill component for Flutter. -version: 9.0.3 +version: 9.0.4 homepage: https://1o24bbs.com/c/bulletjournal/108/ repository: https://github.com/singerdmx/flutter-quill/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ diff --git a/quill_html_converter/CHANGELOG.md b/quill_html_converter/CHANGELOG.md index aaf21ad1..2c013026 100644 --- a/quill_html_converter/CHANGELOG.md +++ b/quill_html_converter/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 9.0.4 +* Feature: [#1611](https://github.com/singerdmx/flutter-quill/issues/1611) +* Export missing widgets + ## 9.0.3 * Flutter Quill Extensions: * Fix file image support for web image emebed builder diff --git a/quill_html_converter/pubspec.yaml b/quill_html_converter/pubspec.yaml index 0be7ee97..9221a2d1 100644 --- a/quill_html_converter/pubspec.yaml +++ b/quill_html_converter/pubspec.yaml @@ -1,6 +1,6 @@ name: quill_html_converter description: A extension for flutter_quill package to add support for dealing with conversion to/from html -version: 9.0.3 +version: 9.0.4 homepage: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/ repository: https://github.com/singerdmx/flutter-quill/tree/master/quill_html_converter/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ diff --git a/version.dart b/version.dart index 988f8680..c5301916 100644 --- a/version.dart +++ b/version.dart @@ -1 +1 @@ -const version = '9.0.3'; +const version = '9.0.4';