Skip to content

Commit

Permalink
release to 2.0.0-alpha07.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Apr 6, 2020
1 parent 4eae96c commit ca34a30
Show file tree
Hide file tree
Showing 3 changed files with 9 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-alpha06
QMUI_ARCH_VERSION=2.0.0-alpha06
QMUI_VERSION=2.0.0-alpha07
QMUI_ARCH_VERSION=2.0.0-alpha07
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 @@ -48,7 +48,8 @@ public class QDUpgradeManager {
public static final int VERSION_2_0_0_alpha4 = -2004;
public static final int VERSION_2_0_0_alpha5 = -2005;
public static final int VERSION_2_0_0_alpha6 = -2006;
private static final int sCurrentVersion = VERSION_2_0_0_alpha6;
public static final int VERSION_2_0_0_alpha7 = -2007;
private static final int sCurrentVersion = VERSION_2_0_0_alpha7;
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,11 @@ private void appendBlockSpace(Context context, SpannableStringBuilder builder) {

public CharSequence getUpgradeWord(final Activity activity) {
SpannableStringBuilder text = new SpannableStringBuilder();
if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha6){
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.");
}else if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha6){
text.append("1. Features: Add new widget QMUITabSegment2 to support ViewPager2.\n");
text.append("2. Remove the skin's default usage.\n");
text.append("3. QMUILayout support radius which is half of the view height or width.\n");
Expand Down

0 comments on commit ca34a30

Please sign in to comment.