Skip to content

Commit 0e2d88a

Browse files
committed
fix info.plist and deno version in ci
1 parent 568a55f commit 0e2d88a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/desktop_ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v4
2727
- uses: ./.github/actions/pnpm_install
28-
- uses: denoland/setup-deno@v1
28+
- uses: denoland/setup-deno@v2
2929
- run: pnpm -F ui build
3030
- run: pnpm -r typecheck
3131
- run: pnpm -r test

apps/desktop/src-tauri/Info.plist

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSMicrophoneUsageDescription</key>
6+
<string>This app requires access to your microphone to record your voice during the meeting.</string>
7+
<key>NSAudioCaptureUsageDescription</key>
8+
<string>This app requires access to the system audio to record voice from other participants in the meeting.</string>
9+
<key>NSContactsUsageDescription</key>
10+
<string>This app requires contacts access to function properly.</string>
11+
<key>NSCalendarsFullAccessUsageDescription</key>
12+
<string>This app requires access to your calendar to read events.</string>
13+
<key>NSLocalNetworkUsageDescription</key>
14+
<string>This app requires access to your local network to function properly.</string>
15+
</dict>
16+
</plist>

0 commit comments

Comments
 (0)