Browse Source

Merged in changes from beta channel

Anatoly Pulyaevskiy 6 years ago
parent
commit
490d47e17f

+ 8
- 0
packages/zefyr/CHANGELOG.md View File

11
 * Breaking change: removed `ZefyrEditor.of` and `ZefyrEditableText.of` static methods.
11
 * Breaking change: removed `ZefyrEditor.of` and `ZefyrEditableText.of` static methods.
12
   Use `ZefyrScope.of` instead.
12
   Use `ZefyrScope.of` instead.
13
 
13
 
14
+## 0.4.0
15
+
16
+* Breaking change: upgraded `image_picker` to `^0.5.0` and `url_launcher` to `^5.0.0` which
17
+  requires migration to Android X. You must migrate your app in order to use this version.
18
+  For details on how to migrate see:
19
+  - https://flutter.io/docs/development/packages-and-plugins/androidx-compatibility
20
+  - https://developer.android.com/jetpack/androidx/migrate
21
+
14
 ## 0.3.1
22
 ## 0.3.1
15
 
23
 
16
 - Fixed autofocus not being triggered when set to `true` for the first time.
24
 - Fixed autofocus not being triggered when set to `true` for the first time.

+ 1
- 1
packages/zefyr/example/android/app/build.gradle View File

25
 apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
25
 apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
26
 
26
 
27
 android {
27
 android {
28
-    compileSdkVersion 27
28
+    compileSdkVersion 28
29
 
29
 
30
     lintOptions {
30
     lintOptions {
31
         disable 'InvalidPackage'
31
         disable 'InvalidPackage'

+ 3
- 3
packages/zefyr/pubspec.yaml View File

1
 name: zefyr
1
 name: zefyr
2
 description: Clean, minimalistic and collaboration-ready rich text editor for Flutter.
2
 description: Clean, minimalistic and collaboration-ready rich text editor for Flutter.
3
-version: 0.3.1
3
+version: 0.4.0
4
 author: Anatoly Pulyaevskiy <anatoly.pulyaevskiy@gmail.com>
4
 author: Anatoly Pulyaevskiy <anatoly.pulyaevskiy@gmail.com>
5
 homepage: https://github.com/memspace/zefyr
5
 homepage: https://github.com/memspace/zefyr
6
 
6
 
11
   flutter:
11
   flutter:
12
     sdk: flutter
12
     sdk: flutter
13
   collection: ^1.14.6
13
   collection: ^1.14.6
14
-  url_launcher: ^4.0.0
15
-  image_picker: ^0.4.5
14
+  url_launcher: ^5.0.0
15
+  image_picker: ^0.5.0
16
   quill_delta: ^1.0.0-dev.1.0
16
   quill_delta: ^1.0.0-dev.1.0
17
   notus: ^0.1.0
17
   notus: ^0.1.0
18
   meta: ^1.1.0
18
   meta: ^1.1.0