Skip to content

Commit

Permalink
Prepare release 2.4.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkil committed Aug 31, 2015
1 parent 460e8fc commit de6291e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ Change Log
==========


## Version 2.4.2

_2015-08-31_

* Sync roboto fonts with latest version from [Google Fonts](https://www.google.com/fonts/specimen/Roboto).
* Fix: Russian rouble glyph in pre-lollipop android.


## Version 2.4.1

_2015-08-19_
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Download
Gradle:

```groovy
compile 'com.github.johnkil.android-robototextview:robototextview:2.4.1'
compile 'com.github.johnkil.android-robototextview:robototextview:2.4.2'
```

Maven:
Expand All @@ -40,7 +40,7 @@ Maven:
<dependency>
<groupId>com.github.johnkil.android-robototextview</groupId>
<artifactId>robototextview</artifactId>
<version>2.4.1</version>
<version>2.4.2</version>
<type>aar</type>
</dependency>
```
Expand Down Expand Up @@ -128,7 +128,7 @@ If you intend to use is not all fonts, the extra fonts can be removed.
``` xml
android.applicationVariants.all{ variant ->
variant.mergeAssets.doFirst {
File fonts = file("${projectDir}/build/intermediates/exploded-aar/com.github.johnkil.android-robototextview/robototextview/2.4.1/assets/fonts")
File fonts = file("${projectDir}/build/intermediates/exploded-aar/com.github.johnkil.android-robototextview/robototextview/2.4.2/assets/fonts")
if (fonts.exists()) {
for (File file : fonts.listFiles()) {
if (file.getName().contains("RobotoSlab")) {
Expand Down Expand Up @@ -158,3 +158,6 @@ License
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.


[0]: https://github.com/google/roboto
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# suppress inspection "UnusedProperty" for whole file
GROUP=com.github.johnkil.android-robototextview
VERSION_NAME=2.4.1-SNAPSHOT
VERSION_NAME=2.4.2

POM_DESCRIPTION=Implementation of the fragment with the ability to display indeterminate progress indicator when you are waiting for the initial dataImplementation of a TextView and all its direct/indirect subclasses with native support for the Roboto fonts, includes the brand new Roboto Slab fonts.

Expand Down

0 comments on commit de6291e

Please sign in to comment.