Skip to content

Commit b81e4dd

Browse files
committed
Bump to v11 prerelease
Updated CHANGELOG
1 parent e61b420 commit b81e4dd

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ Many thanks to my sponsors, no matter how much or how little they donated. Spons
1818

1919
# Changelog
2020

21+
## [11.0.0-dev.1] - 2025/03/09
22+
23+
* Change `FMTCTileProvider.provideTile` arguments
24+
Require a tile's URL & optional coordinates; instead of required coordinates and required `TileLayer`
25+
* Fixed overly-aggressive Flutter-side tile image caching which prevented changes to `TileLayer.urlTemplate` from updating the displayed tiles
26+
2127
## [10.1.0] - 2025/02/02
2228

2329
* Added support for flutter_map v8

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: fmtc_demo
22
description: The demo app for 'flutter_map_tile_caching', showcasing its functionality and use-cases.
33
publish_to: "none"
4-
version: 10.1.0
4+
version: 11.0.0
55

66
environment:
77
sdk: ">=3.6.0 <4.0.0"

lib/src/providers/image_provider/image_provider.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ class _FMTCImageProvider extends ImageProvider<_FMTCImageProvider> {
7474

7575
/// {@macro fmtc.tileProvider.provideTile}
7676
static Future<Uint8List> provideTile({
77-
required String networkUrl,
7877
required FMTCTileProvider provider,
78+
required String networkUrl,
7979
TileCoordinates? coords,
8080
Object? key,
8181
void Function()? startedLoading,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_map_tile_caching
22
description: Plugin for 'flutter_map' providing advanced caching functionality,
33
with ability to download map regions for offline use.
4-
version: 10.1.0
4+
version: 11.0.0-dev.1
55

66
repository: https://github.com/JaffaKetchup/flutter_map_tile_caching
77
issue_tracker: https://github.com/JaffaKetchup/flutter_map_tile_caching/issues

windowsApplicationInstallerSetup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
; Script generated by the Inno Setup Script Wizard
22

33
#define MyAppName "FMTC Demo"
4-
#define MyAppVersion "for 10.1.0"
4+
#define MyAppVersion "for 11.0.0"
55
#define MyAppPublisher "JaffaKetchup Development"
66
#define MyAppURL "https://github.com/JaffaKetchup/flutter_map_tile_caching"
77
#define MyAppSupportURL "https://github.com/JaffaKetchup/flutter_map_tile_caching/issues"

0 commit comments

Comments
 (0)