rename to lib-management.launcher (was lib-sporel.launcher)

Per ADR-0045 (three-tier library naming) the launcher migrates from
the retired lib-sporel.* prefix to the new lib-management.* tier for
host-infrastructure libs. Updates:

- manifest.module id: lib-sporel.launcher -> lib-management.launcher
- manifest.core id: lib-sporel.launcher.core -> lib-management.launcher.core
- init.lua engine.module.dir_of("lib-management.launcher")
- README + fsm.lua comment refs

Gitea repo renamed in lockstep:
sporel/sporel-module-lib-sporel.launcher ->
sporel/sporel-module-lib-management.launcher
This commit is contained in:
Calic
2026-05-31 00:21:51 +02:00
parent 03027b077a
commit 4d91a5ffde
5 changed files with 8 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
local input = require("lib-core.input")
-- fsm.lua lives in this module's dir; engine_lua_lib's searcher only resolves
-- declared lib-deps, so multi-file modules use dofile + engine.module.dir_of.
local fsm = dofile(engine.module.dir_of("lib-sporel.launcher") .. "/fsm.lua")
local fsm = dofile(engine.module.dir_of("lib-management.launcher") .. "/fsm.lua")
local STATE_LIST, STATE_QUIT, EXIT = fsm.STATE_LIST, fsm.STATE_QUIT_CONFIRM, fsm.EXIT
local state = STATE_LIST