Release Geo Tools 0.2.0
Verify / verify (push) Canceled after 0s

This commit is contained in:
2026-09-02 12:02:09 +02:00
parent 2acdb66399
commit 3538e4e12b
29 changed files with 1352 additions and 172 deletions
+58 -3
View File
@@ -3,12 +3,20 @@
"schemaVersion": 1,
"id": "de.add-ideas.geo-tools",
"name": "Geo Tools",
"version": "0.1.0",
"description": "Inspect, convert and analyse geospatial files locally in the browser.",
"version": "0.2.0",
"description": "Inspect, edit, measure and convert geospatial files locally.",
"entry": "./",
"icon": "./favicon.svg",
"categories": ["geography", "data", "files"],
"tags": ["geojson", "gpx", "kml", "track", "coordinates"],
"tags": [
"geojson",
"gpx",
"kml",
"track",
"geometry",
"measure",
"coordinates"
],
"integration": {
"contextVersion": 1,
"launchModes": ["navigate", "new-tab"],
@@ -21,6 +29,53 @@
"crossOriginIsolated": false,
"topLevelContext": false
},
"io": {
"accepts": [
{
"mediaType": "application/geo+json",
"extensions": [".geojson", ".json"],
"label": "GeoJSON"
},
{
"mediaType": "application/gpx+xml",
"extensions": [".gpx"],
"label": "GPX"
},
{
"mediaType": "application/vnd.google-earth.kml+xml",
"extensions": [".kml"],
"label": "KML"
},
{
"mediaType": "text/csv",
"extensions": [".csv"],
"label": "Coordinate CSV"
}
],
"produces": [
{
"mediaType": "application/geo+json",
"extensions": [".geojson", ".json"],
"label": "GeoJSON"
},
{
"mediaType": "application/gpx+xml",
"extensions": [".gpx"],
"label": "GPX"
},
{
"mediaType": "application/vnd.google-earth.kml+xml",
"extensions": [".kml"],
"label": "KML"
},
{
"mediaType": "text/csv",
"extensions": [".csv"],
"label": "Coordinate CSV"
}
]
},
"capabilities": { "required": [], "optional": ["clipboard-write"] },
"privacy": {
"processing": "local",
"fileUploads": true,