Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b3fb7a7
feat: Implement list view in the new recording flow
richiemcilroy Sep 30, 2025
f526de3
Potential fix for code scanning alert no. 59: Incomplete string escap…
richiemcilroy Oct 1, 2025
d6bc90c
Coderabbit bits
richiemcilroy Oct 1, 2025
8651bb0
Merge branch 'new-recording-flow-list-view' of https://github.com/Cap…
richiemcilroy Oct 1, 2025
83f8db8
fix: Windows compatibility/fixes
richiemcilroy Oct 1, 2025
bd4bd1b
fix: Improve window selection from list view on Windows
richiemcilroy Oct 1, 2025
30e6475
formatting
richiemcilroy Oct 1, 2025
fede3e1
improve ui
ameer2468 Oct 1, 2025
960c6bc
Merge branch 'new-recording-flow-list-view' of https://github.com/Cap…
ameer2468 Oct 1, 2025
496b17e
keep cover
ameer2468 Oct 1, 2025
c0c9e98
fix: Coderabbit suggestions
richiemcilroy Oct 1, 2025
936b62a
Merge branch 'new-recording-flow-list-view' of https://github.com/Cap…
richiemcilroy Oct 1, 2025
b735008
Update apps/desktop/src/routes/(window-chrome)/new-main/index.tsx
richiemcilroy Oct 1, 2025
9cbc80c
More coderabbit suggestions
richiemcilroy Oct 1, 2025
c0d9967
Merge branch 'new-recording-flow-list-view' of https://github.com/Cap…
richiemcilroy Oct 1, 2025
176edca
fix: Coderabbit suggestion
richiemcilroy Oct 1, 2025
20b43c3
fix: Coderabbit suggestion
richiemcilroy Oct 1, 2025
da97293
Potential fix for code scanning alert no. 60: Incomplete string escap…
richiemcilroy Oct 1, 2025
c066f91
Merge branch 'main' into new-recording-flow-list-view
richiemcilroy Oct 1, 2025
4798423
fix: type errors
richiemcilroy Oct 1, 2025
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
11 changes: 11 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"permissions": {
"allow": [
"Bash(pnpm typecheck:*)",
"Bash(pnpm lint:*)",
"Bash(pnpm build:*)"
],
"deny": [],
"ask": []
}
}
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"posthog-js": "^1.215.3",
"solid-js": "^1.9.3",
"solid-markdown": "^2.0.13",
"solid-motionone": "^1.0.4",
"solid-presence": "^0.1.8",
"solid-toast": "^0.5.0",
"solid-transition-group": "^0.2.3",
Expand Down
2 changes: 2 additions & 0 deletions apps/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ cap-flags = { path = "../../../crates/flags" }
cap-recording = { path = "../../../crates/recording" }
cap-export = { path = "../../../crates/export" }
scap-targets = { path = "../../../crates/scap-targets" }
scap-screencapturekit = { path = "../../../crates/scap-screencapturekit" }
scap-direct3d = { path = "../../../crates/scap-direct3d" }

flume.workspace = true
tracing-subscriber = "0.3.19"
Expand Down
3 changes: 3 additions & 0 deletions apps/desktop/src-tauri/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1856,6 +1856,8 @@ pub async fn run(recording_logging_handle: LoggingHandle) {
recording::list_cameras,
recording::list_capture_windows,
recording::list_capture_displays,
recording::list_displays_with_thumbnails,
recording::list_windows_with_thumbnails,
take_screenshot,
list_audio_devices,
close_recordings_overlay_window,
Expand Down Expand Up @@ -1922,6 +1924,7 @@ pub async fn run(recording_logging_handle: LoggingHandle) {
target_select_overlay::close_target_select_overlays,
target_select_overlay::display_information,
target_select_overlay::get_window_icon,
target_select_overlay::focus_window,
editor_delete_project
])
.events(tauri_specta::collect_events![
Expand Down
Loading
Loading