leaflet v1.9.3 -> v1.9.4 (#1426)

This commit is contained in:
nobody 2023-05-20 17:58:37 +02:00
parent abb08156c8
commit b9af867d43
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
11 changed files with 16 additions and 10 deletions

View File

@ -1260,8 +1260,8 @@ https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css
https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js
https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.css
https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.js
https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.3/leaflet.css
https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.3/leaflet.js
https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.css
https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.9.4/leaflet.js
https://cdnjs.cloudflare.com/ajax/libs/Leaflet.EasyButton/2.4.0/easy-button.min.js
https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.5.3/leaflet.markercluster.js
https://cdnjs.cloudflare.com/ajax/libs/libphonenumber-js/1.10.28/libphonenumber-js.min.js

View File

@ -307,7 +307,7 @@ targets.setLastVersion = function (type, version) {
if (type.startsWith('/leaflet/0.')) return '0.7.7';
if (type.startsWith('/leaflet/1.')) {
if (helpers.compareVersion('1.7.1', version)) return '1.7.1'; // <= v1.7.1
return '1.9.3';
return '1.9.4';
}
if (type.startsWith('/Leaflet.EasyButton/2.')) return '2.4.0';
if (type.startsWith('/leaflet.featuregroup.subgroup/1.')) return '1.0.2';

View File

@ -31,6 +31,7 @@
<li>vue v3.2.47 -> v3.3.4 (<a href="https://codeberg.org/nobody/LocalCDN/issues/1423">#1423</a>)</li>
<li>jquery v3.6.4 -> v3.7.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/1424">#1424</a>)</li>
<li>react-router v6.11.1 -> v6.11.2 (<a href="https://codeberg.org/nobody/LocalCDN/issues/1425">#1425</a>)</li>
<li>leaflet v1.9.3 -> v1.9.4 (<a href="https://codeberg.org/nobody/LocalCDN/issues/1426">#1426</a>)</li>
</ul>
<p>Mapping</p>
<ul>

File diff suppressed because one or more lines are too long

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 696 B

After

Width:  |  Height:  |  Size: 696 B

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 618 B

After

Width:  |  Height:  |  Size: 618 B

View File

@ -60,6 +60,11 @@
padding: 0;
}
.leaflet-container img.leaflet-tile {
/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
mix-blend-mode: plus-lighter;
}
.leaflet-container.leaflet-touch-zoom {
-ms-touch-action: pan-x pan-y;
touch-action: pan-x pan-y;
@ -646,7 +651,7 @@ svg.leaflet-image-layer.leaflet-interactive path {
}
/* Printing */
@media print {
/* Prevent printers from removing background-images of controls. */
.leaflet-control {

File diff suppressed because one or more lines are too long