diff --git a/CHANGELOG.md b/CHANGELOG.md index 192f95e..98647a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== +Version 1.2.0 (2014-09-09) +---------------------------- + +- added new attribute `Stroke`. It adjusts icon paint stroke width for further customisation. Possible values are +`Stroke.REGULAR`, `Stroke.THIN` and `Stroke.EXTRA_THIN` + +Usage: Provide `Stroke` value to a constructor or use `xml` attribute `strokeWidth` for `MaterialMenuView` + Version 1.1.3 (2014-09-03) ---------------------------- diff --git a/README.md b/README.md index 8420d1f..927fee0 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ Check for latest versions at [Gradle Please][4] and import depending on ActionBa ```groovy // stock actionBar -compile 'com.balysv.materialmenu:material-menu:1.1.3' +compile 'com.balysv.materialmenu:material-menu:1.2.0' // actionBarCompat -compile 'com.balysv.materialmenu:material-menu-abc:1.1.3' +compile 'com.balysv.materialmenu:material-menu-abc:1.2.0' // actionBarSherlock -compile 'com.balysv.materialmenu:material-menu-abs:1.1.3' +compile 'com.balysv.materialmenu:material-menu-abs:1.2.0' ``` @@ -40,6 +40,7 @@ app:color="color" // Color of drawable app:transformDuration="integer" // Transformation animation duration app:pressedDuration="integer" // Pressed circle animation duration app:scale="integer" // Scale factor of drawable +app:strokeWidth="integer" // Stroke width of icons (can only be 1, 2 or 3) ``` ### MaterialMenuIcon diff --git a/gradle.properties b/gradle.properties index 53e5ec1..31732c3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=1.1.3 -VERSION_CODE=4 +VERSION_NAME=1.2.0 +VERSION_CODE=5 GROUP=com.balysv.materialmenu POM_NAME=Material Menu