From a31b80235eb75ef65f6229c1d8c10f9b185e3a42 Mon Sep 17 00:00:00 2001 From: singerdmx Date: Mon, 18 Jan 2021 17:17:03 -0800 Subject: [PATCH] Upgrade version --- CHANGELOG.md | 5 ++++- app/pubspec.lock | 2 +- lib/widgets/editor.dart | 4 ++-- pubspec.yaml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9fe701e..6b1fe479 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,4 +51,7 @@ * Support checked/unchecked list. ## [0.1.8] -* Support font and size attributes. \ No newline at end of file +* Support font and size attributes. + +## [0.2.0] +* Add checked/unchecked list button in toolbar. \ No newline at end of file diff --git a/app/pubspec.lock b/app/pubspec.lock index f380fd48..8b5dd4de 100644 --- a/app/pubspec.lock +++ b/app/pubspec.lock @@ -82,7 +82,7 @@ packages: path: ".." relative: true source: path - version: "0.0.1" + version: "0.2.0" flutter_test: dependency: "direct dev" description: flutter diff --git a/lib/widgets/editor.dart b/lib/widgets/editor.dart index 845829a6..b585d3b3 100644 --- a/lib/widgets/editor.dart +++ b/lib/widgets/editor.dart @@ -410,9 +410,9 @@ class _QuillEditorSelectionGestureDetectorBuilder onSingleTapUp(TapUpDetails details) { getEditor().hideToolbar(); - bool tapping = _onTapping(details); + bool positionSelected = _onTapping(details); - if (delegate.getSelectionEnabled() && !tapping) { + if (delegate.getSelectionEnabled() && !positionSelected) { switch (Theme.of(_state.context).platform) { case TargetPlatform.iOS: case TargetPlatform.macOS: diff --git a/pubspec.yaml b/pubspec.yaml index 5076e551..d2b42137 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill description: One client and affiliated collaborator of Flutter Quill is Bullet Journal App. -version: 0.1.8 +version: 0.2.0 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill.git