You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Single instance, fix titlebars, better Windows support (#169)
* adjust editor titlebar height, and radius incosistency in prev-recordings items
* Open in Explorer, skip taskbar for prev-recordings
* Add single-instance plugin, try to not open terminal when rendering in release mode
* Don't show startup permissions screen on Windows
* Adjust traffic lights position on Editor
* Actually stop the terminal opening when rendering on Windows
* Hide macOS specific setting on Windows
* Add installer banners
* Fix nsis and wix banners
* Cleanup for PR
* Adjust nsis banners and add installer icon.
label: "Upload individual recording files when creating shareable link",
14
-
description:
15
-
'Warning: this will cause shareable link uploads to become significantly slower, since all individual recording files will be uploaded. Shows "Download Assets" button in Share page.',
16
-
},
17
-
{
18
-
key: "openEditorAfterRecording",
19
-
label: "Open editor automatically after recording stops",
20
-
description:
21
-
"The editor will be shown immediately after you finish recording.",
22
-
},
23
-
{
24
-
key: "hideDockIcon",
25
-
label: "Hide dock icon",
26
-
description:
27
-
"The dock icon will be hidden when there are no windows available to close.",
28
-
},
29
-
{
30
-
key: "autoCreateShareableLink",
31
-
label: "Cap Pro: Automatically create shareable link after recording",
32
-
description:
33
-
"When enabled, a shareable link will be created automatically after stopping the recording. You'll be redirected to the URL while the upload continues in the background.",
34
-
},
35
-
{
36
-
key: "disableAutoOpenLinks",
37
-
label: "Cap Pro: Disable automatic link opening",
38
-
description:
39
-
"When enabled, Cap will not automatically open links in your browser (e.g. after creating a shareable link).",
40
-
},
41
-
{
42
-
key: "enableNotifications",
43
-
label: "Enable System Notifications",
44
-
description:
45
-
"Show system notifications for events like copying to clipboard, saving files, and more. You may need to manually allow Cap access via your system's notification settings.",
46
-
requiresPermission: true,
47
-
},
48
-
]satisfiesArray<{
11
+
constsettingsList: Array<{
49
12
key: keyofGeneralSettingsStore;
50
13
label: string;
51
14
description: string;
15
+
platforms?: OsType[],
52
16
requiresPermission?: boolean;
53
-
}>;
17
+
}>=[
18
+
{
19
+
key: "uploadIndividualFiles",
20
+
label: "Upload individual recording files when creating shareable link",
21
+
description:
22
+
'Warning: this will cause shareable link uploads to become significantly slower, since all individual recording files will be uploaded. Shows "Download Assets" button in Share page.',
23
+
},
24
+
{
25
+
key: "openEditorAfterRecording",
26
+
label: "Open editor automatically after recording stops",
27
+
description:
28
+
"The editor will be shown immediately after you finish recording.",
29
+
},
30
+
{
31
+
key: "hideDockIcon",
32
+
label: "Hide dock icon",
33
+
platforms: ["macos"],
34
+
description:
35
+
"The dock icon will be hidden when there are no windows available to close.",
36
+
},
37
+
{
38
+
key: "autoCreateShareableLink",
39
+
label: "Cap Pro: Automatically create shareable link after recording",
40
+
description:
41
+
"When enabled, a shareable link will be created automatically after stopping the recording. You'll be redirected to the URL while the upload continues in the background.",
42
+
},
43
+
{
44
+
key: "disableAutoOpenLinks",
45
+
label: "Cap Pro: Disable automatic link opening",
46
+
description:
47
+
"When enabled, Cap will not automatically open links in your browser (e.g. after creating a shareable link).",
48
+
},
49
+
{
50
+
key: "enableNotifications",
51
+
label: "Enable System Notifications",
52
+
description:
53
+
"Show system notifications for events like copying to clipboard, saving files, and more. You may need to manually allow Cap access via your system's notification settings.",
0 commit comments