Compare commits

..

10 Commits

Author SHA1 Message Date
Axel Meyer
05c9a099af chore(deps): bump lib-core.maps 0.5.6 -> 0.5.7
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-06-01 22:44:24 +02:00
Axel Meyer
ba1437fdd6 chore(deps): bump lib-core.maps 0.5.5 -> 0.5.6
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-06-01 17:19:11 +02:00
calic
2c6dfd7698 chore(deps): bump lib-core.maps 0.5.4 -> 0.5.5 2026-05-29 09:56:48 +02:00
calic
4e991adcf1 chore(deps): bump lib-core.maps 0.5.3 -> 0.5.4 2026-05-29 01:37:41 +02:00
calic
66bbb3ba6c chore(deps): bump lib-core.maps 0.5.2 -> 0.5.3 2026-05-29 01:29:21 +02:00
calic
0f684834a4 chore(deps): bump lib-core.maps 0.5.1 -> 0.5.2 2026-05-28 23:53:18 +02:00
calic
e9168d503e deps: bump lib-core.maps 0.5.0 -> 0.5.1
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-28 23:11:21 +02:00
calic
a8037a572a deps: bump lib-core.maps 0.4.0 -> 0.5.0
Mirror of the bump in sibling sporel-module-map-editor.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-28 20:50:23 +02:00
Axel Meyer
d2b69a98c4 Update dir_of call to use the short module id
Companion to the manifest id rename — engine.module.dir_of needs
the registered module id, which is now the short form.
2026-05-24 03:09:29 +02:00
Axel Meyer
b262af08cb Match module id to directory name convention
Same rationale as the sibling map-editor repo: manifest id is the
short directory name (map-editor-test), not the sporel-module-
prefixed form.
2026-05-24 03:08:37 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ function init()
-- 7. Save to a path inside the module's writeable area. -- 7. Save to a path inside the module's writeable area.
-- engine.module.dir_of returns ctx->loaded_module.path — the installed dir -- engine.module.dir_of returns ctx->loaded_module.path — the installed dir
-- of this module. io.open with an absolute path bypasses the asset sandbox. -- of this module. io.open with an absolute path bypasses the asset sandbox.
local module_dir = engine.module.dir_of("sporel-module-map-editor-test") local module_dir = engine.module.dir_of("map-editor-test")
local out_path = module_dir .. "/maps/test_work_saved.map.json" local out_path = module_dir .. "/maps/test_work_saved.map.json"
maps.save_to_disk(map_id, out_path) maps.save_to_disk(map_id, out_path)

View File

@@ -1,5 +1,5 @@
{ {
"id": "sporel-module-map-editor-test", "id": "map-editor-test",
"version": "0.1.0", "version": "0.1.0",
"kind": "test-module", "kind": "test-module",
"api": "^0.1", "api": "^0.1",
@@ -8,7 +8,7 @@
"fa_terrain_v1": "lib-asset.prototype-fa-starter" "fa_terrain_v1": "lib-asset.prototype-fa-starter"
}, },
"deps": [ "deps": [
{"id":"lib-core.maps","version":"0.4.0"}, {"id":"lib-core.maps","version":"0.5.7"},
{"id":"lib-asset.prototype-fa-starter","version":"0.2.0"} {"id":"lib-asset.prototype-fa-starter","version":"0.2.0"}
] ]
} }