Releases: singerdmx/flutter-quill
Releases · singerdmx/flutter-quill
v11.0.0-dev.21
Added
enableClipboardPaste
flag inQuillToolbarClipboardButton
to determine if the button defaults tonull,
which will useClipboardMonitor
, which checks every second if the clipboard has content to paste #2427.
v11.0.0-dev.20
Changed
- BREAKING: Change the
options
parameter class type fromQuillToolbarToggleStyleButtonOptions
toQuillToolbarClipboardButtonOptions
inQuillToolbarClipboardButton
. To migrate, useQuillToolbarClipboardButtonOptions
instead ofQuillToolbarToggleStyleButtonOptions
#2433. This change was made for the PR #2427. - BREAKING: Change the
onTapDown
to acceptTapDownDetails
instead ofTapDragDownDetails
(revert #2128 due to regressions). - BREAKING: Change the
onTapUp
to acceptTapUpDetails
instead ofTapDragUpDetails
(revert #2128 due to regressions). - BREAKING: Revert
Copy TapAndPanGestureRecognizer from TextField
PR #2128, restoring editor behavior to match versions before10.4.0
due to the regressions #2413.
Removed
v11.0.0-dev.19
Added
- Croatian (hr) language translation.
v11.0.0-dev.18
Changed
- BREAKING: Clipboard action buttons in
QuillSimpleToolbar
are now disabled by default. To enable them, setshowClipboardCut
,showClipboardCopy
, andshowClipboardPaste
totrue
inQuillSimpleToolbarConfig
.
v11.0.0-dev.17
Fixed
- The color picker dialog's hex field does not use the correct value of the selected text in the editor #2415.
v11.0.0-dev.16
Changed
- Address warnings of
unreachable_switch_default
(introduced in Dart 3.6).
v11.0.0-dev.15
Added
- New localization strings for the image save functionality #2403.
Changed
- Rewrite the image save functionality for
flutter_quill_extensions
#2403. - Migrate quill_native_bridge to
11.0.0
#2403. - Avoid using deprecated APIs in Flutter 3.27.0:
- Migrate from
withOpacity
towithValues
according to Color wide gamut - Opacity migration. - Avoid using the deprecated
Color.value
getter.
- Migrate from
- Ignore
unreachable_switch_default
warning (introduced in Dart 3.6). - Update
intl
dependency to support versions0.19.0
and0.20.0
.
Fixed
- Avoid using
url_launcher_string.dart
which is strongly discouraged #2403.
v11.0.0-dev.14
Changed
- Improve pub topics in package metadata.
- Update the minimum required version of the dependency quill_native_bridge from
10.7.9
to10.7.11
.
v11.0.0-dev.13
v11.0.0-dev.12
Changed
- Mark
shouldNotifyListeners
as experimental inQuillController.replaceText()
. - Mark the method
QuillController.clipboardSelection()
as experimental.