Files
gen1recomp/src/core/Version.lua
T
bryanthaboi bfba1f7bb7 Bugs and stuff (#144)
* main menu scrollable when over 8 items

* buggies

* more buggies

* Lorelei, Bruno, and Agatha now push their AfterBattle text right after a win
2026-07-24 09:06:29 -04:00

21 lines
718 B
Lua

-- Single source of every compatibility-relevant number: engine release,
-- mod API major, link protocol, save format and ROM cache generation. Zero
-- requires so it loads during love.conf and under plain Lua for tools and
-- tests.
local Version = {
engine = "1.0.0", -- game/engine release (semver triple)
modApi = 2, -- mod API major (manifest `api`)
linkProtocol = 2, -- link handshake wire version (Handshake.PROTOCOL)
saveFormat = 4, -- save.meta.format
cache = "rom-cache-v5", -- ROM import cache generation (RomImporter marker)
}
-- "gen1recomp v1.0.0"
function Version.title(base)
return (base or "gen1recomp")
.. " v" .. Version.engine
end
return Version