Skip to content

Commit ac93af3

Browse files
committed
1.4.1
1 parent 11f33fe commit ac93af3

File tree

3 files changed

+16
-18
lines changed

3 files changed

+16
-18
lines changed

README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@ A new Material Design text field that comes in a box, based on [Google Material
2020
2121
## ***UPDATE NOTICE***
2222

23+
#### 1.4.1 Release
24+
- Ultimately fixed #49.
25+
2326
#### 1.4.0 Release
2427
- Support Dense Layout (Dense Spacing) with `app:useDenseSpacing` attribute.
25-
- Label can be fixed at the top when hint is present, with `app:alwaysShowHint` attribute.
26-
27-
#### 1.3.9 Release
28-
- Fix issue #49.
29-
- Fix the compiling issue in #50.
28+
- Label can be fixed at the top when hint is present, with `app:alwaysShowHint` attribute.\
3029

3130
3231
## Requirements
@@ -48,7 +47,7 @@ allprojects {
4847
```
4948
```groovy
5049
dependencies {
51-
   compile 'com.github.HITGIF:TextFieldBoxes:1.4.0'
50+
   compile 'com.github.HITGIF:TextFieldBoxes:1.4.1'
5251
}
5352
```
5453

@@ -65,7 +64,7 @@ dependencies {
6564
<dependency>
6665
<groupId>com.github.HITGIF</groupId>
6766
<artifactId>TextFieldBoxes</artifactId>
68-
   <version>1.4.0</version>
67+
   <version>1.4.1</version>
6968
</dependency>
7069
```
7170

@@ -74,7 +73,7 @@ dependencies {
7473
resolvers += "jitpack" at "https://jitpack.io"
7574
```
7675
```scala
77-
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.0"
76+
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.1"
7877
```
7978

8079

@@ -83,7 +82,7 @@ libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.0"
8382
:repositories [["jitpack" "https://jitpack.io"]]
8483
```
8584
```scala
86-
:dependencies [[com.github.hitgif/textfieldboxes "1.4.0"]]
85+
:dependencies [[com.github.hitgif/textfieldboxes "1.4.1"]]
8786
```
8887

8988

README_CN.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,13 @@
1818
1919
## ***更新注意***
2020

21+
#### 1.4.1 Release
22+
- 最终修复了 #49
23+
2124
#### 1.4.0 Release
2225
- 支持 Dense Layout (紧凑布局),使用 `app:useDenseSpacing` 属性以设置。
2326
- 当设置了 hint 时,标签可以一直被挂在顶部以显示 hint,使用 `app:alwaysShowHint` 属性以设置。
2427

25-
#### 1.3.9 Release
26-
- 修复 #49
27-
- 修复 #50 中的编译问题。
28-
2928
3029
## 要求
3130
- Android 4.0.3 IceCreamSandwich (API lv 15) 或更高
@@ -46,7 +45,7 @@ allprojects {
4645
```
4746
```groovy
4847
dependencies {
49-
   compile 'com.github.HITGIF:TextFieldBoxes:1.4.0'
48+
   compile 'com.github.HITGIF:TextFieldBoxes:1.4.1'
5049
}
5150
```
5251

@@ -63,7 +62,7 @@ dependencies {
6362
<dependency>
6463
<groupId>com.github.HITGIF</groupId>
6564
<artifactId>TextFieldBoxes</artifactId>
66-
   <version>1.4.0</version>
65+
   <version>1.4.1</version>
6766
</dependency>
6867
```
6968

@@ -72,7 +71,7 @@ dependencies {
7271
resolvers += "jitpack" at "https://jitpack.io"
7372
```
7473
```scala
75-
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.0"
74+
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.1"
7675
```
7776

7877

@@ -81,7 +80,7 @@ libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.4.0"
8180
:repositories [["jitpack" "https://jitpack.io"]]
8281
```
8382
```scala
84-
:dependencies [[com.github.hitgif/textfieldboxes "1.4.0"]]
83+
:dependencies [[com.github.hitgif/textfieldboxes "1.4.1"]]
8584
```
8685

8786

sample/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
compile 'com.android.support:appcompat-v7:27.0.1'
2828
compile 'com.android.support.constraint:constraint-layout:1.0.2'
2929
compile 'com.android.support:design:27.0.1'
30-
// compile 'com.github.HITGIF:TextFieldBoxes:1.4.0'
30+
// compile 'com.github.HITGIF:TextFieldBoxes:1.4.1'
3131
compile project(':textfieldboxes')
3232
testCompile 'junit:junit:4.12'
3333
}

0 commit comments

Comments
 (0)