feat(markers): add province information to markers, v1.108.14

- Attach province ID to markers when created (markers-generator.js)
- Add migration function to populate province data for old maps (load.js)
- Clean up code formatting and remove user-specific Obsidian paths
- Update version to 1.108.14
- Update file hashes in index.html
This commit is contained in:
Claude 2025-11-17 22:27:47 +00:00
parent 9812da115a
commit e21999a736
No known key found for this signature in database
4 changed files with 15 additions and 17 deletions

View file

@ -716,6 +716,9 @@ async function parseLoadedData(data, mapVersion) {
// sort markers by index
pack.markers.sort((a, b) => a.i - b.i);
}
// assign biome and province info to markers for old maps or maps without this data
if (typeof assignBiomeAndProvinceInfo !== "undefined") assignBiomeAndProvinceInfo();
}
{