Skip to content

Commit 5f95e3f

Browse files
committed
Bump to up 1.9.1
1 parent 0dcb5ee commit 5f95e3f

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ GEM
199199
xcpretty (~> 0.3.0)
200200
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
201201
ffi (1.17.0-arm64-darwin)
202-
ffi (1.17.0-x86_64-linux-gnu)
202+
ffi (1.17.0-x86_64-linux)
203203
fourflusher (2.3.1)
204204
fuzzy_match (2.0.4)
205205
gh_inspector (1.1.3)

HaishinKit.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "HaishinKit"
4-
s.version = "1.9.0"
4+
s.version = "1.9.1"
55
s.summary = "Camera and Microphone streaming library via RTMP for iOS, macOS, tvOS and visionOS."
66
s.swift_version = "5.10"
77

HaishinKit.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -2444,7 +2444,7 @@
24442444
"@loader_path/Frameworks",
24452445
);
24462446
MACOSX_DEPLOYMENT_TARGET = 10.15;
2447-
MARKETING_VERSION = 1.9.0;
2447+
MARKETING_VERSION = 1.9.1;
24482448
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
24492449
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
24502450
ONLY_ACTIVE_ARCH = YES;
@@ -2491,7 +2491,7 @@
24912491
"@loader_path/Frameworks",
24922492
);
24932493
MACOSX_DEPLOYMENT_TARGET = 10.15;
2494-
MARKETING_VERSION = 1.9.0;
2494+
MARKETING_VERSION = 1.9.1;
24952495
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
24962496
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu99 gnu++11";
24972497
ONLY_ACTIVE_ARCH = NO;
@@ -2904,7 +2904,7 @@
29042904
"@loader_path/Frameworks",
29052905
);
29062906
MACOSX_DEPLOYMENT_TARGET = 13.0;
2907-
MARKETING_VERSION = 1.9.0;
2907+
MARKETING_VERSION = 1.9.1;
29082908
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
29092909
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20";
29102910
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
@@ -2960,7 +2960,7 @@
29602960
"@loader_path/Frameworks",
29612961
);
29622962
MACOSX_DEPLOYMENT_TARGET = 13.0;
2963-
MARKETING_VERSION = 1.9.0;
2963+
MARKETING_VERSION = 1.9.1;
29642964
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
29652965
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20";
29662966
MTL_FAST_MATH = YES;

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
* Camera and Microphone streaming library via RTMP and SRT for iOS, macOS, tvOS and visionOS.
1010
* README.md contains unreleased content, which can be tested on the main branch.
11-
* [API Documentation](https://docs.haishinkit.com/swift/1.9.0/)
11+
* [API Documentation](https://docs.haishinkit.com/swift/1.9.1/)
1212

1313
## 💖 Sponsors
1414
<p align="center">
@@ -299,15 +299,15 @@ stream.configuration { session in
299299
```
300300

301301
### 🔊 Audio
302-
#### [Capture](https://shogo4405.github.io/HaishinKit.swift/Classes/IOAudioCaptureUnit.html)
302+
#### [Capture][https://docs.haishinkit.com/swift/1.9.1/Classes/IOAudioCaptureUnit.html)
303303
Specifies the capture capture settings.
304304
```swift
305305
let front = AVCaptureDevice.default(for: .audio)
306306
stream.attachAudio(front, track: 0) { audioUnit, error in
307307
}
308308
```
309309

310-
#### [AudioMixerSettings](https://shogo4405.github.io/HaishinKit.swift/Structs/IOAudioMixerSettings.html)
310+
#### [AudioMixerSettings](https://docs.haishinkit.com/swift/1.9.1/Structs/IOAudioMixerSettings.html)
311311
If you want to mix multiple audio tracks, please enable the feature flag.
312312
```swift
313313
stream.isMultiTrackAudioMixingEnabled = true
@@ -332,7 +332,7 @@ stream.audioMixerSettings.tracks = [
332332
]
333333
```
334334

335-
#### [AudioCodecSettings](https://shogo4405.github.io/HaishinKit.swift/Structs/AudioCodecSettings.html)
335+
#### [AudioCodecSettings](https://docs.haishinkit.com/swift/1.9.1/Structs/AudioCodecSettings.html)
336336
```swift
337337
/// Specifies the bitRate of audio output.
338338
stream.audioSettings.bitrate = 64 * 1000
@@ -343,7 +343,7 @@ stream.audioSettings.downmix = true
343343
```
344344

345345
### 🎥 Video
346-
#### [Capture](https://shogo4405.github.io/HaishinKit.swift/Classes/IOVideoCaptureUnit.html)
346+
#### [Capture](https://docs.haishinkit.com/swift/1.9.1/Classes/IOVideoCaptureUnit.html)
347347
Specifies the video capture settings.
348348
```swift
349349
let front = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .front)
@@ -354,7 +354,7 @@ stream.attachCamera(front, track: 0) { videoUnit, error in
354354
}
355355
```
356356

357-
#### [VideoMixerSettings](https://shogo4405.github.io/HaishinKit.swift/Structs/IOVideoMixerSettings.html)
357+
#### [VideoMixerSettings](https://docs.haishinkit.com/swift/1.9.1/Structs/IOVideoMixerSettings.html)
358358
```swift
359359
/// Specifies the image rendering mode.
360360
stream.videoMixerSettings.mode = .passthrough or .offscreen
@@ -364,7 +364,7 @@ stream.videoMixerSettings.isMuted = false
364364
stream.videoMixerSettings.mainTrack = 0
365365
```
366366

367-
#### [VideoCodecSettings](https://shogo4405.github.io/HaishinKit.swift/Structs/VideoCodecSettings.html)
367+
#### [VideoCodecSettings](https://docs.haishinkit.com/swift/1.9.1/Structs/VideoCodecSettings.html)
368368
```swift
369369
stream.videoSettings = .init(
370370
videoSize: .init(width: 854, height: 480),

Sources/IO/IOStream.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,8 @@ open class IOStream: NSObject {
336336
///
337337
/// You can perform multi-microphone capture by specifying as follows on macOS. Unfortunately, it seems that only one microphone is available on iOS.
338338
/// ```
339-
/// FeatureUtil.setEnabled(for: .multiTrackAudioMixing, isEnabled: true)
339+
/// stream.isMultiTrackAudioMixingEnabled = true
340+
///
340341
/// var audios = AVCaptureDevice.devices(for: .audio)
341342
/// if let device = audios.removeFirst() {
342343
/// stream.attachAudio(device, track: 0)

0 commit comments

Comments
 (0)