Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/HITGIF/TextFieldBoxes
Browse files Browse the repository at this point in the history
  • Loading branch information
HITGIF committed Sep 24, 2017
2 parents 019b014 + 691aeef commit 457c1ce
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ A new Material Design text field that comes in a box, based on Google Material D
## ***UPDATE NOTICE***

#### 1.3.1 Release
- fix rendering issue
- performance improvement
- exemplar reformat

#### 1.3.0 Release
- the "EditText" part is now **seperated** from the TextFieldBoxes. TextFieldBoxes is now a **container** (just like a `TextInputLayout`) that should and should only contain **one** `ExtendedEditText` that inherents the `TextInputEditText`.

Expand Down Expand Up @@ -48,7 +53,7 @@ allprojects {
```
```groovy
dependencies {
   compile 'com.github.HITGIF:TextFieldBoxes:1.3.0'
   compile 'com.github.HITGIF:TextFieldBoxes:1.3.1'
}
```

Expand All @@ -65,7 +70,7 @@ dependencies {
<dependency>
<groupId>com.github.HITGIF</groupId>
<artifactId>TextFieldBoxes</artifactId>
   <version>1.3.0</version>
   <version>1.3.1</version>
</dependency>
```

Expand All @@ -74,7 +79,7 @@ dependencies {
resolvers += "jitpack" at "https://jitpack.io"
```
```scala
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.0"
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.1"
```


Expand All @@ -83,7 +88,7 @@ libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.0"
:repositories [["jitpack" "https://jitpack.io"]]
```
```scala
:dependencies [[com.github.hitgif/textfieldboxes "1.3.0"]]
:dependencies [[com.github.hitgif/textfieldboxes "1.3.1"]]
```

Expand Down
13 changes: 9 additions & 4 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
## ***更新注意***

#### 1.3.1 Release
- 修复渲染错误
- 性能优化
- 重构示例代码

#### 1.3.0 Release
- "EditText" 部分现已与 TextFieldBoxes **分开**。 TextFieldBoxes 将作为一个**容器**(就像 `TextInputLayout`),应且只应包含**一个** `ExtendedEditText`(继承于 `TextInputEditText`)。

Expand Down Expand Up @@ -48,7 +53,7 @@ allprojects {
```
```groovy
dependencies {
   compile 'com.github.HITGIF:TextFieldBoxes:1.3.0'
   compile 'com.github.HITGIF:TextFieldBoxes:1.3.1'
}
```

Expand All @@ -65,7 +70,7 @@ dependencies {
<dependency>
<groupId>com.github.HITGIF</groupId>
<artifactId>TextFieldBoxes</artifactId>
   <version>1.3.0</version>
   <version>1.3.1</version>
</dependency>
```

Expand All @@ -74,7 +79,7 @@ dependencies {
resolvers += "jitpack" at "https://jitpack.io"
```
```scala
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.0"
libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.1"
```


Expand All @@ -83,7 +88,7 @@ libraryDependencies += "com.github.HITGIF" % "TextFieldBoxes" % "1.3.0"
:repositories [["jitpack" "https://jitpack.io"]]
```
```scala
:dependencies [[com.github.hitgif/textfieldboxes "1.3.0"]]
:dependencies [[com.github.hitgif/textfieldboxes "1.3.1"]]
```

Expand Down

0 comments on commit 457c1ce

Please sign in to comment.