diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c6f276..7aad433 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log ========== +Version 1.1.0 (2014-08-26) +---------------------------- + +- Added new morphing icon - CHECK + +Usage: Use standard API with `IconState.CHECK` + Version 1.0.0 (2014-07-11) ---------------------------- diff --git a/README.md b/README.md index 780de5d..29d2373 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Material Menu =============== -Morphing Android menu, back and dismiss buttons +Morphing Android menu, back, dismiss and check buttons ![Demo Image][1] @@ -11,7 +11,7 @@ Including in your project The library is available on Maven Central dependencies { - compile 'com.balysv:material-menu:1.0.0' + compile 'com.balysv:material-menu:1.1.0' } @@ -40,9 +40,9 @@ A POJO that initializes the drawable and replaces the ActionBar icon. See usage ## API -There are three icon states: +There are four icon states: - BURGER, ARROW, X + BURGER, ARROW, X, CHECK To morph the drawable state with a pressed circle animation diff --git a/art/demo.gif b/art/demo.gif index 89d4961..781d76a 100644 Binary files a/art/demo.gif and b/art/demo.gif differ diff --git a/library/build.gradle b/library/build.gradle index 77c56a4..048a6a4 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -8,8 +8,8 @@ android { applicationId "com.balysv.material.drawable.menu" minSdkVersion 14 targetSdkVersion 19 - versionCode 1 - versionName "1.0.0" + versionCode 2 + versionName "1.1.0" } compileOptions {