Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
026f17b
Add in-app updater for Linux
ivan-ottinger May 13, 2026
69c7479
Generalize distro mention and show actual .deb filename in updater di…
ivan-ottinger May 13, 2026
8d733ac
Split updater dialog copy into translator-friendly sentences
ivan-ottinger May 13, 2026
10c7bd0
Use ~/Downloads/ in updater command so it works from any terminal cwd
ivan-ottinger May 13, 2026
9c2f618
Add unit tests for the Linux updater paths
ivan-ottinger May 13, 2026
edd942b
Fix typecheck error reading dialog.showMessageBox mock args
ivan-ottinger May 13, 2026
bdab436
Trim redundant comments from Linux updater response handling
ivan-ottinger May 13, 2026
46adc3d
Use process.platform for Linux updates URL to mirror Mac/Win pattern
ivan-ottinger May 13, 2026
b5346c6
Address Copilot review on Linux updater: guard concurrent polls, vali…
ivan-ottinger May 13, 2026
8d4b0c1
Drop defensive timeout-clear in rescheduleLinuxOrFinish
ivan-ottinger May 13, 2026
83aecf7
Merge remote-tracking branch 'origin/trunk' into add-linux-in-app-upd…
ivan-ottinger May 13, 2026
6d8d7d6
Validate .deb filename before interpolating into displayed shell command
ivan-ottinger May 13, 2026
f6901e0
Rename Linux skip log: "auto-updates" → "update checks"
ivan-ottinger May 14, 2026
d42ca03
Add translator comment for version placeholder in Linux updater dialog
ivan-ottinger May 14, 2026
25cb673
Drop verbose vitest overload comment from updates test helper
ivan-ottinger May 14, 2026
be0d292
Merge branch 'trunk' into add-linux-in-app-updater
ivan-ottinger May 14, 2026
370fe2a
Merge branch 'trunk' into add-linux-in-app-updater
ivan-ottinger May 14, 2026
5f18545
Merge branch 'trunk' into add-linux-in-app-updater
gavande1 May 14, 2026
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Drop verbose vitest overload comment from updates test helper
  • Loading branch information
ivan-ottinger committed May 14, 2026
commit 25cb67378a7afec97ebec87cfa2ae8c8dc644d01
3 changes: 0 additions & 3 deletions apps/studio/src/tests/updates.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ import * as Sentry from '@sentry/electron/main';
import { vi } from 'vitest';
import { manualCheckForUpdates } from 'src/updates';

// vitest types `dialog.showMessageBox`'s mock.calls using its single-arg
// overload, but our code uses the two-arg form (mainWindow, options).
// Cast through `unknown` to read the options off the second tuple slot.
function getLastDialogOptions(): MessageBoxOptions {
const lastCall = vi.mocked( dialog.showMessageBox ).mock.lastCall as unknown as [
unknown,
Expand Down
Loading