Skip to content

Commit 237bf6a

Browse files
committed
release to 2.0.0-alpha10
1 parent b18a860 commit 237bf6a

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ android.useAndroidX=true
2222
android.enableJetifier=true
2323

2424
GROUP=com.qmuiteam
25-
QMUI_VERSION=2.0.0-alpha09
26-
QMUI_ARCH_VERSION=2.0.0-alpha09
25+
QMUI_VERSION=2.0.0-alpha10
26+
QMUI_ARCH_VERSION=2.0.0-alpha10
2727
QMUI_LINT_VERSION = 1.1.0
2828
QMUI_SKIN_MAKER_VERSION = 0.0.1
2929
POM_GIT_URL=https://github.com/Tencent/QMUI_Android/

qmuidemo/src/main/java/com/qmuiteam/qmuidemo/manager/QDUpgradeManager.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ public class QDUpgradeManager {
5151
public static final int VERSION_2_0_0_alpha7 = -2007;
5252
public static final int VERSION_2_0_0_alpha8 = -2008;
5353
public static final int VERSION_2_0_0_alpha9 = -2009;
54-
private static final int sCurrentVersion = VERSION_2_0_0_alpha9;
54+
public static final int VERSION_2_0_0_alpha10 = -2010;
55+
private static final int sCurrentVersion = VERSION_2_0_0_alpha10;
5556
private static QDUpgradeManager sQDUpgradeManager = null;
5657
private UpgradeTipTask mUpgradeTipTask;
5758

qmuidemo/src/main/java/com/qmuiteam/qmuidemo/manager/UpgradeTipTask.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,13 @@ private void appendBlockSpace(Context context, SpannableStringBuilder builder) {
7070

7171
public CharSequence getUpgradeWord(final Activity activity) {
7272
SpannableStringBuilder text = new SpannableStringBuilder();
73-
if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha9){
73+
if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha10){
74+
text.append("1. Feature: Added a new widget: QMUISchemeHandler.\n");
75+
text.append("2. Feature: Supported to remove section title if only one section in QMUIStickSectionAdapter.\n");
76+
text.append("3. Feature: Supported to add a QMUISkinApplyListener to View.\n");
77+
text.append("4. Feature: Add a boolean return value for QMUITabSegment#OnTabClickListener to decide to interrupt the event or not.\n");
78+
text.append("5. Some bug fixes.");
79+
}else if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha9){
7480
text.append("1. Some bug fixes.");
7581
}else if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha8){
7682
text.append("1. Feature: Add new widget QMUISeekBar.\n");

0 commit comments

Comments
 (0)