From a8f3ba5bd4ed3b326aa7cd5b7e82f34fb71ab897 Mon Sep 17 00:00:00 2001 From: hatch01 <42416805+hatch01@users.noreply.github.com> Date: Tue, 30 Aug 2022 11:06:03 +0200 Subject: [PATCH 1/3] update dependencies to remove conflict with other packages (#929) --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 4f939f25..31ee0fce 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -26,7 +26,7 @@ dependencies: characters: ^1.2.0 youtube_player_flutter_quill: ^8.2.2 diff_match_patch: ^0.4.1 - i18n_extension: ^5.0.0 + i18n_extension: ^5.0.1 gallery_saver: ^2.3.2 device_info_plus: ^4.0.0 platform: ^3.1.0 From ba4c25e661368a8508ab6b4368c5ab4ff09b84d6 Mon Sep 17 00:00:00 2001 From: X Code Date: Tue, 30 Aug 2022 02:24:58 -0700 Subject: [PATCH 2/3] Upgrade to 5.4.2 --- CHANGELOG.md | 3 +++ pubspec.yaml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77d6d3aa..9e32fcc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# [5.4.2] +* Upgrade i18n_extension. + # [5.4.1] * Update German Translation. diff --git a/pubspec.yaml b/pubspec.yaml index 31ee0fce..fc05a8af 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: 5.4.1 +version: 5.4.2 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill From 4b46df25e71b34c756a1d25be064050e7904d8eb Mon Sep 17 00:00:00 2001 From: X Code Date: Wed, 31 Aug 2022 14:39:43 -0700 Subject: [PATCH 3/3] BidirectionalIterator' is deprecated and shouldn't be used --- lib/src/widgets/editor.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/src/widgets/editor.dart b/lib/src/widgets/editor.dart index 09d04794..6dd54cd1 100644 --- a/lib/src/widgets/editor.dart +++ b/lib/src/widgets/editor.dart @@ -1607,8 +1607,7 @@ class RenderEditor extends RenderEditableContainerBox } } -class QuillVerticalCaretMovementRun - extends BidirectionalIterator { +class QuillVerticalCaretMovementRun extends Iterator { QuillVerticalCaretMovementRun._( this._editor, this._currentTextPosition, @@ -1629,7 +1628,6 @@ class QuillVerticalCaretMovementRun return true; } - @override bool movePrevious() { _currentTextPosition = _editor.getTextPositionAbove(_currentTextPosition); return true;