UI polish + toolchain modernization (Electron 42, TS 6, Vite 8)#204
Open
alexkroman wants to merge 9 commits into
Open
UI polish + toolchain modernization (Electron 42, TS 6, Vite 8)#204alexkroman wants to merge 9 commits into
alexkroman wants to merge 9 commits into
Conversation
Pin .nvmrc to 22.21.1 (Electron 39.2.7's internal Node) and switch CI
workflows to node-version-file so future Electron bumps need only an
.nvmrc change. Also fixes a stale summarizationService test asserting
the pre-markdown ('Transcript:') prompt format.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Bumps Electron 39.2.7 → 41.5.0 (Node 22.21.1 → 24.15.0), TypeScript 5.9 → 6.0, Vite 7 → 8 (Rolldown bundler), and assorted minors. Fixes: - jest.config.ts: pass module/moduleResolution/ignoreDeprecations to ts-jest so TS6 doesn't choke on its inferred node10 default. - vite.config.js: rewrite manualChunks as a function — Rolldown rejects the object form that Rollup accepted. - Drop now-unnecessary type assertions flagged by typescript-eslint 8.59. Skipped: ESLint 10 (eslint-plugin-import has no compatible release yet); Electron 42 (better-sqlite3 12.9.0 fails to compile against its newer V8 External::New signature). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Removes the legacy SQLite→electron-store migration path and the better-sqlite3 dependency it required. With that gone, Electron can move to 42.0.0 — the previous blocker was a v8::External::New signature change in Chromium that better-sqlite3 12.9.0 hadn't adopted. - Delete migrationService and its DI wiring. - Drop migrationCompleted from the settings store schema. - Remove better-sqlite3 from electron-builder asarUnpack. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Adds a 📄 button next to the recording duration that calls a new show-transcript-in-folder IPC handler, which resolves the recording's filename and opens its containing directory. Swaps the existing audio reveal icon to 🔊 so the two buttons read at a glance. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Dependency ReviewThe following issues were found:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two threads on this branch:
UI / product changes
a3c1a04)723c8a5)f4f54a1)c864e85)229fd29)claude-opus-4(43eeb0d)Toolchain modernization
.nvmrcto Electron's bundled Node and switch CI tonode-version-fileso future Electron bumps need only one edit (01b4daf)d230f88,8392588)better-sqlite3and the legacy SQLite→electron-store migration that depended on it — unblocked the Electron 42 jumpHeld back (upstream-blocked, can't fix locally):
eslint-plugin-import2.32.0 still caps at ESLint 9.Test plan
npm run typechecknpm run lintnpm test(Jest 197/197 + Playwright e2e)npm run build:all🤖 Generated with Claude Code