Skip to content

Commit

Permalink
release qmui to 1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Nov 26, 2018
1 parent b3ebf9e commit 4911f9f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 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.9" // QMUI 发布到 bintray 的版本号
version = "1.1.10" // QMUI 发布到 bintray 的版本号

//noinspection GroovyMissingReturnStatement
android {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class QDUpgradeManager {
public static final int VERSION_1_1_7 = 117;
public static final int VERSION_1_1_8 = 118;
public static final int VERSION_1_1_9 = 119;
private static final int sCurrentVersion = VERSION_1_1_9;
public static final int VERSION_1_1_10 = 1110;
private static final int sCurrentVersion = VERSION_1_1_10;
private static QDUpgradeManager sQDUpgradeManager = null;
private UpgradeTipTask mUpgradeTipTask;

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

public CharSequence getUpgradeWord(final Activity activity) {
SpannableStringBuilder text = new SpannableStringBuilder();
if(mNewVersion == QDUpgradeManager.VERSION_1_1_9){
if (mNewVersion == QDUpgradeManager.VERSION_1_1_10) {
text.append("1. Simplified the use of QMUIWebContainer.\n");
text.append("2. Refactored QMUITabSegment to handle operations such as reducing item.\n");
} else if (mNewVersion == QDUpgradeManager.VERSION_1_1_9) {
text.append("1. Fixed an error that fitSystemWindows does not work in QMUIWebContainer.\n");
text.append("2. Fixed an error that swiping back would blink.\n");
} else if (mNewVersion == QDUpgradeManager.VERSION_1_1_8) {
Expand Down

0 comments on commit 4911f9f

Please sign in to comment.