Update CHANGELOG.md

pull/1566/head
Ellet 1 year ago
parent 748c58c4a6
commit 1174f1ed71
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 6
      CHANGELOG.md
  2. 1
      example/lib/presentation/quill/quill_screen.dart

@ -2,10 +2,12 @@
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-7 ## 9.0.0-dev-8
* Fix a bug in chaning the background/font color of ol/ul list
* Better support for pasting HTML contents from external websites to the editor * Better support for pasting HTML contents from external websites to the editor
* The experimental support of converting the HTML from `quill_html_converter` is now built-in in the `flutter_quill` and removed from there (Breaking change for `quill_html_converter`) * The experimental support of converting the HTML from `quill_html_converter` is now built-in in the `flutter_quill` and removed from there (Breaking change for `quill_html_converter`)
## 9.0.0-dev-7
* Fix a bug in chaning the background/font color of ol/ul list
* Flutter Quill Extensions: * Flutter Quill Extensions:
* Fix link bug in the video url * Fix link bug in the video url
* Fix patterns * Fix patterns

@ -126,6 +126,7 @@ class _QuillScreenState extends State<QuillScreen> {
sharedConfigurations: _sharedConfigurations, sharedConfigurations: _sharedConfigurations,
controller: _controller, controller: _controller,
readOnly: _isReadOnly, readOnly: _isReadOnly,
customStyles: const DefaultStyles(),
elementOptions: const QuillEditorElementOptions( elementOptions: const QuillEditorElementOptions(
codeBlock: QuillEditorCodeBlockElementOptions( codeBlock: QuillEditorCodeBlockElementOptions(
enableLineNumbers: true, enableLineNumbers: true,

Loading…
Cancel
Save