Skip to content

Commit

Permalink
Merge pull request #111 from 100mslive/1.3.0Release
Browse files Browse the repository at this point in the history
1.3.0 Release
  • Loading branch information
gzerad authored Nov 16, 2023
2 parents e21056d + ab731c9 commit 19cb77d
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 73 deletions.
86 changes: 43 additions & 43 deletions Example/HMSSDKExample.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

43 changes: 23 additions & 20 deletions Example/HMSSDKExample/Meeting/Menus/RoomStateViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,13 @@ class RoomStateViewController: FormViewController {
}

func setupBrowserRecording() {
guard room.browserRecordingState.running || room.browserRecordingState.initialising else { return }

let section = Section("Browser recording")

if room.browserRecordingState.initialising {
section <<< LabelRow() {
$0.title = "Initialising"
}
let state = room.browserRecordingState.state
section <<< LabelRow() {
$0.title = "State: \(state.displayString())"
}

if let startDate = room.browserRecordingState.startedAt {
section <<< LabelRow() {
$0.title = "Started at: \(startDate)"
Expand All @@ -79,10 +76,13 @@ class RoomStateViewController: FormViewController {
}

func setupServerRecording() {
guard room.serverRecordingState.running else { return }

let section = Section("Server recording")

let state = room.serverRecordingState.state
section <<< LabelRow() {
$0.title = "State: \(state.displayString())"
}

if let startDate = room.serverRecordingState.startedAt {
section <<< LabelRow() {
$0.title = "Started at: \(startDate)"
Expand All @@ -97,17 +97,13 @@ class RoomStateViewController: FormViewController {
}

func setupHLSRecording() {
guard room.hlsRecordingState.running else { return }

let section = Section("HLS recording")


let state = room.hlsRecordingState.state
section <<< LabelRow() {
$0.title = "Single file per layer: \(room.hlsRecordingState.singleFilePerLayer ? "ON" : "OFF")"
$0.title = "State: \(state.displayString())"
}

section <<< LabelRow() {
$0.title = "Enable VOD: \(room.hlsRecordingState.enableVOD ? "ON" : "OFF")"
}

if let startDate = room.hlsRecordingState.startedAt {
section <<< LabelRow() {
Expand All @@ -125,10 +121,13 @@ class RoomStateViewController: FormViewController {
}

func setupRTMPStreaming() {
guard room.rtmpStreamingState.running else { return }

let section = Section("RTMP")

let state = room.rtmpStreamingState.state
section <<< LabelRow() {
$0.title = "State: \(state.displayString())"
}

if let startDate = room.rtmpStreamingState.startedAt {
section <<< LabelRow() {
$0.title = "Started at: \(startDate)"
Expand All @@ -143,9 +142,13 @@ class RoomStateViewController: FormViewController {
}

func setupHLSStreaming() {
guard room.hlsStreamingState.running else { return }

let section = Section("HLS")

let state = room.hlsStreamingState.state
section <<< LabelRow() {
$0.title = "State: \(state.displayString())"
}

var count = 1
for variant in room.hlsStreamingState.variants {
section <<< TextAreaRow() {
Expand Down
2 changes: 1 addition & 1 deletion Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ platform :ios, '13.0'

target 'HMSSDKExample' do
use_frameworks!
pod 'HMSSDK', '1.2.1'
pod 'HMSSDK', '1.3.0'
pod 'HMSHLSPlayerSDK', '0.0.2'
pod 'SwiftyBeaver', '1.9.5'
pod 'Zip', '2.1.2'
Expand Down
8 changes: 4 additions & 4 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PODS:
- HMSBroadcastExtensionSDK (1.0.0)
- HMSHLSPlayerSDK (0.0.2):
- HMSAnalyticsSDK (= 0.0.2)
- HMSSDK (1.2.0):
- HMSSDK (1.2.1):
- HMSAnalyticsSDK (= 0.0.2)
- HMSWebRTC (= 1.0.5116)
- HMSWebRTC (1.0.5116)
Expand All @@ -16,7 +16,7 @@ DEPENDENCIES:
- Eureka (= 5.4.0)
- HMSBroadcastExtensionSDK (= 1.0.0)
- HMSHLSPlayerSDK (= 0.0.2)
- HMSSDK (= 1.2.0)
- HMSSDK (= 1.2.1)
- SwiftyBeaver (= 1.9.5)
- SwiftyGif
- Zip (= 2.1.2)
Expand All @@ -38,12 +38,12 @@ SPEC CHECKSUMS:
HMSAnalyticsSDK: 4d2a88a729b1eb42f3d25f217c28937ec318a5b7
HMSBroadcastExtensionSDK: 0757d80497fddec3952858eb14892fb274f9f3c3
HMSHLSPlayerSDK: 6a54ad4d12f3dc2270d1ecd24019d71282a4f6a3
HMSSDK: 010fdd904b8d221bb297864800503132fd721d9e
HMSSDK: 6e176238d9972b78b7831398bbfefc3fddadad55
HMSWebRTC: ae54e9dd91b869051b283b43b14f57d43b7bf8e1
SwiftyBeaver: 84069991dd5dca07d7069100985badaca7f0ce82
SwiftyGif: 93a1cc87bf3a51916001cf8f3d63835fb64c819f
Zip: b3fef584b147b6e582b2256a9815c897d60ddc67

PODFILE CHECKSUM: a4546d7025ff6af1b1be6bcf5d3e77639267ba70
PODFILE CHECKSUM: 35bf0417e7bfc9cf991d30cd6a63731ec8bfe0cf

COCOAPODS: 1.12.1
6 changes: 3 additions & 3 deletions HMSSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HMSSDK'
s.version = '1.2.1'
s.version = '1.3.0'
s.summary = 'HMS Videoconferencing iOS SDK'

s.description = <<-DESC
Expand All @@ -10,8 +10,8 @@ TODO: Add long description of the pod here.
s.homepage = 'https://github.com/100mslive/100ms-ios-sdk/'
s.license = { :type => 'MIT'}
s.author = { 'Dmitry Fedoseyev' => '[email protected]', 'Yogesh Singh' => '[email protected]', 'Pawan Dixit' => '[email protected]'}
s.source = { :http => 'https://github.com/100mslive/100ms-ios-sdk/releases/download/1.2.1/HMSSDK.xcframework.zip',
:sha256 => '20e6ff4c7249e914446f1517ec14a8a0cc9422fc83c91b23bdf3452c684271c2'
s.source = { :http => 'https://github.com/100mslive/100ms-ios-sdk/releases/download/1.3.0/HMSSDK.xcframework.zip',
:sha256 => '4b779af0406a0bc8c1bd7960600c822c0dca083e911e44bc64084f3c0a8addcf'
}
s.ios.deployment_target = '12.0'
s.vendored_frameworks = 'HMSSDK.xcframework'
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "HMSSDK",
url: "https://github.com/100mslive/100ms-ios-sdk/releases/download/1.2.1/HMSSDK.xcframework.zip",
checksum: "20e6ff4c7249e914446f1517ec14a8a0cc9422fc83c91b23bdf3452c684271c2"
url: "https://github.com/100mslive/100ms-ios-sdk/releases/download/1.3.0/HMSSDK.xcframework.zip",
checksum: "4b779af0406a0bc8c1bd7960600c822c0dca083e911e44bc64084f3c0a8addcf"
),
.binaryTarget(
name: "WebRTC",
Expand Down

0 comments on commit 19cb77d

Please sign in to comment.