diff --git a/CHANGELOG.md b/CHANGELOG.md index b2d3b37b..4a20bd70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [1.0.6] +* Add desktop support - WINDOWS, MACOS and LINUX. + ## [1.0.5] * Bug fix: Can not insert newline when Bold is toggled ON. diff --git a/app/pubspec.lock b/app/pubspec.lock index 116d24bf..c5f94fa3 100644 --- a/app/pubspec.lock +++ b/app/pubspec.lock @@ -99,6 +99,13 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "3.0.0" + filesystem_picker: + dependency: transitive + description: + name: filesystem_picker + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.4" flutter: dependency: "direct main" description: flutter @@ -267,7 +274,7 @@ packages: name: photo_view url: "https://pub.dartlang.org" source: hosted - version: "0.10.3" + version: "0.11.1" platform: dependency: transitive description: diff --git a/lib/widgets/raw_editor.dart b/lib/widgets/raw_editor.dart index b091314c..ca1a1d6e 100644 --- a/lib/widgets/raw_editor.dart +++ b/lib/widgets/raw_editor.dart @@ -709,11 +709,11 @@ class RawEditorState extends EditorState _keyboardVisibilityController = KeyboardVisibilityController(); _keyboardVisibilitySubscription = _keyboardVisibilityController.onChange.listen((bool visible) { - _keyboardVisible = visible; - if (visible) { - _onChangeTextEditingValue(); - } - }); + _keyboardVisible = visible; + if (visible) { + _onChangeTextEditingValue(); + } + }); } _focusAttachment = widget.focusNode.attach(context, diff --git a/pubspec.yaml b/pubspec.yaml index 01de66d3..0cf36eb9 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: 1.0.5 +version: 1.0.6 #author: bulletjournal homepage: https://bulletjournal.us/home/index.html repository: https://github.com/singerdmx/flutter-quill.git