Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
IvBaranov committed Oct 18, 2015
1 parent de8b984 commit edad737
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ allprojects {
}
}
dependencies {
compile 'com.github.ivbaranov:MaterialLetterIcon:0.2.0'
compile 'com.github.ivbaranov:MaterialLetterIcon:0.2.1'
}
```

Expand All @@ -46,6 +46,8 @@ MaterialLetterIcon icon = new MaterialLetterIcon.Builder(context) //
.letterSize(26)
.lettersNumber(1)
.letterTypeface(yourTypeface)
.initials(false)
.initialsNumber(2)
.create();
```

Expand All @@ -59,6 +61,8 @@ app:mli_letter="" // letter or string to get first letter
app:mli_letter_color="@color/white" // letter color
app:mli_letter_size="26" // letter size SP
app:mli_letters_number="1" // number of letters to get from string
app:mli_initials="false" // turn on initials mode
app:mli_initials_number="2" // number of initials to be showed
```


Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ MIN_SDK_VERSION=11
TARGET_SDK_VERSION=23

# Current library version
VERSION_NAME=0.1.0
VERSION_NAME=0.2.1

# Dependency versions (library)
SUPPORT_LIBRARY_VERSION=23.0.1
SUPPORT_LIBRARY_VERSION=23.1.0

# Dependency versions (plugins)
GRADLE_PLUGIN_VERSION=1.3.0

0 comments on commit edad737

Please sign in to comment.