Skip to content

Commit 5075bed

Browse files
committed
Fixed the issue #3
1 parent 76eea33 commit 5075bed

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README-cn.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
- 在gradle中:
2626
```
27-
compile 'in.srain.cube:ptr-load-more:1.0'
27+
compile 'in.srain.cube:ptr-load-more:1.0.2’
2828
```
2929

3030
- 在maven中:
@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>in.srain.cube</groupId>
3535
<artifactId>ptr-load-more</artifactId>
36-
<version>1.0</version>
36+
<version>1.0.2</version>
3737
<type>pom</type>
3838
</dependency>
3939
```

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Currently, only the `Home page(PtrDemoHomeFragment)` and `AutoRefresh(With
2626

2727
- in gradle:
2828
```
29-
compile 'in.srain.cube:ptr-load-more:1.0'
29+
compile 'in.srain.cube:ptr-load-more:1.0.2’
3030
```
3131

3232
- in maven:
@@ -35,7 +35,7 @@ Currently, only the `Home page(PtrDemoHomeFragment)` and `AutoRefresh(With
3535
<dependency>
3636
<groupId>in.srain.cube</groupId>
3737
<artifactId>ptr-load-more</artifactId>
38-
<version>1.0</version>
38+
<version>1.0.2</version>
3939
<type>pom</type>
4040
</dependency>
4141
```

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ ANDROID_BUILD_TARGET_SDK_VERSION=23
33
ANDROID_BUILD_SDK_VERSION=23
44
ANDROID_BUILD_TOOLS_VERSION=23.0.1
55

6-
VERSION_CODE=2
7-
VERSION_NAME=1.0.1
6+
VERSION_CODE=3
7+
VERSION_NAME=1.0.2
88
GROUP=in.srain.cube
99
POM_NAME=Ultra Pull to Refresh
1010
POM_ARTIFACT_ID=ptr-load-more

ptr-demo/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ task copyLibs << {
8080
dependencies {
8181
/* compile(project(':ptr-lib')) {
8282
}*/
83-
compile 'in.srain.cube:ptr-load-more:1.0.1'
83+
compile 'in.srain.cube:ptr-load-more:1.0.2'
8484
compile 'in.srain.cube:clog:1.0.2'
8585
compile 'in.srain.cube:cube-sdk:1.0.44@aar'
8686
compile 'com.google.android:support-v4:r7'

ptr-lib/src/main/java/in/srain/cube/views/ptr/PtrFrameLayout.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public enum Mode {
3030
public final static byte PTR_STATUS_LOADING = 3;
3131
public final static byte PTR_STATUS_COMPLETE = 4;
3232
private static final boolean DEBUG_LAYOUT = false;
33-
public static final boolean DEBUG = false;
33+
public static boolean DEBUG = false;
3434
private static int ID = 1;
3535
protected final String LOG_TAG = "ptr-frame-" + ++ID;
3636
// auto refresh status

0 commit comments

Comments
 (0)