mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-28 21:32:39 +00:00
d92166f9f6
Some checks are pending
CI / Check Postgres and Protobuf migrations, mergability (push) Waiting to run
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Linux) Build Remote Server (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Docs / Check formatting (push) Waiting to run
Issues found:
* audio does not work well with various set-ups using USB
* switching audio during initial join may leave the client with no audio
at all
* audio streaming is done on the main thread, beachballing certain
set-ups
* worse screenshare quality (seems that there's no dynamic scaling
anymore, compared to the Swift SDK)
This reverts commit 1235d0808e
.
Release Notes:
- N/A
27 lines
921 B
Swift
27 lines
921 B
Swift
// swift-tools-version: 5.5
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LiveKitBridge",
|
|
platforms: [
|
|
.macOS(.v10_15)
|
|
],
|
|
products: [
|
|
// Products define the executables and libraries a package produces, and make them visible to other packages.
|
|
.library(
|
|
name: "LiveKitBridge",
|
|
type: .static,
|
|
targets: ["LiveKitBridge"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/livekit/client-sdk-swift.git", .exact("1.0.12")),
|
|
],
|
|
targets: [
|
|
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
|
// Targets can depend on other targets in this package, and on products in packages this package depends on.
|
|
.target(
|
|
name: "LiveKitBridge",
|
|
dependencies: [.product(name: "LiveKit", package: "client-sdk-swift")]),
|
|
]
|
|
)
|