Skip to content

Commit

Permalink
release to 2.0.0_alpha08
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Apr 28, 2020
1 parent d539dcc commit dc7377e
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-alpha07
QMUI_ARCH_VERSION=2.0.0-alpha07
QMUI_VERSION=2.0.0-alpha08
QMUI_ARCH_VERSION=2.0.0-alpha08
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 @@ -49,7 +49,8 @@ public class QDUpgradeManager {
public static final int VERSION_2_0_0_alpha5 = -2005;
public static final int VERSION_2_0_0_alpha6 = -2006;
public static final int VERSION_2_0_0_alpha7 = -2007;
private static final int sCurrentVersion = VERSION_2_0_0_alpha7;
public static final int VERSION_2_0_0_alpha8 = -2008;
private static final int sCurrentVersion = VERSION_2_0_0_alpha8;
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_alpha7){
if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha8){
text.append("1. Feature: Add new widget QMUISeekBar.\n");
text.append("2. Feature: Provide QMUIFragment#registerEffect to replace startFragmentForResult.\n");
text.append("3. Feature: Provide QMUINavFragment to support child fragment navigation\n");
text.append("4. Feature: Refactor swipe back to support muti direction.\n");
text.append("5. Some bug fixes.");
}else if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha7){
text.append("1. Add OnProgressChangeListener for QMUIProgressBar.\n");
text.append("2. Add skin support for CompoundButton.\n");
text.append("3. Some bug fixes.");
Expand Down

0 comments on commit dc7377e

Please sign in to comment.