Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Azgaar authored and sofronaspe committed Jan 11, 2025
1 parent 31c1303 commit 56df31d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8427,7 +8427,7 @@
<script defer src="libs/rgbquant.min.js"></script>
<script defer src="libs/jquery.ui.touch-punch.min.js"></script>
<script defer src="modules/io/save.js?v=1.100.00"></script>
<script defer src="modules/io/load.js?v=1.105.17"></script>
<script defer src="modules/io/load.js?v=1.105.24"></script>
<script defer src="modules/io/cloud.js?v=1.105.19"></script>
<script defer src="modules/io/export.js?v=1.100.00"></script>

Expand Down
4 changes: 4 additions & 0 deletions modules/dynamic/auto-update.js
Original file line number Diff line number Diff line change
Expand Up @@ -972,5 +972,9 @@ export function resolveVersionConflicts(mapVersion) {
.attr("letter-spacing", null)
.attr("fill", null)
.attr("stroke", null);

// pole can be missing for some states/provinces
BurgsAndStates.getPoles();
Provinces.getPoles();
}
}
2 changes: 1 addition & 1 deletion modules/io/load.js
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ async function parseLoadedData(data, mapVersion) {

{
// dynamically import and run auto-update script
const {resolveVersionConflicts} = await import("../dynamic/auto-update.js?v=1.105.10");
const {resolveVersionConflicts} = await import("../dynamic/auto-update.js?v=1.105.24");
resolveVersionConflicts(mapVersion);
}

Expand Down
2 changes: 1 addition & 1 deletion versioning.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Example: 1.102.2 -> Major version 1, Minor version 102, Patch version 2
*/

const VERSION = "1.105.23";
const VERSION = "1.105.24";
if (parseMapVersion(VERSION) !== VERSION) alert("versioning.js: Invalid format or parsing function");

{
Expand Down

0 comments on commit 56df31d

Please sign in to comment.