Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions startos/versions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ import { VersionGraph } from '@start9labs/start-sdk'
import { v0_1_0_0 } from './v0.1.0_0'
import { v0_1_0_1 } from './v0.1.0_1'
import { v0_1_0_2 } from './v0.1.0_2'
import { v0_1_0_3 } from './v0.1.0_3'

export const versionGraph = VersionGraph.of({
current: v0_1_0_2,
other: [v0_1_0_0, v0_1_0_1],
current: v0_1_0_3,
other: [v0_1_0_0, v0_1_0_1, v0_1_0_2],
})
13 changes: 13 additions & 0 deletions startos/versions/v0.1.0_3.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { IMPOSSIBLE, VersionInfo } from '@start9labs/start-sdk'

export const v0_1_0_3 = VersionInfo.of({
version: '0.1.0:3',
releaseNotes: {
en_US:
'Add OPML import/export, reading history with offline search, smart views, AI summaries and translation, on-device WebLLM, and Nostr sync for saved views and reading prefs.',
},
migrations: {
up: async ({ effects }) => {},
down: IMPOSSIBLE,
},
})