From 0c4c6cd77563de8521b4b44bd49278c7360d43da Mon Sep 17 00:00:00 2001 From: Ellet Date: Wed, 6 Dec 2023 09:36:35 +0300 Subject: [PATCH] Prepare 9.0.0-dev-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 +- lib/src/widgets/toolbar/buttons/select_alignment_buttons.dart | 1 - packages/quill_html_converter/CHANGELOG.md | 4 ++++ packages/quill_html_converter/pubspec.yaml | 2 +- pubspec.yaml | 2 +- version.dart | 2 +- 9 files changed, 17 insertions(+), 6 deletions(-) diff --git a/flutter_quill_extensions/CHANGELOG.md b/flutter_quill_extensions/CHANGELOG.md index 7132f0725..849261e54 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.0-dev-4 +* The options parameter in all of the buttons is no longer required which can be useful to create custom toolbar with minimal efforts +* Toolbar buttons fixes in both `flutter_quill` and `flutter_quill_extensions` + ## 9.0.0-dev-3 * Breaking Changes: * Rename `QuillToolbar` to `QuillSimpleToolbar` diff --git a/flutter_quill_extensions/pubspec.yaml b/flutter_quill_extensions/pubspec.yaml index 4caf7e9bf..aa8f82773 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.0-dev-3 +version: 9.0.0-dev-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 7132f0725..849261e54 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.0-dev-4 +* The options parameter in all of the buttons is no longer required which can be useful to create custom toolbar with minimal efforts +* Toolbar buttons fixes in both `flutter_quill` and `flutter_quill_extensions` + ## 9.0.0-dev-3 * Breaking Changes: * Rename `QuillToolbar` to `QuillSimpleToolbar` diff --git a/flutter_quill_test/pubspec.yaml b/flutter_quill_test/pubspec.yaml index 477d4dcd9..e0b37648a 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.0-dev-3 +version: 9.0.0-dev-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/lib/src/widgets/toolbar/buttons/select_alignment_buttons.dart b/lib/src/widgets/toolbar/buttons/select_alignment_buttons.dart index c76224b0f..af5c383a5 100644 --- a/lib/src/widgets/toolbar/buttons/select_alignment_buttons.dart +++ b/lib/src/widgets/toolbar/buttons/select_alignment_buttons.dart @@ -1,7 +1,6 @@ import 'package:flutter/material.dart'; import '../../../models/config/toolbar/buttons/select_alignment_configurations.dart'; -import '../../../models/config/toolbar/buttons/toggle_style_configurations.dart'; import '../../../models/documents/attribute.dart'; import '../../others/controller.dart'; import 'toggle_style_button.dart'; diff --git a/packages/quill_html_converter/CHANGELOG.md b/packages/quill_html_converter/CHANGELOG.md index 7132f0725..849261e54 100644 --- a/packages/quill_html_converter/CHANGELOG.md +++ b/packages/quill_html_converter/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 9.0.0-dev-4 +* The options parameter in all of the buttons is no longer required which can be useful to create custom toolbar with minimal efforts +* Toolbar buttons fixes in both `flutter_quill` and `flutter_quill_extensions` + ## 9.0.0-dev-3 * Breaking Changes: * Rename `QuillToolbar` to `QuillSimpleToolbar` diff --git a/packages/quill_html_converter/pubspec.yaml b/packages/quill_html_converter/pubspec.yaml index 995ceaddd..0ce0ffe1b 100644 --- a/packages/quill_html_converter/pubspec.yaml +++ b/packages/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.0-dev-3 +version: 9.0.0-dev-4 homepage: https://github.com/singerdmx/flutter-quill/tree/master/packages/quill_html_converter/ repository: https://github.com/singerdmx/flutter-quill/tree/master/packages/quill_html_converter/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ diff --git a/pubspec.yaml b/pubspec.yaml index b528c9e6a..0fff6388f 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.0-dev-3 +version: 9.0.0-dev-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/version.dart b/version.dart index a2833398e..3fd9df73d 100644 --- a/version.dart +++ b/version.dart @@ -1 +1 @@ -const version = '9.0.0-dev-3'; +const version = '9.0.0-dev-4';