Skip to content

Commit

Permalink
release qmui to 1.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Jan 9, 2019
1 parent 982b80f commit d724289
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion qmui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'

group = 'com.qmuiteam'
version = "1.1.11" // QMUI 发布到 bintray 的版本号
version = "1.1.12" // QMUI 发布到 bintray 的版本号

//noinspection GroovyMissingReturnStatement
android {
Expand Down
2 changes: 1 addition & 1 deletion qmuidemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
minSdkVersion parent.ext.minSdkVersion
targetSdkVersion parent.ext.targetSdkVersion
versionCode gitVersion
versionName "1.1.11"
versionName "1.1.12"
}
buildTypes {
debug {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public class QDUpgradeManager {
public static final int VERSION_1_1_9 = 119;
public static final int VERSION_1_1_10 = 1110;
public static final int VERSION_1_1_11 = 1111;
private static final int sCurrentVersion = VERSION_1_1_11;
public static final int VERSION_1_1_12 = 1112;
private static final int sCurrentVersion = VERSION_1_1_12;
private static QDUpgradeManager sQDUpgradeManager = null;
private UpgradeTipTask mUpgradeTipTask;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ private void appendBlockSpace(Context context, SpannableStringBuilder builder) {

public CharSequence getUpgradeWord(final Activity activity) {
SpannableStringBuilder text = new SpannableStringBuilder();
if(mNewVersion == QDUpgradeManager.VERSION_1_1_11){
if(mNewVersion == QDUpgradeManager.VERSION_1_1_12){
text.append("1. Fixed drag issues when refreshing.\n");
text.append("2. Fixed the crash in QMUIPopup under Android 4.4 because of webp.");
}else if(mNewVersion == QDUpgradeManager.VERSION_1_1_11){
text.append("1. Updated arch library to 0.3.0. Now developer must update support library to 28 or use androidx.\n");
text.append("2. Feature: Added custom typeface support in QMUITabSegment.\n");
text.append("3. Fixed a bug that QMUICollapsingTopBarLayout will lose title if swipe back.\n");
Expand Down

0 comments on commit d724289

Please sign in to comment.