Skip to content

Commit ca34a30

Browse files
committed
release to 2.0.0-alpha07.
1 parent 4eae96c commit ca34a30

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

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-alpha06
26-
QMUI_ARCH_VERSION=2.0.0-alpha06
25+
QMUI_VERSION=2.0.0-alpha07
26+
QMUI_ARCH_VERSION=2.0.0-alpha07
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
@@ -48,7 +48,8 @@ public class QDUpgradeManager {
4848
public static final int VERSION_2_0_0_alpha4 = -2004;
4949
public static final int VERSION_2_0_0_alpha5 = -2005;
5050
public static final int VERSION_2_0_0_alpha6 = -2006;
51-
private static final int sCurrentVersion = VERSION_2_0_0_alpha6;
51+
public static final int VERSION_2_0_0_alpha7 = -2007;
52+
private static final int sCurrentVersion = VERSION_2_0_0_alpha7;
5253
private static QDUpgradeManager sQDUpgradeManager = null;
5354
private UpgradeTipTask mUpgradeTipTask;
5455

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ 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_alpha6){
73+
if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha7){
74+
text.append("1. Add OnProgressChangeListener for QMUIProgressBar.\n");
75+
text.append("2. Add skin support for CompoundButton.\n");
76+
text.append("3. Some bug fixes.");
77+
}else if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha6){
7478
text.append("1. Features: Add new widget QMUITabSegment2 to support ViewPager2.\n");
7579
text.append("2. Remove the skin's default usage.\n");
7680
text.append("3. QMUILayout support radius which is half of the view height or width.\n");

0 commit comments

Comments
 (0)