diff --git a/README.md b/README.md index 32a0f7f..e86ebca 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,12 @@ A new Material Design text field that comes in a box, based on [Google Material ​ ## ***UPDATE NOTICE*** +#### 1.4.1 Release +- Ultimately fixed #49. + #### 1.4.0 Release - Support Dense Layout (Dense Spacing) with `app:useDenseSpacing` attribute. -- Label can be fixed at the top when hint is present, with `app:alwaysShowHint` attribute. - -#### 1.3.9 Release -- Fix issue #49. -- Fix the compiling issue in #50. +- Label can be fixed at the top when hint is present, with `app:alwaysShowHint` attribute.\ ​ ## Requirements @@ -48,7 +47,7 @@ allprojects { ``` ```groovy dependencies { -    compile 'com.github.HITGIF:TextFieldBoxes:1.4.0' +    compile 'com.github.HITGIF:TextFieldBoxes:1.4.1' } ``` @@ -65,7 +64,7 @@ dependencies { com.github.HITGIF TextFieldBoxes -    1.4.0 +    1.4.1 ``` @@ -74,7 +73,7 @@ dependencies { resolvers += "jitpack" at "https://jitpack.io" ``` ```scala -libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.0" +libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.1" ``` @@ -83,7 +82,7 @@ libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.0" :repositories [["jitpack" "https://jitpack.io"]] ``` ```scala -:dependencies [[com.github.hitgif/textfieldboxes "1.4.0"]] +:dependencies [[com.github.hitgif/textfieldboxes "1.4.1"]] ``` ​ diff --git a/README_CN.md b/README_CN.md index 78ad0d4..6449ecb 100644 --- a/README_CN.md +++ b/README_CN.md @@ -18,14 +18,13 @@ ​ ## ***更新注意*** +#### 1.4.1 Release +- 最终修复了 #49。 + #### 1.4.0 Release - 支持 Dense Layout (紧凑布局),使用 `app:useDenseSpacing` 属性以设置。 - 当设置了 hint 时,标签可以一直被挂在顶部以显示 hint,使用 `app:alwaysShowHint` 属性以设置。 -#### 1.3.9 Release -- 修复 #49。 -- 修复 #50 中的编译问题。 - ​ ## 要求 - Android 4.0.3 IceCreamSandwich (API lv 15) 或更高 @@ -46,7 +45,7 @@ allprojects { ``` ```groovy dependencies { -    compile 'com.github.HITGIF:TextFieldBoxes:1.4.0' +    compile 'com.github.HITGIF:TextFieldBoxes:1.4.1' } ``` @@ -63,7 +62,7 @@ dependencies { com.github.HITGIF TextFieldBoxes -    1.4.0 +    1.4.1 ``` @@ -72,7 +71,7 @@ dependencies { resolvers += "jitpack" at "https://jitpack.io" ``` ```scala -libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.0" +libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.1" ``` @@ -81,7 +80,7 @@ libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.0" :repositories [["jitpack" "https://jitpack.io"]] ``` ```scala -:dependencies [[com.github.hitgif/textfieldboxes "1.4.0"]] +:dependencies [[com.github.hitgif/textfieldboxes "1.4.1"]] ``` ​ diff --git a/sample/build.gradle b/sample/build.gradle index 19529ca..1a8c23c 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -27,7 +27,7 @@ dependencies { compile 'com.android.support:appcompat-v7:27.0.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.android.support:design:27.0.1' -// compile 'com.github.HITGIF:TextFieldBoxes:1.4.0' +// compile 'com.github.HITGIF:TextFieldBoxes:1.4.1' compile project(':textfieldboxes') testCompile 'junit:junit:4.12' }