Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: added WASM support #9

Merged
merged 2 commits into from
Sep 12, 2024
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: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# CHANGELOG

## [3.0.0] - 2024/06/XX
## [3.0.1] - 2024/09/12

* Minor dependency bumps
* Minor documentation improvements

## [3.0.0] - 2024/06/08

* Updated to support flutter_map v7

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ Although HTTP request abortion is supported on all platforms, it is especially u
On other platforms, the other benefits may still occur, but may not be as visible as on the web.

Once HTTP request abortion is [added to Dart's 'native' 'http' package (which already has a PR opened)](https://github.com/dart-lang/http/issues/424), `NetworkTileProvider` will be updated to take advantage of it, replacing and deprecating this provider. This tile provider is currently a separate package and not the default due to the reliance on the additional Dio dependency.

> WASM is currently not supported, because Dio does not yet support it.
3 changes: 3 additions & 0 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Examples

See the [examples](https://docs.fleaflet.dev/getting-started/examples) on the main flutter_map repo, which use this plugin.
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_map_cancellable_tile_provider
description: Plugin for flutter_map that provides a `TileProvider` with the capability to cancel unnecessary HTTP tile requests
version: 3.0.0
version: 3.0.1

homepage: https://github.com/fleaflet/flutter_map
repository: https://github.com/fleaflet/flutter_map_cancellable_tile_provider
Expand All @@ -27,8 +27,8 @@ environment:
flutter: ">=3.10.0"

dependencies:
dio: ^5.4.3
dio: ^5.7.0
flutter:
sdk: flutter
flutter_map: ^7.0.0
meta: ^1.11.0
flutter_map: ^7.0.2
meta: ^1.15.0
JaffaKetchup marked this conversation as resolved.
Show resolved Hide resolved
Loading