Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions scripts/build-desktop-artifact.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -678,6 +678,11 @@ it.layer(NodeServices.layer)("build-desktop-artifact", (it) => {
assert.deepStrictEqual(win.files, DESKTOP_FILE_EXCLUSIONS);
assert.deepStrictEqual(winWithoutWslRuntime.files, win.files);
assert.notProperty(mac.mac as Record<string, unknown>, "sign");
assert.propertyVal(
(mac.mac as Record<string, unknown>).extendInfo as Record<string, unknown>,
"NSLocalNetworkUsageDescription",
"T3 Code connects to devices on your local network for remote environments and commands run by terminals and coding agents.",
);
for (const config of [linux, win]) {
assert.deepStrictEqual(config.electronLanguages, DESKTOP_ELECTRON_LANGUAGES);
}
Expand Down
2 changes: 2 additions & 0 deletions scripts/build-desktop-artifact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2690,6 +2690,8 @@ export const createBuildConfig = Effect.fn("createBuildConfig")(function* (
icon: "icon.icns",
category: "public.app-category.developer-tools",
extendInfo: {
NSLocalNetworkUsageDescription:
"T3 Code connects to devices on your local network for remote environments and commands run by terminals and coding agents.",
Comment thread
coderabbitai[bot] marked this conversation as resolved.
NSScreenCaptureUsageDescription:
"T3 Code captures the active window when you use the window capture shortcut.",
},
Expand Down
Loading