Skip to content

Commit 40064f7

Browse files
committed
解决刻度模式初始化失效问题,并更新library至1.0.5
1 parent fa696bf commit 40064f7

File tree

6 files changed

+70
-65
lines changed

6 files changed

+70
-65
lines changed

.DS_Store

0 Bytes
Binary file not shown.

MaterialProgressView-master/.idea/workspace.xml

+53-53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MaterialProgressView-master/README_CH.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
build.gradle:
2525

2626
```
27-
compile 'com.moos:Material-ProgressView:1.0.4'
27+
compile 'com.moos:Material-ProgressView:1.0.5'
2828
```
2929

3030
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>com.moos</groupId>
3737
<artifactId>Material-ProgressView</artifactId>
38-
<version>1.0.4</version>
38+
<version>1.0.5</version>
3939
<type>pom</type>
4040
</dependency>
4141
```
@@ -268,6 +268,7 @@
268268
- **V1.0.2**(2018-03-22):为水平进度条提供进度值的跟随动画
269269
- **V1.0.3**(2018-04-12):增加弧形加载控件的刻度效果
270270
- **V1.0.4**(2018-05-03):支持动态设置加载控件的进度值(下载/上传进度等)
271+
- **V1.0.5**(2018-05-05):解决弧形加载控件的刻度模式初始化失效问题,详情见:[issue](https://github.com/Moosphan/Material-ProgressView/issues/3)
271272

272273
### 特别感谢
273274

MaterialProgressView-master/library/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ publish {
3838
userOrg = 'moosphon'//bintray-username
3939
groupId = 'com.moos'//group name
4040
artifactId = 'Material-ProgressView'//项目名称
41-
publishVersion = '1.0.4'//version
41+
publishVersion = '1.0.5'//version
4242
desc = 'This is a pretty and simple used library for progress views on android'
4343
website = 'https://github.com/Moosphan/Material-ProgressView'//website
4444
}

MaterialProgressView-master/library/src/main/java/com/moos/library/CircleProgressView.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,9 @@ public void setCircleBroken(boolean isBroken){
544544
/**
545545
* set the scale zone type for progress view
546546
* @param isGraduated have scale zone or not
547-
* todo:deal with the multi views can not works situation
547+
* todo:
548+
* 1. deal with the multi views can not works situation
549+
* 2. deal the init not work [solved]
548550
*/
549551
public void setGraduatedEnabled(final boolean isGraduated){
550552
this.isGraduated = isGraduated;

README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ More details on CircleProgressView and HorizontalProgressView:
3232
2. Moudle—>build.gradle:
3333
3434
```
35-
compile 'com.moos:Material-ProgressView:1.0.4'
35+
compile 'com.moos:Material-ProgressView:1.0.5'
3636
```
3737
3838
@@ -43,7 +43,7 @@ More details on CircleProgressView and HorizontalProgressView:
4343
<dependency>
4444
<groupId>com.moos</groupId>
4545
<artifactId>Material-ProgressView</artifactId>
46-
<version>1.0.4</version>
46+
<version>1.0.5</version>
4747
<type>pom</type>
4848
</dependency>
4949
```
@@ -288,6 +288,8 @@ More details on CircleProgressView and HorizontalProgressView:
288288
289289
- **V1.0.4**(2018-05-03): update the progress view with `downloading` or `uploading`.
290290
291+
- **V1.0.5**(2018-05-05): sloved the problem that graduated style of `CircleProgressView` init failed, details in [issue](https://github.com/Moosphan/Material-ProgressView/issues/3).
292+
291293
## Thanks to
292294
293295
[HenCoder](http://hencoder.com/)
@@ -296,19 +298,19 @@ More details on CircleProgressView and HorizontalProgressView:
296298
297299
## About me
298300
299-
Welcome to improve it with me and give me some issues.
301+
>Welcome to improve it with me and give me some issues.
300302
301-
Blog:<http://moos.club/>
303+
>Blog:<http://moos.club/>
302304
303-
E-mail:moosphon@gmail.com
305+
>E-mail:moosphon@gmail.com
304306
305-
Twitter:[![Twitter](https://img.shields.io/twitter/url/https/github.com/Moosphan/Material-ProgressView.svg?style=social)](https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fgithub.com%2FMoosphan%2FMaterial-ProgressView)
307+
>Twitter:[![Twitter](https://img.shields.io/twitter/url/https/github.com/Moosphan/Material-ProgressView.svg?style=social)](https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fgithub.com%2FMoosphan%2FMaterial-ProgressView)
306308
307-
Buy me a coffee:
309+
>Buy me a coffee:
308310
309311
310312
311-
![coffee](https://github.com/Moosphan/Material-ProgressView/blob/master/MaterialProgressView-master/image/a_coffee.png)
313+
>![coffee](https://github.com/Moosphan/Material-ProgressView/blob/master/MaterialProgressView-master/image/a_coffee.png)
312314
313315
314316
## License

0 commit comments

Comments
 (0)