Skip to content

Commit 3d1a112

Browse files
committed
update v3.0.0
1 parent 2992bdf commit 3d1a112

File tree

3 files changed

+25
-13
lines changed

3 files changed

+25
-13
lines changed

README.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
55
* 流式操作
66
* 低侵入性
7+
* 依赖少,只依赖了`disklrucache``support v4`
78
* 支持Html和Markdown格式文本
89
* 支持图片点击和长按事件
910
* 链接点击事件和长按事件
@@ -12,7 +13,7 @@
1213
* 支持修正图片宽高
1314
* 支持GIF图片
1415
* 支持Base64编码、本地图片和Assets目录图片
15-
* 自持自定义图片加载器
16+
* 自持自定义图片加载器、图片加载器
1617
* 支持内存和磁盘双缓存
1718

1819
### 效果
@@ -23,16 +24,14 @@
2324
### gradle中引用的方法
2425

2526
```
26-
compile 'com.zzhoujay.richtext:richtext:2.5.4'
27+
compile 'com.zzhoujay.richtext:richtext:3.0.0'
2728
```
2829

29-
### Glide图片加载器 (已不建议使用,可以用默认图片加载器替代)
30+
### 关于issue
3031

31-
```
32-
compile 'com.zzhoujay.glideimagegetter:glideimagegetter:1.0.5'
33-
```
32+
最近一段时间会比较忙,issue不能及时处理,一般会定时抽空集中解决issue,但时间有限解决速度上不敢保证。
3433

35-
关于Glide图片加载器和默认图片加载器的区别请看[这里](https://github.com/zzhoujay/RichText/wiki/自定义图片加载器)
34+
欢迎提交pull request帮助完善这个项目
3635

3736
### 注意
3837

@@ -71,9 +70,6 @@ Markdown源于子项目:[Markdown](https://github.com/zzhoujay/Markdown)
7170
[RecyclerView Demo](https://github.com/zzhoujay/RichText/blob/master/app/src/main/java/zhou/demo/RecyclerViewActivity.java)
7271
[Gif Demo](https://github.com/zzhoujay/RichText/blob/master/app/src/main/java/zhou/demo/GifActivity.java)
7372

74-
### 特别感谢
75-
76-
感谢[@huoguangjin](https://github.com/huoguangjin)在开发过程中对gilde的源码分析的帮助
7773

7874
### License
7975

build.gradle

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
maven {
7+
url 'https://maven.google.com/'
8+
name 'Google'
9+
}
610
}
711
dependencies {
812
classpath 'com.android.tools.build:gradle:2.3.1'
9-
classpath 'com.novoda:bintray-release:0.3.4'
13+
classpath 'com.novoda:bintray-release:0.5.0'
1014

1115
// NOTE: Do not place your application dependencies here; they belong
1216
// in the individual module build.gradle files
@@ -16,6 +20,18 @@ buildscript {
1620
allprojects {
1721
repositories {
1822
jcenter()
23+
maven {
24+
url 'https://maven.google.com/'
25+
name 'Google'
26+
}
27+
}
28+
29+
tasks.withType(Javadoc) {
30+
options {
31+
encoding "UTF-8"
32+
charSet 'UTF-8'
33+
links "http://docs.oracle.com/javase/7/docs/api"
34+
}
1935
}
2036
}
2137

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Mar 04 12:54:48 CST 2017
1+
#Wed Nov 15 23:17:18 CST 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

0 commit comments

Comments
 (0)