Skip to content

Commit

Permalink
Merge pull request #55 from voxeet/release/1.7.1
Browse files Browse the repository at this point in the history
Release 1.7.1
  • Loading branch information
yganu authored Jul 5, 2022
2 parents 8f5760d + 4a65d64 commit addb99b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VoxeetUXKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "VoxeetUXKit"
spec.version = "1.7.0"
spec.version = "1.7.1"
spec.summary = "The Voxeet UXKit is a quick way of adding premium audio, video chats, and other supported options."
spec.author = "Voxeet"
spec.homepage = "https://dolby.io"
Expand Down
4 changes: 2 additions & 2 deletions VoxeetUXKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
PRODUCT_BUNDLE_IDENTIFIER = com.voxeet.uxkit;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -637,7 +637,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.7.0;
MARKETING_VERSION = 1.7.1;
PRODUCT_BUNDLE_IDENTIFIER = com.voxeet.uxkit;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,16 @@ extension ConferenceViewController: VTConferenceDelegate {
func streamAdded(participant: VTParticipant, stream: MediaStream) {
// Monkey patch: wait WebRTC media to be started (avoids sound button to blink).
if conferenceStartTimer == nil {
conferenceStartTimer = Timer.scheduledTimer(timeInterval: 1.5, target: self, selector: #selector(conferenceStarted), userInfo: nil, repeats: false)
conferenceStartTimer = Timer.scheduledTimer(
timeInterval: 2,
target: self,
selector: #selector(conferenceStarted),
userInfo: nil,
repeats: false
)
if let conferenceStartTimer = conferenceStartTimer {
RunLoop.current.add(conferenceStartTimer, forMode: .common)
}
}

streamUpdated(participant: participant, stream: stream)
Expand Down
2 changes: 1 addition & 1 deletion VoxeetUXKit/Other/settings.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
<key>UXKitBuild</key>
<string>0</string>
<key>UXKitVersion</key>
<string>1.7.0</string>
<string>1.7.1</string>
</dict>
</plist>

0 comments on commit addb99b

Please sign in to comment.