Skip to content

Commit

Permalink
1、升级版本
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish committed Nov 27, 2024
1 parent 35061d0 commit 98f0713
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,18 +89,18 @@ allprojects {

```gradle
//OpenImageFullLib 默认已经包含了OpenImageGlideLib
implementation 'io.github.FlyJingFish.OpenImage:OpenImageFullLib:2.3.5'
implementation 'io.github.FlyJingFish.OpenImage:OpenImageFullLib:2.3.6'
```

- 使用 Coil 作为图片加载器,如果你的项目组存在[Coil](https://github.com/coil-kt/coil)请升级至 **2.4.0** 或者更高的版本,否则会冲突

```gradle
//OpenImageFullLib 因为已经包含了 OpenImageGlideLib,所以需要排除掉 OpenImageGlideLib,否则会同时存在 Glide 和 Coil
implementation ('io.github.FlyJingFish.OpenImage:OpenImageFullLib:2.3.5'){
implementation ('io.github.FlyJingFish.OpenImage:OpenImageFullLib:2.3.6'){
exclude module: 'OpenImageGlideLib'
}
//OpenImageCoilLib 引入Coil(2.4.0)图片引擎
implementation 'io.github.FlyJingFish.OpenImage:OpenImageCoilLib:2.3.5'
implementation 'io.github.FlyJingFish.OpenImage:OpenImageCoilLib:2.3.6'
```

#### B、引入只带有图片引擎的版本(只支持查看图片)
Expand All @@ -111,14 +111,14 @@ implementation 'io.github.FlyJingFish.OpenImage:OpenImageCoilLib:2.3.5'

```gradle
//OpenImageGlideLib 引入Glide(4.12.0)图片引擎,没有引入视频播放器;如需定制视频播放功能,详细看Wiki文档,如果不想定制可直接使用上边的库
implementation 'io.github.FlyJingFish.OpenImage:OpenImageGlideLib:2.3.5'
implementation 'io.github.FlyJingFish.OpenImage:OpenImageGlideLib:2.3.6'
```

- 使用 Coil 作为图片加载器,如果你的项目组存在[Coil](https://github.com/coil-kt/coil)请升级至 **2.4.0** 或者更高的版本,否则会冲突

```gradle
//OpenImageCoilLib 引入Coil(2.4.0)图片引擎,没有引入视频播放器;如需定制视频播放功能,详细看Wiki文档,如果不想定制可直接使用上边的库
implementation 'io.github.FlyJingFish.OpenImage:OpenImageCoilLib:2.3.5'
implementation 'io.github.FlyJingFish.OpenImage:OpenImageCoilLib:2.3.6'
```

#### C、引入基础版本(不可以直接查看图片和视频,完全需要自定义)
Expand All @@ -128,7 +128,7 @@ implementation 'io.github.FlyJingFish.OpenImage:OpenImageCoilLib:2.3.5'
```gradle
//OpenImageLib 是基础库,没有引入图片引擎和视频播放器
//至少需要实现BigImageHelper来定制您的图片引擎,如需定制视频播放功能,详细看Wiki文档
implementation 'io.github.FlyJingFish.OpenImage:OpenImageLib:2.3.5'
implementation 'io.github.FlyJingFish.OpenImage:OpenImageLib:2.3.6'
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ DEVELOPER_ID=FlyJingFish
DEVELOPER_NAME=FlyJingFish
DEVELOPER_EMAIL=[email protected]

TestVersion = 2.3.5
TestVersion = 2.3.6
SonatypeTestCode = 1649
TestType = 0
android.defaults.buildfeatures.buildconfig=true
Expand Down
6 changes: 6 additions & 0 deletions update_record.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# OpenImage 更新日志

## 2.3.6

1、修改图片和视频同步缩放的方式,防止出现缩放大小不同步的问题



## 2.3.5

1、新增支持 Coil3
Expand Down
4 changes: 2 additions & 2 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Mon Nov 25 15:44:18 CST 2024
PROJ_VERSION=2.3.5
#Wed Nov 27 14:52:49 CST 2024
PROJ_VERSION=2.3.6

0 comments on commit 98f0713

Please sign in to comment.