Skip to content

Commit

Permalink
release qmui to 1.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cgspine committed Nov 22, 2018
1 parent d6296fa commit 673d863
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion qmui/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'

group = 'com.qmuiteam'
version = "1.1.8" // QMUI 发布到 bintray 的版本号
version = "1.1.9" // QMUI 发布到 bintray 的版本号

//noinspection GroovyMissingReturnStatement
android {
Expand Down
2 changes: 1 addition & 1 deletion qmuidemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
minSdkVersion parent.ext.minSdkVersion
targetSdkVersion parent.ext.targetSdkVersion
versionCode gitVersion
versionName "1.1.8"
versionName "1.1.9"
}
buildTypes {
debug {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public class QDUpgradeManager {
public static final int VERSION_1_1_6 = 116;
public static final int VERSION_1_1_7 = 117;
public static final int VERSION_1_1_8 = 118;
private static final int sCurrentVersion = VERSION_1_1_8;
public static final int VERSION_1_1_9 = 119;
private static final int sCurrentVersion = VERSION_1_1_9;
private static QDUpgradeManager sQDUpgradeManager = null;
private UpgradeTipTask mUpgradeTipTask;

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

public CharSequence getUpgradeWord(final Activity activity) {
SpannableStringBuilder text = new SpannableStringBuilder();
if (mNewVersion == QDUpgradeManager.VERSION_1_1_8) {
if(mNewVersion == QDUpgradeManager.VERSION_1_1_9){
text.append("1. Fixed an error that fitSystemWindows does not work in QMUIWebContainer.\n");
text.append("2. Fixed an error that swiping back would blink.\n");
} else if (mNewVersion == QDUpgradeManager.VERSION_1_1_8) {
text.append("1. Implemented QMUIWebView (beta), where supports for env(safe-area-inset-*) in css were added.\n");
text.append("2. Feature: QMUIQQFaceView supports gravity(left/right/center-horizontal) attribute.\n");
text.append("3. Feature: allows setting shadow color on Android ROM version 9 and higher.\n");
Expand Down

0 comments on commit 673d863

Please sign in to comment.