diff --git a/startos/versions/index.ts b/startos/versions/index.ts index 53a35f9..1d368f3 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -16,8 +16,9 @@ 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' import { v_0_1_16 } from './v0.1.16' +import { v_0_1_17 } from './v0.1.17' export const versionGraph = VersionGraph.of({ - current: v_0_1_16, - other: [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_1_17, + other: [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], }) diff --git a/startos/versions/v0.1.17.ts b/startos/versions/v0.1.17.ts new file mode 100644 index 0000000..a490598 --- /dev/null +++ b/startos/versions/v0.1.17.ts @@ -0,0 +1,12 @@ +import { VersionInfo } from '@start9labs/start-sdk' + +export const v_0_1_17 = VersionInfo.of({ + version: '0.1.17:0', + releaseNotes: { + en_US: 'Persistent upgrade banner now shows for any non-Pro user (was unlicensed-only). Fix Settings modal silently failing to open by surfacing render-time exceptions instead of leaving the DOM frozen. Reword library/subs toasts to drop the misleading "tap Upgrade" instruction.', + }, + migrations: { + up: async ({ effects }) => {}, + down: async ({ effects }) => {}, + }, +})