574a16d9fa
Snapshot of the working tree before cleanup. Captures: - Keysat licensing: server/license.js, /api/license/* endpoints in server/index.js, activation modal in public/index.html, embedded Ed25519 issuer key (assets/issuer.pub). - StartOS 0.4 expansion: setApiKey action, version files v0.1.1 through v0.1.15, file-models/config.json.ts, manifest updates. - Self-hosted registry server (startos-registry/). - Build/deploy scripts (bin/bump-version.sh, bin/deploy.sh, vendored yt-dlp binary), .gitignore, .deploy.env.example. - Recent design docs (KEYSAT_INTEGRATION.md, UPGRADE-DESIGN.md) — retained here so they remain recoverable when removed in the follow-up cleanup commit.
23 lines
847 B
TypeScript
23 lines
847 B
TypeScript
import { VersionGraph } from '@start9labs/start-sdk'
|
|
import { v_0_1_0 } from './v0.1.0'
|
|
import { v_0_1_1 } from './v0.1.1'
|
|
import { v_0_1_2 } from './v0.1.2'
|
|
import { v_0_1_3 } from './v0.1.3'
|
|
import { v_0_1_4 } from './v0.1.4'
|
|
import { v_0_1_5 } from './v0.1.5'
|
|
import { v_0_1_6 } from './v0.1.6'
|
|
import { v_0_1_7 } from './v0.1.7'
|
|
import { v_0_1_8 } from './v0.1.8'
|
|
import { v_0_1_9 } from './v0.1.9'
|
|
import { v_0_1_10 } from './v0.1.10'
|
|
import { v_0_1_11 } from './v0.1.11'
|
|
import { v_0_1_12 } from './v0.1.12'
|
|
import { v_0_1_13 } from './v0.1.13'
|
|
import { v_0_1_14 } from './v0.1.14'
|
|
import { v_0_1_15 } from './v0.1.15'
|
|
|
|
export const versionGraph = VersionGraph.of({
|
|
current: v_0_1_15,
|
|
other: [v_0_1_14, v_0_1_13, v_0_1_12, v_0_1_11, v_0_1_10, v_0_1_9, v_0_1_8, v_0_1_7, v_0_1_6, v_0_1_5, v_0_1_4, v_0_1_3, v_0_1_2, v_0_1_1, v_0_1_0],
|
|
})
|