first commit

This commit is contained in:
2026-08-08 11:08:00 -05:00
commit c51740c589
32 changed files with 2461 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'
export const current = VersionInfo.of({
version: '3.5.0:0',
releaseNotes: {
en_US: 'Initial native StartOS 0.4 package for RomM 3.5.0.',
es_ES: 'Paquete nativo inicial de StartOS 0.4 para RomM 3.5.0.',
de_DE: 'Erstes natives StartOS-0.4-Paket für RomM 3.5.0.',
pl_PL: 'Pierwszy natywny pakiet StartOS 0.4 dla RomM 3.5.0.',
fr_FR: 'Premier paquet StartOS 0.4 natif pour RomM 3.5.0.',
},
migrations: {
up: async () => {},
down: IMPOSSIBLE,
},
})
+4
View File
@@ -0,0 +1,4 @@
import { VersionGraph } from '@start9labs/start-sdk'
import { current } from './current'
export const versionGraph = VersionGraph.of({ current, other: [] })