Prepare 9.0.0-dev-4

pull/1566/head v9.0.0-dev-4
Ellet 1 year ago
parent 25435c9bcc
commit 0c4c6cd775
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 4
      flutter_quill_extensions/CHANGELOG.md
  2. 2
      flutter_quill_extensions/pubspec.yaml
  3. 4
      flutter_quill_test/CHANGELOG.md
  4. 2
      flutter_quill_test/pubspec.yaml
  5. 1
      lib/src/widgets/toolbar/buttons/select_alignment_buttons.dart
  6. 4
      packages/quill_html_converter/CHANGELOG.md
  7. 2
      packages/quill_html_converter/pubspec.yaml
  8. 2
      pubspec.yaml
  9. 2
      version.dart

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. 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 ## 9.0.0-dev-3
* Breaking Changes: * Breaking Changes:
* Rename `QuillToolbar` to `QuillSimpleToolbar` * Rename `QuillToolbar` to `QuillSimpleToolbar`

@ -1,6 +1,6 @@
name: flutter_quill_extensions name: flutter_quill_extensions
description: Embed extensions for flutter_quill including image, video, formula and etc. 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/ homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_extensions/
repository: 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/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. 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 ## 9.0.0-dev-3
* Breaking Changes: * Breaking Changes:
* Rename `QuillToolbar` to `QuillSimpleToolbar` * Rename `QuillToolbar` to `QuillSimpleToolbar`

@ -1,6 +1,6 @@
name: flutter_quill_test name: flutter_quill_test
description: Test utilities for flutter_quill which includes methods to simplify interacting with the editor in test cases. 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/ homepage: https://github.com/singerdmx/flutter-quill/tree/master/flutter_quill_test/
repository: 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/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -1,7 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import '../../../models/config/toolbar/buttons/select_alignment_configurations.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 '../../../models/documents/attribute.dart';
import '../../others/controller.dart'; import '../../others/controller.dart';
import 'toggle_style_button.dart'; import 'toggle_style_button.dart';

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. 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 ## 9.0.0-dev-3
* Breaking Changes: * Breaking Changes:
* Rename `QuillToolbar` to `QuillSimpleToolbar` * Rename `QuillToolbar` to `QuillSimpleToolbar`

@ -1,6 +1,6 @@
name: quill_html_converter name: quill_html_converter
description: A extension for flutter_quill package to add support for dealing with conversion to/from html 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/ 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/ repository: https://github.com/singerdmx/flutter-quill/tree/master/packages/quill_html_converter/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -1,6 +1,6 @@
name: flutter_quill 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. 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/ homepage: https://1o24bbs.com/c/bulletjournal/108/
repository: https://github.com/singerdmx/flutter-quill/ repository: https://github.com/singerdmx/flutter-quill/
issue_tracker: https://github.com/singerdmx/flutter-quill/issues/ issue_tracker: https://github.com/singerdmx/flutter-quill/issues/

@ -1 +1 @@
const version = '9.0.0-dev-3'; const version = '9.0.0-dev-4';

Loading…
Cancel
Save