Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions packages/connectivity/connectivity_macos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## 0.0.2+1

* Add CHANGELOG.

## 0.0.1

* Initial open source release.
2 changes: 1 addition & 1 deletion packages/connectivity/connectivity_macos/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# shared_preferences_macos
# connectivity_macos

The macos implementation of [`connectivity`].

Expand Down
2 changes: 1 addition & 1 deletion packages/connectivity/connectivity_macos/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
7 changes: 7 additions & 0 deletions packages/path_provider/path_provider_macos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## 0.0.2+1

* Update README.

## 0.0.1

* Initial open source release.
4 changes: 2 additions & 2 deletions packages/path_provider/path_provider_macos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
...
```

Expand Down
2 changes: 1 addition & 1 deletion packages/path_provider/path_provider_macos/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.1+3

* Update README.

## 0.0.1+2

* Remove unused onMethodCall method.
Expand Down
26 changes: 14 additions & 12 deletions packages/shared_preferences/shared_preferences_macos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,29 @@ 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 automatically included in your app
when you depend on `package:shared_preferences`.

This is what the above means to your `pubspec.yaml`:

```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
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
10 changes: 8 additions & 2 deletions packages/url_launcher/url_launcher_macos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

26 changes: 14 additions & 12 deletions packages/url_launcher/url_launcher_macos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,29 @@ 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 automatically included in your app
when you depend on `package:url_launcher`.

This is what the above means to your `pubspec.yaml`:

```yaml
...
dependencies:
...
url_launcher: ^0.5.4+8
url_launcher_macos: ^0.1.0
url_launcher: ^5.4.1
...
```

### 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
2 changes: 1 addition & 1 deletion packages/url_launcher/url_launcher_macos/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down