From b28344186438f68ce3621a8a788e5d7f9a8d80bd Mon Sep 17 00:00:00 2001 From: Francisco Magdaleno Date: Thu, 12 Dec 2019 08:56:25 -0800 Subject: [PATCH 1/6] Update readme --- .../shared_preferences_macos/CHANGELOG.md | 4 +++ .../shared_preferences_macos/README.md | 26 ++++++++++--------- .../shared_preferences_macos/pubspec.yaml | 2 +- 3 files changed, 19 insertions(+), 13 deletions(-) diff --git a/packages/shared_preferences/shared_preferences_macos/CHANGELOG.md b/packages/shared_preferences/shared_preferences_macos/CHANGELOG.md index e76799736973..a2543e9de43b 100644 --- a/packages/shared_preferences/shared_preferences_macos/CHANGELOG.md +++ b/packages/shared_preferences/shared_preferences_macos/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.1+3 + +* Update README.md + ## 0.0.1+2 * Remove unused onMethodCall method. diff --git a/packages/shared_preferences/shared_preferences_macos/README.md b/packages/shared_preferences/shared_preferences_macos/README.md index fcb29f09ee83..7ab88871fa78 100644 --- a/packages/shared_preferences/shared_preferences_macos/README.md +++ b/packages/shared_preferences/shared_preferences_macos/README.md @@ -6,12 +6,9 @@ The macos implementation of [`shared_preferences`][1]. ### Import the package -To use this plugin in your Flutter app, simply add it as a dependency in -your `pubspec.yaml` alongside the base `shared_preferences` plugin. - -_(This is only temporary: in the future we hope to make this package an -"endorsed" implementation of `shared_preferences`, so that it is automatically -included in your Flutter app when you depend on `package:shared_preferences`.)_ +This package has been endorsed, meaning that you only need to add `shared_preferences` +as a dependency in your `pubspec.yaml`. It will be automaticallu included in your app +when you depend on `package:shared_preferences`. This is what the above means to your `pubspec.yaml`: @@ -19,14 +16,19 @@ This is what the above means to your `pubspec.yaml`: ... dependencies: ... - shared_preferences: ^0.5.4+8 - shared_preferences_macos: ^0.1.0 + shared_preferences: ^0.5.6 ... ``` -### Use the plugin +If you wish to use the macos package only, you can add `shared_preferences_macos` as a +dependency: -Once you have the `shared_preferences_macos` dependency in your pubspec, you should -be able to use `package:shared_preferences` as normal. +```yaml +... +dependencies: + ... + shared_preferences_macos: ^0.0.1 + ... +``` -[1]: ../shared_preferences/shared_preferences_macos +[1]: ../shared_preferences/shared_preferences diff --git a/packages/shared_preferences/shared_preferences_macos/pubspec.yaml b/packages/shared_preferences/shared_preferences_macos/pubspec.yaml index 80e6a7b8eefa..cddc2016637d 100644 --- a/packages/shared_preferences/shared_preferences_macos/pubspec.yaml +++ b/packages/shared_preferences/shared_preferences_macos/pubspec.yaml @@ -1,6 +1,6 @@ name: shared_preferences_macos description: macOS implementation of the shared_preferences plugin. -version: 0.0.1+2 +version: 0.0.1+3 homepage: https://github.com/flutter/plugins/tree/master/packages/shared_preferences/shared_preferences_macos flutter: From 7b652ebfdbb1b4033a0c9c67d9319b19dd5365c2 Mon Sep 17 00:00:00 2001 From: Francisco Magdaleno Date: Thu, 12 Dec 2019 09:37:40 -0800 Subject: [PATCH 2/6] Update others --- .../connectivity_macos/CHANGELOG.md | 7 +++++ .../connectivity_macos/pubspec.yaml | 2 +- .../path_provider_macos/CHANGELOG.md | 7 +++++ .../path_provider_macos/README.md | 4 +-- .../path_provider_macos/pubspec.yaml | 2 +- .../shared_preferences_macos/CHANGELOG.md | 2 +- .../url_launcher_macos/CHANGELOG.md | 10 +++++-- .../url_launcher/url_launcher_macos/README.md | 26 ++++++++++--------- .../url_launcher_macos/pubspec.yaml | 2 +- 9 files changed, 42 insertions(+), 20 deletions(-) create mode 100644 packages/connectivity/connectivity_macos/CHANGELOG.md create mode 100644 packages/path_provider/path_provider_macos/CHANGELOG.md diff --git a/packages/connectivity/connectivity_macos/CHANGELOG.md b/packages/connectivity/connectivity_macos/CHANGELOG.md new file mode 100644 index 000000000000..3e3607e44a33 --- /dev/null +++ b/packages/connectivity/connectivity_macos/CHANGELOG.md @@ -0,0 +1,7 @@ +## 0.0.2+1 + +* Update README. + +## 0.0.1 + +* Initial open source release. \ No newline at end of file diff --git a/packages/connectivity/connectivity_macos/pubspec.yaml b/packages/connectivity/connectivity_macos/pubspec.yaml index c06c0f7aa5e3..f82189face5f 100644 --- a/packages/connectivity/connectivity_macos/pubspec.yaml +++ b/packages/connectivity/connectivity_macos/pubspec.yaml @@ -1,6 +1,6 @@ name: connectivity_macos description: macOS implementation of the connectivity plugin. -version: 0.0.2 +version: 0.0.2+1 homepage: https://github.com/flutter/plugins/tree/master/packages/connectivity/connectivity_macos flutter: diff --git a/packages/path_provider/path_provider_macos/CHANGELOG.md b/packages/path_provider/path_provider_macos/CHANGELOG.md new file mode 100644 index 000000000000..3e3607e44a33 --- /dev/null +++ b/packages/path_provider/path_provider_macos/CHANGELOG.md @@ -0,0 +1,7 @@ +## 0.0.2+1 + +* Update README. + +## 0.0.1 + +* Initial open source release. \ No newline at end of file diff --git a/packages/path_provider/path_provider_macos/README.md b/packages/path_provider/path_provider_macos/README.md index 5b33f62ca40c..23727fe7f370 100644 --- a/packages/path_provider/path_provider_macos/README.md +++ b/packages/path_provider/path_provider_macos/README.md @@ -19,8 +19,8 @@ This is what the above means to your `pubspec.yaml`: ... dependencies: ... - path_provider: ^0.5.4+8 - path_provider_macos: ^0.1.0 + path_provider: ^1.5.1 + path_provider_macos: ^0.0.1 ... ``` diff --git a/packages/path_provider/path_provider_macos/pubspec.yaml b/packages/path_provider/path_provider_macos/pubspec.yaml index 97b450ecb8ab..82acee955a0a 100644 --- a/packages/path_provider/path_provider_macos/pubspec.yaml +++ b/packages/path_provider/path_provider_macos/pubspec.yaml @@ -1,6 +1,6 @@ name: path_provider_macos description: macOS implementation of the path_provider plugin -version: 0.0.2 +version: 0.0.2+1 homepage: https://github.com/flutter/plugins/tree/master/packages/path_provider/path_provider_macos flutter: diff --git a/packages/shared_preferences/shared_preferences_macos/CHANGELOG.md b/packages/shared_preferences/shared_preferences_macos/CHANGELOG.md index a2543e9de43b..5a80c411894c 100644 --- a/packages/shared_preferences/shared_preferences_macos/CHANGELOG.md +++ b/packages/shared_preferences/shared_preferences_macos/CHANGELOG.md @@ -1,6 +1,6 @@ ## 0.0.1+3 -* Update README.md +* Update README. ## 0.0.1+2 diff --git a/packages/url_launcher/url_launcher_macos/CHANGELOG.md b/packages/url_launcher/url_launcher_macos/CHANGELOG.md index 4f70c64c3c38..446b44857d2f 100644 --- a/packages/url_launcher/url_launcher_macos/CHANGELOG.md +++ b/packages/url_launcher/url_launcher_macos/CHANGELOG.md @@ -1,6 +1,12 @@ +# 0.0.1+2 + +* Update README. + # 0.0.1+1 -* Add an android/ folder with no-op implementation to workaround https://github.com/flutter/flutter/issues/46304 +* Add an android/ folder with no-op implementation to workaround https:// + # 0.0.1 -* Initial open-source release. +* Initial open source release. + diff --git a/packages/url_launcher/url_launcher_macos/README.md b/packages/url_launcher/url_launcher_macos/README.md index 2c280be357d5..62ee55045549 100644 --- a/packages/url_launcher/url_launcher_macos/README.md +++ b/packages/url_launcher/url_launcher_macos/README.md @@ -6,12 +6,9 @@ The macos implementation of [`url_launcher`][1]. ### Import the package -To use this plugin in your Flutter macos app, simply add it as a dependency in -your `pubspec.yaml` alongside the base `url_launcher` plugin. - -_(This is only temporary: in the future we hope to make this package an -"endorsed" implementation of `url_launcher`, so that it is automatically -included in your Flutter macos app when you depend on `package:url_launcher`.)_ +This package has been endorsed, meaning that you only need to add `url_launcher` +as a dependency in your `pubspec.yaml`. It will be automaticallu included in your app +when you depend on `package:url_launcher`. This is what the above means to your `pubspec.yaml`: @@ -19,14 +16,19 @@ This is what the above means to your `pubspec.yaml`: ... dependencies: ... - url_launcher: ^0.5.4+8 - url_launcher_macos: ^0.1.0 + url_launcher: ^0.5.6 ... ``` -### Use the plugin +If you wish to use the macos package only, you can add `url_launcher_macos` as a +dependency: -Once you have the `url_launcher_macos` dependency in your pubspec, you should -be able to use `package:url_launcher` as normal. +```yaml +... +dependencies: + ... + url_launcher_macos: ^0.0.1 + ... +``` -[1]: ../url_launcher +[1]: ../url_launcher/url_launcher diff --git a/packages/url_launcher/url_launcher_macos/pubspec.yaml b/packages/url_launcher/url_launcher_macos/pubspec.yaml index f254fc3722c6..9e4b2009a633 100644 --- a/packages/url_launcher/url_launcher_macos/pubspec.yaml +++ b/packages/url_launcher/url_launcher_macos/pubspec.yaml @@ -1,6 +1,6 @@ name: url_launcher_macos description: macOS implementation of the url_launcher plugin. -version: 0.0.1+1 +version: 0.0.1+2 homepage: https://github.com/flutter/plugins/tree/master/packages/url_launcher/url_launcher_macos flutter: From 585f8944afb0363a0bb475775ad3bf36699fcd0a Mon Sep 17 00:00:00 2001 From: Francisco Magdaleno Date: Thu, 12 Dec 2019 09:48:46 -0800 Subject: [PATCH 3/6] Typos --- packages/shared_preferences/shared_preferences_macos/README.md | 2 +- packages/url_launcher/url_launcher_macos/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/shared_preferences/shared_preferences_macos/README.md b/packages/shared_preferences/shared_preferences_macos/README.md index 7ab88871fa78..eba3b2e3611b 100644 --- a/packages/shared_preferences/shared_preferences_macos/README.md +++ b/packages/shared_preferences/shared_preferences_macos/README.md @@ -7,7 +7,7 @@ The macos implementation of [`shared_preferences`][1]. ### Import the package This package has been endorsed, meaning that you only need to add `shared_preferences` -as a dependency in your `pubspec.yaml`. It will be automaticallu included in your app +as a dependency in your `pubspec.yaml`. It will be automatically included in your app when you depend on `package:shared_preferences`. This is what the above means to your `pubspec.yaml`: diff --git a/packages/url_launcher/url_launcher_macos/README.md b/packages/url_launcher/url_launcher_macos/README.md index 62ee55045549..c970538e93db 100644 --- a/packages/url_launcher/url_launcher_macos/README.md +++ b/packages/url_launcher/url_launcher_macos/README.md @@ -7,7 +7,7 @@ The macos implementation of [`url_launcher`][1]. ### Import the package This package has been endorsed, meaning that you only need to add `url_launcher` -as a dependency in your `pubspec.yaml`. It will be automaticallu included in your app +as a dependency in your `pubspec.yaml`. It will be automatically included in your app when you depend on `package:url_launcher`. This is what the above means to your `pubspec.yaml`: From 6e8740812eb233091399372b7efd4992324d1833 Mon Sep 17 00:00:00 2001 From: Francisco Magdaleno Date: Thu, 12 Dec 2019 09:52:24 -0800 Subject: [PATCH 4/6] Typos --- packages/url_launcher/url_launcher_macos/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/url_launcher/url_launcher_macos/README.md b/packages/url_launcher/url_launcher_macos/README.md index c970538e93db..28aa18817d6c 100644 --- a/packages/url_launcher/url_launcher_macos/README.md +++ b/packages/url_launcher/url_launcher_macos/README.md @@ -16,7 +16,7 @@ This is what the above means to your `pubspec.yaml`: ... dependencies: ... - url_launcher: ^0.5.6 + url_launcher: ^5.4.1 ... ``` From 6acdf1795f3adb62ab0d506cecbc03aa0084f3a8 Mon Sep 17 00:00:00 2001 From: Francisco Magdaleno Date: Thu, 12 Dec 2019 09:57:23 -0800 Subject: [PATCH 5/6] Update changelog --- packages/connectivity/connectivity_macos/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/connectivity/connectivity_macos/CHANGELOG.md b/packages/connectivity/connectivity_macos/CHANGELOG.md index 3e3607e44a33..c34dc60fc0bf 100644 --- a/packages/connectivity/connectivity_macos/CHANGELOG.md +++ b/packages/connectivity/connectivity_macos/CHANGELOG.md @@ -1,6 +1,6 @@ ## 0.0.2+1 -* Update README. +* Add CHANGELOG. ## 0.0.1 From d1e43ab43a53bad247134877621ffadcf1f1882a Mon Sep 17 00:00:00 2001 From: Francisco Magdaleno Date: Thu, 12 Dec 2019 11:57:20 -0800 Subject: [PATCH 6/6] Update --- packages/connectivity/connectivity_macos/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/connectivity/connectivity_macos/README.md b/packages/connectivity/connectivity_macos/README.md index 3357da6fd829..ee34d1da12f8 100644 --- a/packages/connectivity/connectivity_macos/README.md +++ b/packages/connectivity/connectivity_macos/README.md @@ -1,4 +1,4 @@ -# shared_preferences_macos +# connectivity_macos The macos implementation of [`connectivity`].