Save in-progress keysat integration and StartOS 0.4 work

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.
This commit is contained in:
Keysat
2026-05-08 09:39:17 -05:00
parent 8298c083c7
commit 574a16d9fa
666 changed files with 71889 additions and 724 deletions
+17 -2
View File
@@ -1,7 +1,22 @@
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_0,
other: [],
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],
})
+15
View File
@@ -0,0 +1,15 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_1 = VersionInfo.of({
version: '0.1.1:0',
releaseNotes: {
en_US:
'Fix library not updating after processing. Add YouTube OAuth authentication UI. ' +
'Improve embedded player compatibility. Add library export/import for transferring ' +
'between devices. Remove standalone shutdown button (not needed on StartOS).',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_10 = VersionInfo.of({
version: '0.1.10:0',
releaseNotes: {
en_US: 'Library side bar keeps its position after deleting an item from the library.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_11 = VersionInfo.of({
version: '0.1.11:0',
releaseNotes: {
en_US: 'keysat licensing',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_12 = VersionInfo.of({
version: '0.1.12:0',
releaseNotes: {
en_US: 'keysat licensing',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_13 = VersionInfo.of({
version: '0.1.13:0',
releaseNotes: {
en_US: 'keysat licensing',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_14 = VersionInfo.of({
version: '0.1.14:0',
releaseNotes: {
en_US: 'keysat licensing',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+12
View File
@@ -0,0 +1,12 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_15 = VersionInfo.of({
version: '0.1.15:0',
releaseNotes: {
en_US: 'bug fixes',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+15
View File
@@ -0,0 +1,15 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_2 = VersionInfo.of({
version: '0.1.2:0',
releaseNotes: {
en_US:
'Fix YouTube OAuth device code flow (use oauth2 protocol). Improve OAuth UI ' +
'with better error reporting and no-flash updates. Add library export/import ' +
'for transferring between devices. Remove standalone shutdown button.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+16
View File
@@ -0,0 +1,16 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_3 = VersionInfo.of({
version: '0.1.3:0',
releaseNotes: {
en_US:
'Remove YouTube OAuth (no longer supported by yt-dlp). Improve cookie setup ' +
'instructions for headless servers. Add library export/import for transferring ' +
'between devices. Remove standalone shutdown button. Fix library not updating ' +
'after processing. Improve embedded player compatibility.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+16
View File
@@ -0,0 +1,16 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_4 = VersionInfo.of({
version: '0.1.4:0',
releaseNotes: {
en_US:
'Add Gemini API key as a StartOS Action for easier configuration. ' +
'Remove placeholder GitHub links from service overview. ' +
'Fix description to accurately reflect Gemini-only AI support. ' +
'Add VPN warning for embedded YouTube player compatibility.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+16
View File
@@ -0,0 +1,16 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_5 = VersionInfo.of({
version: '0.1.5:0',
releaseNotes: {
en_US:
'Fix YouTube subscription checking by ensuring curl_cffi is properly installed ' +
'for yt-dlp browser impersonation. Add Gemini API key as a StartOS Action. ' +
'Remove placeholder GitHub links. Fix description to reflect Gemini-only support. ' +
'Add VPN warning for embedded YouTube player.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+15
View File
@@ -0,0 +1,15 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_6 = VersionInfo.of({
version: '0.1.6:0',
releaseNotes: {
en_US:
'Fix YouTube subscription checking on StartOS by gracefully handling ' +
'missing curl_cffi. Browser impersonation is now used only when available, ' +
'with automatic fallback for environments where it cannot be installed.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+14
View File
@@ -0,0 +1,14 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_7 = VersionInfo.of({
version: '0.1.7:0',
releaseNotes: {
en_US:
'Fix YouTube subscription checking by removing unnecessary browser ' +
'impersonation flag that was not present in the original working code.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+19
View File
@@ -0,0 +1,19 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_8 = VersionInfo.of({
version: '0.1.8:0',
releaseNotes: {
en_US:
'Library folders now remember their expanded/collapsed state across ' +
'page reloads and devices. Subscriptions gain a per-channel ' +
'"auto-process" toggle (lightning bolt) that lets new videos skip ' +
'the approval queue and start summarizing immediately — settable ' +
'either when subscribing from the homepage or later from Settings. ' +
'Adds a Library Transfer panel in Settings to export/import your ' +
'full library (summaries, folders, subscriptions) between devices.',
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})
+17
View File
@@ -0,0 +1,17 @@
import { VersionInfo } from '@start9labs/start-sdk'
export const v_0_1_9 = VersionInfo.of({
version: '0.1.9:0',
releaseNotes: {
en_US:
'Fix a race condition where deleting several library items in quick ' +
'succession could cause some of them to reappear after a subscription ' +
'check. Writes to the skip-list and seen-list are now serialized ' +
'per-file so concurrent delete operations no longer overwrite each ' +
"other's updates.",
},
migrations: {
up: async ({ effects }) => {},
down: async ({ effects }) => {},
},
})