diff --git a/readstr b/readstr index 7ecafd5..985ab25 160000 --- a/readstr +++ b/readstr @@ -1 +1 @@ -Subproject commit 7ecafd52395ccd0cce08d651469ed79cc5b554e6 +Subproject commit 985ab254150c74de36b9d1925fca400be6fd3265 diff --git a/startos/versions/index.ts b/startos/versions/index.ts index 1920e8e..33c211f 100644 --- a/startos/versions/index.ts +++ b/startos/versions/index.ts @@ -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], }) diff --git a/startos/versions/v0.1.0_3.ts b/startos/versions/v0.1.0_3.ts new file mode 100644 index 0000000..611e324 --- /dev/null +++ b/startos/versions/v0.1.0_3.ts @@ -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, + }, +})