diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 787e600..5d7c2fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: fail-fast: false matrix: include: - - platform: "iOS Simulator,name=iPhone 17 Pro,OS=26.4" + - platform: "iOS Simulator,name=iPhone 17 Pro,OS=26.4.1" - platform: "macOS" steps: - uses: actions/checkout@v6 diff --git a/LiveKitExample.xcodeproj/project.pbxproj b/LiveKitExample.xcodeproj/project.pbxproj index f9a9476..12545a5 100644 --- a/LiveKitExample.xcodeproj/project.pbxproj +++ b/LiveKitExample.xcodeproj/project.pbxproj @@ -646,7 +646,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 20260410; + CURRENT_PROJECT_VERSION = 20260504; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = dwarf; DEVELOPMENT_TEAM = 76TVFCUKK7; @@ -668,7 +668,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MARKETING_VERSION = 2.13.0; + MARKETING_VERSION = 2.14.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -715,7 +715,7 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 20260410; + CURRENT_PROJECT_VERSION = 20260504; DEAD_CODE_STRIPPING = YES; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = 76TVFCUKK7; @@ -732,7 +732,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MARKETING_VERSION = 2.13.0; + MARKETING_VERSION = 2.14.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; STRING_CATALOG_GENERATE_SYMBOLS = YES; @@ -797,7 +797,7 @@ repositoryURL = "https://github.com/livekit/client-sdk-swift"; requirement = { kind = exactVersion; - version = 2.13.0; + version = 2.14.0; }; }; B5C2EF142D0114C800FAC766 /* XCRemoteSwiftPackageReference "components-swift" */ = { diff --git a/LiveKitExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/LiveKitExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 38d5e0c..ffcfb28 100644 --- a/LiveKitExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/LiveKitExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -6,8 +6,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/livekit/client-sdk-swift", "state" : { - "revision" : "f70911172031fe40042266ed3bc35171224c2ef0", - "version" : "2.13.0" + "revision" : "0e78974984523df0a424e63811b2623e0972746d", + "version" : "2.14.0" } }, { @@ -33,8 +33,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/livekit/livekit-uniffi-xcframework.git", "state" : { - "revision" : "61229f4032131311b997ddb1bc1cb8f5afbe30c8", - "version" : "0.0.5" + "revision" : "7c161254ce7cd55debc48023f69a917076b12a26", + "version" : "0.0.6" } }, { @@ -60,8 +60,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/livekit/webrtc-xcframework.git", "state" : { - "revision" : "f6017e189972b86f90e0ec406b1629828bc75748", - "version" : "144.7559.3" + "revision" : "29ba04430bca89c866d3eda2d08b7ca653607a66", + "version" : "144.7559.4" } } ], diff --git a/Multiplatform/Views/RoomView.swift b/Multiplatform/Views/RoomView.swift index fe49e31..16a01fe 100644 --- a/Multiplatform/Views/RoomView.swift +++ b/Multiplatform/Views/RoomView.swift @@ -122,7 +122,7 @@ struct RoomView: View { func content(geometry: GeometryProxy) -> some View { VStack { if showConnectionTime { - Text("Connected (\([room.serverRegion, room.serverNodeId, "\(String(describing: room.connectStopwatch.total().rounded(to: 2)))s"].compactMap { $0 }.joined(separator: ", ")))") + Text("Connected (\([room.serverRegion, room.serverNodeId, "\(String(describing: room.connectSpan?.total().rounded(to: 2)))s"].compactMap { $0 }.joined(separator: ", ")))") .multilineTextAlignment(.center) .foregroundColor(.white) .padding()