Upgrade version to [1.0.6] Add desktop support - WINDOWS, MACOS and LINUX

pull/88/head
Xin Yao 4 years ago
parent 4d01839360
commit f7d05ba28a
  1. 3
      CHANGELOG.md
  2. 9
      app/pubspec.lock
  3. 10
      lib/widgets/raw_editor.dart
  4. 2
      pubspec.yaml

@ -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.

@ -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:

@ -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,

@ -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

Loading…
Cancel
Save