Skip to content

Commit

Permalink
release to 2.0.0-alpha10
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Jun 8, 2020
1 parent b18a860 commit 237bf6a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ android.useAndroidX=true
android.enableJetifier=true

GROUP=com.qmuiteam
QMUI_VERSION=2.0.0-alpha09
QMUI_ARCH_VERSION=2.0.0-alpha09
QMUI_VERSION=2.0.0-alpha10
QMUI_ARCH_VERSION=2.0.0-alpha10
QMUI_LINT_VERSION = 1.1.0
QMUI_SKIN_MAKER_VERSION = 0.0.1
POM_GIT_URL=https://github.com/Tencent/QMUI_Android/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ public class QDUpgradeManager {
public static final int VERSION_2_0_0_alpha7 = -2007;
public static final int VERSION_2_0_0_alpha8 = -2008;
public static final int VERSION_2_0_0_alpha9 = -2009;
private static final int sCurrentVersion = VERSION_2_0_0_alpha9;
public static final int VERSION_2_0_0_alpha10 = -2010;
private static final int sCurrentVersion = VERSION_2_0_0_alpha10;
private static QDUpgradeManager sQDUpgradeManager = null;
private UpgradeTipTask mUpgradeTipTask;

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

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

0 comments on commit 237bf6a

Please sign in to comment.