Skip to content

Commit

Permalink
Release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
balysv committed Oct 14, 2014
1 parent cf507d8 commit c89fe1b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Change Log
==========

Version 1.3.1 (2014-10-14)
----------------------------

- UI fix: Remove up arrow indicator margins when using `MaterialMenuIcon` since
you could see some extra space on the left side of the icon.
If a different margin is required, find the 'Home' view of the ActionBar and apply them
(example for stock ActionBar) :

```java
View view = activity.getWindow().getDecorView().findViewById(
resources.getIdentifier("android:id/home", null, null)
);
ViewGroup.MarginLayoutParams params = (ViewGroup.MarginLayoutParams) view.getLayoutParams();
params.leftMargin = someMargin;
```

- `MaterialMenuBase` abstraction improvements

Version 1.3.0 (2014-10-12)
----------------------------

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION_NAME=1.3.0
VERSION_CODE=10
VERSION_NAME=1.3.1
VERSION_CODE=11
GROUP=com.balysv.materialmenu

POM_NAME=Material Menu
Expand Down

0 comments on commit c89fe1b

Please sign in to comment.