mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-13 17:00:58 +02:00
bfba1f7bb7
* main menu scrollable when over 8 items * buggies * more buggies * Lorelei, Bruno, and Agatha now push their AfterBattle text right after a win
21 lines
718 B
Lua
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
|