Skip to content

Commit

Permalink
Merge branch 'release0.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
befovy committed Aug 17, 2019
2 parents 2f55858 + 2efa853 commit 773404a
Show file tree
Hide file tree
Showing 8 changed files with 289 additions and 9 deletions.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
tag next
--------------------------------


tag f0.3.4
--------------------------------
- ffmpeg: add rtsp support
- ios: remove armv7s

tag f0.3.3
--------------------------------
Expand Down
4 changes: 2 additions & 2 deletions android/ijkplayer/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=0.3.3
VERSION_CODE=000303
VERSION_NAME=0.3.4
VERSION_CODE=000304
GROUP=com.befovy.fijkplayer

# http://central.sonatype.org/pages/requirements.html
Expand Down
1 change: 0 additions & 1 deletion config/module.sh

This file was deleted.

275 changes: 275 additions & 0 deletions config/module.sh

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion init-android-openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#IJK_OPENSSL_UPSTREAM=https://github.com/openssl/openssl
IJK_OPENSSL_UPSTREAM=https://github.com/Bilibili/openssl.git
IJK_OPENSSL_FORK=https://github.com/Bilibili/openssl.git
IJK_OPENSSL_COMMIT=OpenSSL_1_0_2n
IJK_OPENSSL_COMMIT=b34cf4eb61 #tag: OpenSSL_1_0_2r
IJK_OPENSSL_LOCAL_REPO=extra/openssl

set -e
Expand Down
2 changes: 1 addition & 1 deletion init-ios-openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

IJK_OPENSSL_UPSTREAM=https://github.com/openssl/openssl
IJK_OPENSSL_FORK=https://github.com/Bilibili/openssl.git
IJK_OPENSSL_COMMIT=OpenSSL_1_0_2n
IJK_OPENSSL_COMMIT=b34cf4eb61 #tag: OpenSSL_1_0_2r
IJK_OPENSSL_LOCAL_REPO=extra/openssl

set -e
Expand Down
4 changes: 2 additions & 2 deletions ios/CocoaPodsPub/FIJKPlayer.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
#

spec.name = "FIJKPlayer"
spec.version = "0.3.3"
spec.version = "0.3.4"
spec.summary = "ijkplayer iOS video player SDK"

spec.author = { "befovy" => "[email protected]" }
Expand Down Expand Up @@ -75,7 +75,7 @@ Pod::Spec.new do |spec|
# Supports git, hg, bzr, svn and HTTP.
#

spec.source = { :http => "https://github.com/befovy/ijkplayer/releases/download/f0.3.3/FIJKPlayer.tar.gz" }
spec.source = { :http => "https://github.com/befovy/ijkplayer/releases/download/f0.3.4/FIJKPlayer.tar.gz" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ - (void)onClickPlayButton {

if ([scheme isEqualToString:@"http"]
|| [scheme isEqualToString:@"https"]
|| [scheme isEqualToString:@"rtsp"]
|| [scheme isEqualToString:@"rtmp"]) {
[IJKVideoViewController presentFromViewController:self withTitle:[NSString stringWithFormat:@"URL: %@", url] URL:url completion:^{
// [self.navigationController popViewControllerAnimated:NO];
Expand Down
4 changes: 2 additions & 2 deletions ios/IJKMediaDemo/IJKMediaDemo/IJKMediaDemo-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.3.3</string>
<string>0.3.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>000303</string>
<string>000304</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIFileSharingEnabled</key>
Expand Down

0 comments on commit 773404a

Please sign in to comment.