From 7c051516d8783754414bff4a2624a463593b996c Mon Sep 17 00:00:00 2001 From: Filipi Fuchter Date: Wed, 15 Jan 2025 09:57:57 -0300 Subject: [PATCH] Using PipecatClient version 0.3.2 --- .../SimpleChatbot.xcodeproj/project.pbxproj | 18 +++++++++--------- .../xcshareddata/swiftpm/Package.resolved | 13 ++++++------- .../model/CallContainerModel.swift | 6 +++--- .../model/MockCallContainerModel.swift | 2 +- .../views/settings/SettingsView.swift | 2 +- 5 files changed, 20 insertions(+), 21 deletions(-) diff --git a/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.pbxproj b/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.pbxproj index 61acc143b..0c770e711 100644 --- a/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.pbxproj +++ b/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.pbxproj @@ -15,6 +15,7 @@ 90031FC22C616EE900408370 /* SimpleChatbotUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90031FC12C616EE900408370 /* SimpleChatbotUITests.swift */; }; 90031FC42C616EE900408370 /* SimpleChatbotUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90031FC32C616EE900408370 /* SimpleChatbotUITestsLaunchTests.swift */; }; 90031FDC2C6D5DD700408370 /* ToastModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90031FDB2C6D5DD700408370 /* ToastModifier.swift */; }; + 907C98842D37E6AF0079441F /* PipecatClientIOSDaily in Frameworks */ = {isa = PBXBuildFile; productRef = 907C98832D37E6AF0079441F /* PipecatClientIOSDaily */; }; 90ABB98E2C735ED6000D9CC7 /* MeetingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90ABB98D2C735ED6000D9CC7 /* MeetingView.swift */; }; 90ABB9902C736A8B000D9CC7 /* WaveformView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90ABB98F2C736A8B000D9CC7 /* WaveformView.swift */; }; 90ABB9932C73820D000D9CC7 /* MicrophoneView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90ABB9922C73820D000D9CC7 /* MicrophoneView.swift */; }; @@ -24,7 +25,6 @@ 90ABB9A32C74E1CE000D9CC7 /* SettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90ABB9A22C74E1CE000D9CC7 /* SettingsView.swift */; }; 90ABB9A62C74EA8A000D9CC7 /* SettingsPreference.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90ABB9A52C74EA8A000D9CC7 /* SettingsPreference.swift */; }; 90ABB9A82C74EAB1000D9CC7 /* SettingsManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90ABB9A72C74EAB1000D9CC7 /* SettingsManager.swift */; }; - 90B6AB312D1359ED00DFF1D9 /* PipecatClientIOSDaily in Frameworks */ = {isa = PBXBuildFile; productRef = 90B6AB302D1359ED00DFF1D9 /* PipecatClientIOSDaily */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -73,7 +73,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 90B6AB312D1359ED00DFF1D9 /* PipecatClientIOSDaily in Frameworks */, + 907C98842D37E6AF0079441F /* PipecatClientIOSDaily in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -218,7 +218,7 @@ ); name = SimpleChatbot; packageProductDependencies = ( - 90B6AB302D1359ED00DFF1D9 /* PipecatClientIOSDaily */, + 907C98832D37E6AF0079441F /* PipecatClientIOSDaily */, ); productName = SimpleChatbot; productReference = 90031FA32C616EE700408370 /* SimpleChatbot.app */; @@ -293,7 +293,7 @@ ); mainGroup = 90031F9A2C616EE700408370; packageReferences = ( - 90B6AB2F2D1359ED00DFF1D9 /* XCRemoteSwiftPackageReference "pipecat-client-ios-daily" */, + 907C98822D37E6AF0079441F /* XCRemoteSwiftPackageReference "pipecat-client-ios-daily" */, ); productRefGroup = 90031FA42C616EE700408370 /* Products */; projectDirPath = ""; @@ -682,20 +682,20 @@ /* End XCConfigurationList section */ /* Begin XCRemoteSwiftPackageReference section */ - 90B6AB2F2D1359ED00DFF1D9 /* XCRemoteSwiftPackageReference "pipecat-client-ios-daily" */ = { + 907C98822D37E6AF0079441F /* XCRemoteSwiftPackageReference "pipecat-client-ios-daily" */ = { isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/pipecat-ai/pipecat-client-ios-daily"; + repositoryURL = "https://github.com/pipecat-ai/pipecat-client-ios-daily/"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 0.3.1; + minimumVersion = 0.3.2; }; }; /* End XCRemoteSwiftPackageReference section */ /* Begin XCSwiftPackageProductDependency section */ - 90B6AB302D1359ED00DFF1D9 /* PipecatClientIOSDaily */ = { + 907C98832D37E6AF0079441F /* PipecatClientIOSDaily */ = { isa = XCSwiftPackageProductDependency; - package = 90B6AB2F2D1359ED00DFF1D9 /* XCRemoteSwiftPackageReference "pipecat-client-ios-daily" */; + package = 907C98822D37E6AF0079441F /* XCRemoteSwiftPackageReference "pipecat-client-ios-daily" */; productName = PipecatClientIOSDaily; }; /* End XCSwiftPackageProductDependency section */ diff --git a/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 9ce362a00..9cdcbc713 100644 --- a/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/examples/simple-chatbot/client/ios/SimpleChatbot.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,5 +1,4 @@ { - "originHash" : "72945fe9f3d71a3b546d5d2df153345b4dc9e72c00b2fda349508223e1a88501", "pins" : [ { "identity" : "daily-client-ios", @@ -15,19 +14,19 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pipecat-ai/pipecat-client-ios.git", "state" : { - "revision" : "d2d9946cf93f1e89290c724caa1631cffa439524", - "version" : "0.3.1" + "revision" : "c679512e367002a1a67da85d503fec72d9b17191", + "version" : "0.3.2" } }, { "identity" : "pipecat-client-ios-daily", "kind" : "remoteSourceControl", - "location" : "https://github.com/pipecat-ai/pipecat-client-ios-daily", + "location" : "https://github.com/pipecat-ai/pipecat-client-ios-daily/", "state" : { - "revision" : "cec4beef8762604c9a9b5ec760081ea2a0a697bf", - "version" : "0.3.1" + "revision" : "a337fe6642c52376d2f90eafcb965f5be772ce72", + "version" : "0.3.2" } } ], - "version" : 3 + "version" : 2 } diff --git a/examples/simple-chatbot/client/ios/SimpleChatbot/model/CallContainerModel.swift b/examples/simple-chatbot/client/ios/SimpleChatbot/model/CallContainerModel.swift index e638f088c..e6ba62654 100644 --- a/examples/simple-chatbot/client/ios/SimpleChatbot/model/CallContainerModel.swift +++ b/examples/simple-chatbot/client/ios/SimpleChatbot/model/CallContainerModel.swift @@ -1,7 +1,7 @@ import SwiftUI -import RTVIClientIOSDaily -import RTVIClientIOS +import PipecatClientIOSDaily +import PipecatClientIOS class CallContainerModel: ObservableObject { @@ -26,7 +26,7 @@ class CallContainerModel: ObservableObject { init() { // Changing the log level - RTVIClientIOS.setLogLevel(.warn) + PipecatClientIOS.setLogLevel(.warn) } @MainActor diff --git a/examples/simple-chatbot/client/ios/SimpleChatbot/model/MockCallContainerModel.swift b/examples/simple-chatbot/client/ios/SimpleChatbot/model/MockCallContainerModel.swift index c148f9a2c..9d1a8b3be 100644 --- a/examples/simple-chatbot/client/ios/SimpleChatbot/model/MockCallContainerModel.swift +++ b/examples/simple-chatbot/client/ios/SimpleChatbot/model/MockCallContainerModel.swift @@ -1,5 +1,5 @@ import SwiftUI -import RTVIClientIOS +import PipecatClientIOS class MockCallContainerModel: CallContainerModel { diff --git a/examples/simple-chatbot/client/ios/SimpleChatbot/views/settings/SettingsView.swift b/examples/simple-chatbot/client/ios/SimpleChatbot/views/settings/SettingsView.swift index d161b2c55..093decb17 100644 --- a/examples/simple-chatbot/client/ios/SimpleChatbot/views/settings/SettingsView.swift +++ b/examples/simple-chatbot/client/ios/SimpleChatbot/views/settings/SettingsView.swift @@ -1,5 +1,5 @@ import SwiftUI -import RTVIClientIOS +import PipecatClientIOS struct SettingsView: View {