Skip to content

Commit fc895cd

Browse files
author
罗孟伟
committed
commit
1 parent 6794faf commit fc895cd

File tree

3 files changed

+23
-23
lines changed

3 files changed

+23
-23
lines changed

Diff for: README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
A PictureSelector for Android platform, which supports obtaining pictures, videos, audio & photos from photo albums, cutting (single picture or multi picture cutting), compression, theme custom configuration and other functions, and supports dynamic access & an open source picture selection framework suitable for Android 5.0 + system<br>
33

44
![](image/picture_framework_es.png)
5-
5+
66
[简体中文🇨🇳](README_CN.md)
77

8-
[Download Demo Apk](https://github.com/LuckSiege/PictureSelector/raw/version_component/app/demo/demo_2022-06-05_044238_v3.10.0.apk)<br>
8+
[Download Demo Apk](https://github.com/LuckSiege/PictureSelector/raw/version_component/app/demo/demo_2022-06-09_121138_v3.10.1.apk)<br>
99

10-
[![Maven Central](https://img.shields.io/badge/maven%20central-v3.10.0-yellow)](https://github.com/LuckSiege)
10+
[![Maven Central](https://img.shields.io/badge/maven%20central-v3.10.1-yellow)](https://github.com/LuckSiege)
1111
[![PRs Welcome](https://img.shields.io/badge/PRs-Welcome-brightgreen.svg)](https://github.com/LuckSiege)
1212
[![Star](https://img.shields.io/github/stars/LuckSiege/PictureSelector.svg)](https://github.com/LuckSiege/PictureSelector)
1313

1414

1515
## Contents
16-
-[Last version](https://github.com/LuckSiege/PictureSelector/releases/tag/v3.10.0)<br>
16+
-[Last version](https://github.com/LuckSiege/PictureSelector/releases/tag/v3.10.1)<br>
1717
-[Download](#Download)<br>
1818
-[Usage](#Usage)<br>
1919
-[Permission](#Permission)<br>
@@ -37,16 +37,16 @@ repositories {
3737

3838
dependencies {
3939
// PictureSelector basic (Necessary)
40-
implementation 'io.github.lucksiege:pictureselector:v3.10.0'
40+
implementation 'io.github.lucksiege:pictureselector:v3.10.1'
4141

4242
// image compress library (Not necessary)
43-
implementation 'io.github.lucksiege:compress:v3.10.0'
43+
implementation 'io.github.lucksiege:compress:v3.10.1'
4444

4545
// uCrop library (Not necessary)
46-
implementation 'io.github.lucksiege:ucrop:v3.10.0'
46+
implementation 'io.github.lucksiege:ucrop:v3.10.1'
4747

4848
// simple camerax library (Not necessary)
49-
implementation 'io.github.lucksiege:camerax:v3.10.0'
49+
implementation 'io.github.lucksiege:camerax:v3.10.1'
5050
}
5151
```
5252

@@ -56,25 +56,25 @@ Or Maven:
5656
<dependency>
5757
<groupId>io.github.lucksiege</groupId>
5858
<artifactId>pictureselector</artifactId>
59-
<version>v3.10.0</version>
59+
<version>v3.10.1</version>
6060
</dependency>
6161

6262
<dependency>
6363
<groupId>io.github.lucksiege</groupId>
6464
<artifactId>compress</artifactId>
65-
<version>v3.10.0</version>
65+
<version>v3.10.1</version>
6666
</dependency>
6767

6868
<dependency>
6969
<groupId>io.github.lucksiege</groupId>
7070
<artifactId>ucrop</artifactId>
71-
<version>v3.10.0</version>
71+
<version>v3.10.1</version>
7272
</dependency>
7373

7474
<dependency>
7575
<groupId>io.github.lucksiege</groupId>
7676
<artifactId>camerax</artifactId>
77-
<version>v3.10.0</version>
77+
<version>v3.10.1</version>
7878
</dependency>
7979
```
8080

Diff for: README_CN.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
[English🇺🇸](README.md)
77

8-
[效果体验](https://github.com/LuckSiege/PictureSelector/raw/version_component/app/demo/demo_2022-06-05_044238_v3.10.0.apk)<br>
8+
[效果体验](https://github.com/LuckSiege/PictureSelector/raw/version_component/app/demo/demo_2022-06-09_121138_v3.10.1.apk)<br>
99

10-
[![Maven Central](https://img.shields.io/badge/maven%20central-v3.10.0-yellow)](https://github.com/LuckSiege)
10+
[![Maven Central](https://img.shields.io/badge/maven%20central-v3.10.1-yellow)](https://github.com/LuckSiege)
1111
[![PRs Welcome](https://img.shields.io/badge/PRs-Welcome-brightgreen.svg)](https://github.com/LuckSiege)
1212
[![Star](https://img.shields.io/github/stars/LuckSiege/PictureSelector.svg)](https://github.com/LuckSiege/PictureSelector)
1313

1414

1515
## 目录
16-
-[最新版本](https://github.com/LuckSiege/PictureSelector/releases/tag/v3.10.0)<br>
16+
-[最新版本](https://github.com/LuckSiege/PictureSelector/releases/tag/v3.10.1)<br>
1717
-[如何引用](#如何引用)<br>
1818
-[进阶使用](#进阶使用)<br>
1919
-[权限](#权限)<br>
@@ -39,16 +39,16 @@ repositories {
3939

4040
dependencies {
4141
// PictureSelector 基础 (必须)
42-
implementation 'io.github.lucksiege:pictureselector:v3.10.0'
42+
implementation 'io.github.lucksiege:pictureselector:v3.10.1'
4343

4444
// 图片压缩 (按需引入)
45-
implementation 'io.github.lucksiege:compress:v3.10.0'
45+
implementation 'io.github.lucksiege:compress:v3.10.1'
4646

4747
// 图片裁剪 (按需引入)
48-
implementation 'io.github.lucksiege:ucrop:v3.10.0'
48+
implementation 'io.github.lucksiege:ucrop:v3.10.1'
4949

5050
// 自定义相机 (按需引入)
51-
implementation 'io.github.lucksiege:camerax:v3.10.0'
51+
implementation 'io.github.lucksiege:camerax:v3.10.1'
5252
}
5353
```
5454

@@ -58,25 +58,25 @@ dependencies {
5858
<dependency>
5959
<groupId>io.github.lucksiege</groupId>
6060
<artifactId>pictureselector</artifactId>
61-
<version>v3.10.0</version>
61+
<version>v3.10.1</version>
6262
</dependency>
6363

6464
<dependency>
6565
<groupId>io.github.lucksiege</groupId>
6666
<artifactId>compress</artifactId>
67-
<version>v3.10.0</version>
67+
<version>v3.10.1</version>
6868
</dependency>
6969

7070
<dependency>
7171
<groupId>io.github.lucksiege</groupId>
7272
<artifactId>ucrop</artifactId>
73-
<version>v3.10.0</version>
73+
<version>v3.10.1</version>
7474
</dependency>
7575

7676
<dependency>
7777
<groupId>io.github.lucksiege</groupId>
7878
<artifactId>camerax</artifactId>
79-
<version>v3.10.0</version>
79+
<version>v3.10.1</version>
8080
</dependency>
8181
```
8282

0 commit comments

Comments
 (0)