Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[env]
MACOSX_DEPLOYMENT_TARGET = { value = "13.0", force = true }
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,6 @@ result
.direnv
## auto-generated pre-commit config
.pre-commit-config.yaml

# Local deepwork state
.slim/deepwork/
3 changes: 3 additions & 0 deletions broadcast-extension-ios/SampleHandler.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import LiveKit

final class SampleHandler: LKSampleHandler {}
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ run = [
[tasks."tauri:setup:macos"]
description = "Install Xcode"
confirm = { message = "Install Xcode? (required for Tauri)", default = "no" }
run = "xcode-select --print-path >/dev/null 2>&1 || xcode-select --install"
run = '''developer_dir="${DEVELOPER_DIR:-$(xcode-select --print-path 2>/dev/null)}" && test -d "$developer_dir/Platforms/MacOSX.platform/Developer/SDKs" || { echo "Full Xcode with the macOS SDK is required. Install Xcode or set DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer (no sudo required)." >&2; exit 1; }'''

[tasks."tauri:setup:ios"]
description = "Set up iOS Xcode project"
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"typecheck": "tsc",
"tauri": "tauri",
"tauri": "node scripts/tauri.js",
"tauri:cef": "node scripts/tauri.js cef",
"tauri:wry": "node scripts/tauri.js wry",
"test": "vitest",
Expand Down Expand Up @@ -46,6 +46,7 @@
"@choochmeque/tauri-plugin-sharekit-api": "0.4.0-rc.5",
"@fontsource-variable/nunito": "5.2.7",
"@fontsource/space-mono": "5.2.9",
"@livekit/components-react": "2.9.23",
"@lottiefiles/dotlottie-react": "^0.12.0",
"@noble/hashes": "^2.2.0",
"@phosphor-icons/react": "^2.1.10",
Expand Down Expand Up @@ -97,6 +98,7 @@
"leaflet": "1.9.4",
"linkify-react": "^4.3.3",
"linkifyjs": "^4.3.3",
"livekit-client": "2.21.0",
"marked": "^18.0.5",
"matrix-js-sdk": "42.0.0",
"matrix-widget-api": "^1.17.0",
Expand All @@ -116,6 +118,7 @@
"slate-history": "^0.113.1",
"slate-react": "^0.125.1",
"tauri-plugin-android-fs-api": "28.4.0",
"tauri-plugin-call-lifecycle-api": "file:src-tauri/plugins/tauri-plugin-call-lifecycle",
"ua-parser-js": "^2.0.10",
"virtua": "^0.49.2",
"workbox-precaching": "^7.4.1"
Expand Down
Loading
Loading