Skip to content

Commit

Permalink
release to 2.0.0-alpha04
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Mar 4, 2020
1 parent 8f663ee commit 197bc06
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-alpha03
QMUI_ARCH_VERSION=2.0.0-alpha03
QMUI_VERSION=2.0.0-alpha04
QMUI_ARCH_VERSION=2.0.0-alpha04
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 @@ -44,7 +44,9 @@ public class QDUpgradeManager {
public static final int VERSION_1_4_0 = 140;
public static final int VERSION_2_0_0_alpha1 = -2001;
public static final int VERSION_2_0_0_alpha2 = -2002;
private static final int sCurrentVersion = VERSION_2_0_0_alpha2;
public static final int VERSION_2_0_0_alpha3 = -2003;
public static final int VERSION_2_0_0_alpha4 = -2004;
private static final int sCurrentVersion = VERSION_2_0_0_alpha4;
private static QDUpgradeManager sQDUpgradeManager = null;
private UpgradeTipTask mUpgradeTipTask;

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

public CharSequence getUpgradeWord(final Activity activity) {
SpannableStringBuilder text = new SpannableStringBuilder();
if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha2){
if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha4){
text.append("1. Features: Add new widget: QMUIPullLayout.\n");
text.append("2. Features: Add new widget: QMUIRVItemSwipeAction.\n");
text.append("3. Support muti instance for QMUISkinManager.\n");
text.append("4. some bug fixes.");
}else if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha2){
text.append("1. Bugfix: Crash Happened on Android 7 and lower.\n");
text.append("2. Bugfix: QMUIBottomSheet overlapped the navigation bar.");
}else if(mNewVersion == QDUpgradeManager.VERSION_2_0_0_alpha1){
Expand Down

0 comments on commit 197bc06

Please sign in to comment.