Releases: merlos/MapCache
Releases · merlos/MapCache
0.10.0
What's Changed
- fix xcode12 dangling pointer warning by @hvbommel in #37
- Update README.md by @dhritzkiv in #40
- Making canReplaceMapContent settable from outside by @NickAtGit in #43
- Fix broken insert overlay for iOS 16 by @vincentneo in #42
New Contributors
- @hvbommel made their first contribution in #37
- @dhritzkiv made their first contribution in #40
- @NickAtGit made their first contribution in #43
Full Changelog: 0.9.0...0.10.0
0.9.0
0.8.0
- Improved reference documentation. Now 100% of coverage achieved.
- Support for zoomable tiles, once you the max zoom tile is reached, upscaled tiles are auto generated from last tile (by @camdeardorff)
0.7.0
zoom, round robin and disk cache
In this release there are a few things that are fixed
-
In iOS13 MapViews can go to zoom levels of 24 or 25, however most tile servers support till 20. So a new config setting was added to allow you to set the max zoom and min zoom tile levels would be requested (#10)
-
A Round robin algorithm (https://en.wikipedia.org/wiki/Round-robin) was implemented to request the tiles across the possible tile servers. Requests will be distributed more uniformly among available tile servers.
-
Cache size now is measured in two kinds of sizes:
fileSize
which is the sum of the sizes you get when you run als -la
anddiskSize
which is the size you get when you run thedu -h
command.
0.5.2
0.5.0
First happy release
First version with the following features:
- Maps can be stored in a Disk Cache (uses Least Recently Used)
- Set cache capacity (max size you want to use)
- More than one independent cache at a time
- Obtain cache size
- Clear the whole cache.