Skip to content

Commit

Permalink
prepare release 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CarGuo committed Dec 1, 2020
1 parent a1abe4a commit 053178b
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 44 deletions.
49 changes: 17 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,24 @@
#### A、直接引入
```
//完整版引入
implementation 'com.shuyu:GSYVideoPlayer:7.1.8'
implementation 'com.shuyu:GSYVideoPlayer:8.0.0'
```

#### B、添加java和你想要的so支持:

```
implementation 'com.shuyu:gsyVideoPlayer-java:7.1.8'
implementation 'com.shuyu:gsyVideoPlayer-java:8.0.0'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.1.8'
implementation 'com.shuyu:GSYVideoPlayer-exo2:8.0.0'
//根据你的需求ijk模式的so
implementation 'com.shuyu:gsyVideoPlayer-armv5:7.1.8'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:7.1.8'
implementation 'com.shuyu:gsyVideoPlayer-arm64:7.1.8'
implementation 'com.shuyu:gsyVideoPlayer-x64:7.1.8'
implementation 'com.shuyu:gsyVideoPlayer-x86:7.1.8'
implementation 'com.shuyu:gsyVideoPlayer-armv5:8.0.0'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:8.0.0'
implementation 'com.shuyu:gsyVideoPlayer-arm64:8.0.0'
implementation 'com.shuyu:gsyVideoPlayer-x64:8.0.0'
implementation 'com.shuyu:gsyVideoPlayer-x86:8.0.0'
```

Expand All @@ -81,13 +81,13 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。

```
implementation 'com.shuyu:gsyVideoPlayer-java:7.1.8'
implementation 'com.shuyu:gsyVideoPlayer-java:8.0.0'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.1.8'
implementation 'com.shuyu:GSYVideoPlayer-exo2:8.0.0'
//更多ijk的编码支持
implementation 'com.shuyu:gsyVideoPlayer-ex_so:7.1.8'
implementation 'com.shuyu:gsyVideoPlayer-ex_so:8.0.0'
```

Expand Down Expand Up @@ -206,6 +206,12 @@ ExoSourceManager.setExoMediaSourceInterceptListener(new ExoMediaSourceInterceptL

## 五、近期版本


## 8.0.0 (2020-12-01)

* fix #3040 CommonUtil 获取网络信息空指针异常
* update ijk to FFMPEG 4.0

## 7.1.8 (2020-10-26)

* update support exoplayer 2.12.1
Expand Down Expand Up @@ -241,27 +247,6 @@ ExoSourceManager.setExoMediaSourceInterceptListener(new ExoMediaSourceInterceptL
});
```


## 7.1.5 (2020-07-30)

* fix #2625 add WeakReference<Activity>
* fix auto full issue
* fix #2813#2753#2766


## 7.1.4 (2020-05-14)

* fix #2719 support Exo User-Agent
* fix #2559
* update ex_so lib
* fix proxy cache support Android Q
* proxy cache skip ssl error
* add ProxyCacheManager support DEFAULT_MAX_SIZE
* add ProxyCacheManager FileNameGenerator support custom cache file name
* add touchLongPress Api



### 非 androidx 版本为 6.0.3 以下版本。更多兼容版本请查阅版本更新。

### 更多版本请查阅:[版本更新说明](https://github.com/CarGuo/GSYVideoPlayer/blob/master/doc/UPDATE_VERSION.md)
Expand Down
22 changes: 11 additions & 11 deletions doc/DEPENDENCIES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@
#### A、直接引入
```
//完整版引入
implementation 'com.shuyu:GSYVideoPlayer:7.1.2'
implementation 'com.shuyu:GSYVideoPlayer:8.0.0'
```

#### B、添加java和你想要的so支持:

```
implementation 'com.shuyu:gsyVideoPlayer-java:7.1.2'
implementation 'com.shuyu:gsyVideoPlayer-java:8.0.0'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.1.2'
implementation 'com.shuyu:GSYVideoPlayer-exo2:8.0.0'
//根据你的需求ijk模式的so
implementation 'com.shuyu:gsyVideoPlayer-armv5:7.1.2'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:7.1.2'
implementation 'com.shuyu:gsyVideoPlayer-arm64:7.1.2'
implementation 'com.shuyu:gsyVideoPlayer-x64:7.1.2'
implementation 'com.shuyu:gsyVideoPlayer-x86:7.1.2'
implementation 'com.shuyu:gsyVideoPlayer-armv5:8.0.0'
implementation 'com.shuyu:gsyVideoPlayer-armv7a:8.0.0'
implementation 'com.shuyu:gsyVideoPlayer-arm64:8.0.0'
implementation 'com.shuyu:gsyVideoPlayer-x64:8.0.0'
implementation 'com.shuyu:gsyVideoPlayer-x86:8.0.0'
```

Expand All @@ -37,13 +37,13 @@ A、B普通版本支持263/264/265等,对于mpeg编码会有声音无画面情
C 引入的so支持mpeg编码和其他补充协议,但是so包相对变大。

```
implementation 'com.shuyu:gsyVideoPlayer-java:7.1.2'
implementation 'com.shuyu:gsyVideoPlayer-java:8.0.0'
//是否需要ExoPlayer模式
implementation 'com.shuyu:GSYVideoPlayer-exo2:7.1.2'
implementation 'com.shuyu:GSYVideoPlayer-exo2:8.0.0'
//更多ijk的编码支持
implementation 'com.shuyu:gsyVideoPlayer-ex_so:7.1.2'
implementation 'com.shuyu:gsyVideoPlayer-ex_so:8.0.0'
```

Expand Down
4 changes: 4 additions & 0 deletions doc/UPDATE_VERSION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## 下方个版本说明,可以当做简单的wiki使用~,效果可参考DEMO。

## 8.0.0 (2020-12-01)

* fix #3040 CommonUtil 获取网络信息空指针异常
* update ijk to FFMPEG 4.0

## 7.1.8 (2020-10-26)

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m
BINTRAY_USER=carguo
BINTRAY_KEY=
PROJ_GROUP=com.shuyu
PROJ_VERSION=7.1.8
PROJ_VERSION=8.0.0
PROJ_WEBSITEURL=https://github.com/CarGuo/GSYVideoPlayer
PROJ_ISSUETRACKERURL=
PROJ_VCSURL=git@github.com:CarGuo/GSYVideoPlayer.git
Expand Down

0 comments on commit 053178b

Please sign in to comment.