Skip to content

Commit 82e13a4

Browse files
committed
1.3.7
1 parent d2594f1 commit 82e13a4

File tree

2 files changed

+14
-26
lines changed

2 files changed

+14
-26
lines changed

README.md

+7-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# TextFieldBoxes
22

33
[![Build Status](https://travis-ci.org/HITGIF/TextFieldBoxes.svg?branch=master)](https://travis-ci.org/HITGIF/TextFieldBoxes)
4-
[![Code Climate](https://codeclimate.com/github/HITGIF/TextFieldBoxes/badges/gpa.svg)](https://codeclimate.com/github/HITGIF/TextFieldBoxes)
54
[![JitPack](https://jitpack.io/v/HITGIF/TextFieldBoxes.svg)](https://jitpack.io/#HITGIF/TextFieldBoxes)
65
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-TextFieldBoxes-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/6158)
76
[![API](https://img.shields.io/badge/API-15%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=15)
@@ -19,22 +18,16 @@ A new Material Design text field that comes in a box, based on Google Material D
1918
2019
## ***UPDATE NOTICE***
2120

21+
#### 1.3.7 Release
22+
- fix issue #37 #38.
23+
2224
#### 1.3.6 Release
2325
- fix issue #34 and reoccurring #14.
2426

2527
- add getter for onError (#33).
2628

2729
- the space for the floating label at the top will be removed when `labelText` is empty (#35).
2830

29-
#### 1.3.5 Release
30-
- fix issue #31 #32.
31-
32-
- add `giveFocus` param in `setError()` for setting whether the field will gain focus when set error on.
33-
34-
- add `secondaryColor` for setting the color of the underline, the floating label text and the icon signifier **when NOT HAVING** focus (opposite to `primaryColor`).
35-
36-
- add `counterColor` for setting the color of the counter text.
37-
3831
3932
## Requirements
4033
- Android 4.0.3 IceCreamSandwich (API lv 15) or greater
@@ -55,7 +48,7 @@ allprojects {
5548
```
5649
```groovy
5750
dependencies {
58-
   compile 'com.github.HITGIF:TextFieldBoxes:1.3.6'
51+
   compile 'com.github.HITGIF:TextFieldBoxes:1.3.7'
5952
}
6053
```
6154

@@ -72,7 +65,7 @@ dependencies {
7265
<dependency>
7366
<groupId>com.github.HITGIF</groupId>
7467
<artifactId>TextFieldBoxes</artifactId>
75-
   <version>1.3.6</version>
68+
   <version>1.3.7</version>
7669
</dependency>
7770
```
7871

@@ -81,7 +74,7 @@ dependencies {
8174
resolvers += "jitpack" at "https://jitpack.io"
8275
```
8376
```scala
84-
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.6"
77+
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.7"
8578
```
8679

8780

@@ -90,7 +83,7 @@ libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.6"
9083
:repositories [["jitpack" "https://jitpack.io"]]
9184
```
9285
```scala
93-
:dependencies [[com.github.hitgif/textfieldboxes "1.3.6"]]
86+
:dependencies [[com.github.hitgif/textfieldboxes "1.3.7"]]
9487
```
9588

9689

README_CN.md

+7-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# TextFieldBoxes
22

33
[![Build Status](https://travis-ci.org/HITGIF/TextFieldBoxes.svg?branch=master)](https://travis-ci.org/HITGIF/TextFieldBoxes)
4-
[![Code Climate](https://codeclimate.com/github/HITGIF/TextFieldBoxes/badges/gpa.svg)](https://codeclimate.com/github/HITGIF/TextFieldBoxes)
54
[![JitPack](https://jitpack.io/v/HITGIF/TextFieldBoxes.svg)](https://jitpack.io/#HITGIF/TextFieldBoxes)
65
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-TextFieldBoxes-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/6158)
76
[![API](https://img.shields.io/badge/API-15%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=15)
@@ -19,20 +18,16 @@
1918
2019
## ***更新注意***
2120

21+
#### 1.3.7 Release
22+
- 修复 issue #37 #38
23+
2224
#### 1.3.6 Release
2325
- 修复 issue #34 与再次出现的 #14
2426

2527
- 增加了对 onError 的获取器(#33)。
2628

2729
- 当顶部标签文本(`labelText`)为空时,其所占的空间将被移除(#35)。
2830

29-
#### 1.3.5 Release
30-
- 修复 issue #31 #32
31-
32-
- 增加 `secondaryColor` 属性以设置底部的线、标签文字和首图标在**失去焦点**时的颜色(与 `primaryColor` 相对)。
33-
34-
- 增加 `counterColor` 属性以设置计数文本的颜色。
35-
3631
3732
## 要求
3833
- Android 4.0.3 IceCreamSandwich (API lv 15) 或更高
@@ -53,7 +48,7 @@ allprojects {
5348
```
5449
```groovy
5550
dependencies {
56-
   compile 'com.github.HITGIF:TextFieldBoxes:1.3.6'
51+
   compile 'com.github.HITGIF:TextFieldBoxes:1.3.7'
5752
}
5853
```
5954

@@ -70,7 +65,7 @@ dependencies {
7065
<dependency>
7166
<groupId>com.github.HITGIF</groupId>
7267
<artifactId>TextFieldBoxes</artifactId>
73-
   <version>1.3.6</version>
68+
   <version>1.3.7</version>
7469
</dependency>
7570
```
7671

@@ -79,7 +74,7 @@ dependencies {
7974
resolvers += "jitpack" at "https://jitpack.io"
8075
```
8176
```scala
82-
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.6"
77+
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.7"
8378
```
8479

8580

@@ -88,7 +83,7 @@ libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.6"
8883
:repositories [["jitpack" "https://jitpack.io"]]
8984
```
9085
```scala
91-
:dependencies [[com.github.hitgif/textfieldboxes "1.3.6"]]
86+
:dependencies [[com.github.hitgif/textfieldboxes "1.3.7"]]
9287
```
9388

9489

0 commit comments

Comments
 (0)