Skip to content

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
HITGIF committed Feb 27, 2018
1 parent 11f33fe commit ac93af3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 18 deletions.
17 changes: 8 additions & 9 deletions README.md
Expand Up @@ -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
Expand All @@ -48,7 +47,7 @@ allprojects {
```
```groovy
dependencies {
   compile 'com.github.HITGIF:TextFieldBoxes:1.4.0'
   compile 'com.github.HITGIF:TextFieldBoxes:1.4.1'
}
```

Expand All @@ -65,7 +64,7 @@ dependencies {
<dependency>
<groupId>com.github.HITGIF</groupId>
<artifactId>TextFieldBoxes</artifactId>
   <version>1.4.0</version>
   <version>1.4.1</version>
</dependency>
```

Expand All @@ -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"
```


Expand All @@ -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"]]
```

Expand Down
15 changes: 7 additions & 8 deletions README_CN.md
Expand Up @@ -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) 或更高
Expand All @@ -46,7 +45,7 @@ allprojects {
```
```groovy
dependencies {
   compile 'com.github.HITGIF:TextFieldBoxes:1.4.0'
   compile 'com.github.HITGIF:TextFieldBoxes:1.4.1'
}
```

Expand All @@ -63,7 +62,7 @@ dependencies {
<dependency>
<groupId>com.github.HITGIF</groupId>
<artifactId>TextFieldBoxes</artifactId>
   <version>1.4.0</version>
   <version>1.4.1</version>
</dependency>
```

Expand All @@ -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"
```


Expand All @@ -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"]]
```

Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Expand Up @@ -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'
}

0 comments on commit ac93af3

Please sign in to comment.