Skip to content

Commit

Permalink
Merge pull request #15 from HeraShowFeng/v1.2.4_release
Browse files Browse the repository at this point in the history
release for v1.2.4
  • Loading branch information
AstaTus authored Apr 20, 2023
2 parents b121713 + 768896f commit 97df567
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Qplayer2是一款跨平台的播放器SDK,除了基础的播放器能力外,
Platform | Build Status
-------- | ------------
Android | https://github.com/pili-engineering/QPlayer2-Android
IOS | Last Version: 1.2.3
IOS | Last Version: 1.2.4
Windows | 敬请期待
Mac | 敬请期待
### qplayer2-core 功能列表
Expand Down Expand Up @@ -43,7 +43,7 @@ Qplayer2是一款跨平台的播放器SDK,除了基础的播放器能力外,
##### 引入依赖

```groovy
pod 'qplayer2-core', '1.2.3'
pod 'qplayer2-core', '1.2.4'
```


Expand Down
12 changes: 12 additions & 0 deletions ReleaseNote/ReleaseNote-1.2.4.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 1.2.4 ReleaseNote

#### 能力

- 新增VR视频缩放能力


#### 修复问题

- 修复填充模式为FUKLL_SCREEN时,渲染控件为正方形时不生效


2 changes: 1 addition & 1 deletion qplayer2-core-Universal.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |spec|


spec.name = "qplayer2-core"
spec.version = "1.2.2"
spec.version = "1.2.4"
spec.summary = "Pili iOS video player SDK, RTMP, HLS video streaming supported."


Expand Down
2 changes: 1 addition & 1 deletion qplayer2-core.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |spec|


spec.name = "qplayer2-core"
spec.version = "1.2.2"
spec.version = "1.2.4"
spec.summary = "Pili iOS video player SDK, RTMP, HLS video streaming supported."


Expand Down
2 changes: 1 addition & 1 deletion qplayer2demo/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ target 'qplayer2demo' do
pod 'Bugly'
pod 'Masonry', '1.0.1'
#pod 'qplayer2-core', :path => '../'
pod 'qplayer2-core', '1.2.2'
pod 'qplayer2-core', '1.2.4'
end
4 changes: 2 additions & 2 deletions qplayer2demo/qplayer2demo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.2.3;
MARKETING_VERSION = 1.2.4;
PODS_PODFILE_DIR_PATH = "${SRCROOT}/.";
PODS_ROOT = "${SRCROOT}/Pods";
PRODUCT_BUNDLE_IDENTIFIER = com.qiniu.qplayer2demo;
Expand Down Expand Up @@ -776,7 +776,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.2.3;
MARKETING_VERSION = 1.2.4;
PODS_PODFILE_DIR_PATH = "${SRCROOT}/.";
PODS_ROOT = "${SRCROOT}/Pods";
PRODUCT_BUNDLE_IDENTIFIER = com.qiniu.qplayer2demo;
Expand Down
4 changes: 3 additions & 1 deletion qplayer2demo/qplayer2demo/QNDoublePlayerViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ - (void)dealloc {
- (void)viewWillDisAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self.player.controlHandler stop];

[self.player_other.controlHandler stop];

_toastView = nil;
[self.player.controlHandler playerRelease];
self.myRenderView = nil;
Expand Down Expand Up @@ -218,6 +219,7 @@ - (void)setupPlayer_other:(NSArray<QNClassModel*>*)models {
}
- (void)getBack {
[self.player.controlHandler stop];
[self.player_other.controlHandler stop];
[self.navigationController popViewControllerAnimated:YES];
}

Expand Down

0 comments on commit 97df567

Please sign in to comment.