From f1b60d83b82453c9f4bd29df10444deb7133beed Mon Sep 17 00:00:00 2001 From: Cheryl Date: Sat, 27 May 2023 17:36:12 -0700 Subject: [PATCH] Upgrade to 7.2.1 --- CHANGELOG.md | 4 ++++ .../raw_editor/raw_editor_state_text_input_client_mixin.dart | 4 ++-- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffbb02ed..639f46e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# [7.2.1] +- Add support for android keyboard content insertion. +- Enhance color picker, enter hex color and color palette option. + # [7.2.0] - Checkboxes, bullet points, and number points are now scaled based on the default paragraph font size. diff --git a/lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart b/lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart index f3cec425..fff4c5ac 100644 --- a/lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart +++ b/lib/src/widgets/raw_editor/raw_editor_state_text_input_client_mixin.dart @@ -60,8 +60,8 @@ mixin RawEditorStateTextInputClientMixin on EditorState keyboardAppearance: widget.keyboardAppearance, textCapitalization: widget.textCapitalization, allowedMimeTypes: widget.contentInsertionConfiguration == null - ? const [] - : widget.contentInsertionConfiguration!.allowedMimeTypes, + ? const [] + : widget.contentInsertionConfiguration!.allowedMimeTypes, ), ); diff --git a/pubspec.yaml b/pubspec.yaml index b6403a01..f105b378 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: A rich text editor supporting mobile and web (Demo App @ bulletjournal.us) -version: 7.2.0 +version: 7.2.1 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill