Skip to content

Commit 770bb18

Browse files
committed
release v1.3(add material progress style)
1 parent ff449ff commit 770bb18

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The simplest way to use SweetAlertDialog is to add the library as aar dependency
2121
<dependency>
2222
<groupId>cn.pedant.sweetalert</groupId>
2323
<artifactId>library</artifactId>
24-
<version>1.2</version>
24+
<version>1.3</version>
2525
<type>aar</type>
2626
</dependency>
2727

@@ -32,7 +32,7 @@ The simplest way to use SweetAlertDialog is to add the library as aar dependency
3232
}
3333

3434
dependencies {
35-
compile 'cn.pedant.sweetalert:library:1.2'
35+
compile 'cn.pedant.sweetalert:library:1.3'
3636
}
3737

3838
## Usage
@@ -41,7 +41,7 @@ show material progress
4141

4242
SweetAlertDialog pDialog = new SweetAlertDialog(this, SweetAlertDialog.PROGRESS_TYPE);
4343
pDialog.getProgressHelper().setBarColor(Color.parseColor("#A5DC86"));
44-
pDialog.setTitleText("loading...");
44+
pDialog.setTitleText("Loading");
4545
pDialog.setCancelable(false);
4646
pDialog.show();
4747

README.zh.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Android版的SweetAlert,清新文艺,快意灵动的甜心弹框
2121
<dependency>
2222
<groupId>cn.pedant.sweetalert</groupId>
2323
<artifactId>library</artifactId>
24-
<version>1.2</version>
24+
<version>1.3</version>
2525
<type>aar</type>
2626
</dependency>
2727

@@ -32,15 +32,15 @@ Android版的SweetAlert,清新文艺,快意灵动的甜心弹框
3232
}
3333

3434
dependencies {
35-
compile 'cn.pedant.sweetalert:library:1.2'
35+
compile 'cn.pedant.sweetalert:library:1.3'
3636
}
3737

3838
## 如何开始
3939
显示Material进度样式
4040

4141
SweetAlertDialog pDialog = new SweetAlertDialog(this, SweetAlertDialog.PROGRESS_TYPE);
4242
pDialog.getProgressHelper().setBarColor(Color.parseColor("#A5DC86"));
43-
pDialog.setTitleText("loading...");
43+
pDialog.setTitleText("Loading");
4444
pDialog.setCancelable(false);
4545
pDialog.show();
4646

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.2
2-
VERSION_CODE=3
1+
VERSION_NAME=1.3
2+
VERSION_CODE=4
33
GROUP=cn.pedant.sweetalert
44

55
POM_DESCRIPTION=SweetAlert for Android, a beautiful and clever alert dialog.

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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-2.2.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip

sample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ android {
2626
}
2727

2828
dependencies {
29-
//compile 'cn.pedant.sweetalert:library:1.2'
29+
//compile 'cn.pedant.sweetalert:library:1.3'
3030
compile project(':library')
3131
}

0 commit comments

Comments
 (0)