Don't show all versions by default + version ranges

This commit is contained in:
Misode
2023-12-05 19:28:35 +01:00
parent 5cc34e9ba3
commit 649f14dc0d
4 changed files with 51 additions and 16 deletions

View File

@@ -1,4 +1,5 @@
import config from '../config.json'
import type { VersionId } from './services/Schemas.js'
export interface ConfigLanguage {
code: string,
@@ -7,9 +8,11 @@ export interface ConfigLanguage {
}
export interface ConfigVersion {
id: string,
id: VersionId,
pack_format: number,
name: string,
ref?: string,
show?: boolean,
dynamic?: boolean,
}