Bump version to 0.2.3

New 'Set Recap License' StartOS action; split server/index.js into
8 focused modules (util, gemini-helpers, audio, ytdlp, cookies,
config, license-middleware, history); 'Recap license' copy fix.
This commit is contained in:
Keysat
2026-05-09 07:06:36 -05:00
parent 29282f8dcc
commit fe07580a12
2 changed files with 15 additions and 2 deletions
+3 -2
View File
@@ -21,8 +21,9 @@ import { v_0_1_18 } from './v0.1.18'
import { v_0_2_0 } from './v0.2.0'
import { v_0_2_1 } from './v0.2.1'
import { v_0_2_2 } from './v0.2.2'
import { v_0_2_3 } from './v0.2.3'
export const versionGraph = VersionGraph.of({
current: v_0_2_2,
other: [v_0_2_1, v_0_2_0, v_0_1_18, v_0_1_17, v_0_1_16, v_0_1_15, 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],
current: v_0_2_3,
other: [v_0_2_2, v_0_2_1, v_0_2_0, v_0_1_18, v_0_1_17, v_0_1_16, v_0_1_15, 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],
})
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_2_3 = VersionInfo.of({
version: '0.2.3:0',
releaseNotes: {
en_US: 'New "Set Recap License" StartOS action — paste your license key in the StartOS Actions menu instead of the web UI. Refactor: split the 2914-line server/index.js into focused modules (util, gemini-helpers, audio, ytdlp, cookies, config, license-middleware, history). Copy fix: Recap license, not Keysat license, on the activation screen.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})