Skip to content

Commit a014d10

Browse files
committed
Release 1.2.2
1 parent b125a68 commit a014d10

File tree

3 files changed

+24
-10
lines changed

3 files changed

+24
-10
lines changed

Diff for: CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Change Log
22
==========
33

4+
Version 1.2.2 (2014-09-22)
5+
----------------------------
6+
7+
- BUG FIX: Added a prefix to ambiguous xml attributes https://code.google.com/p/android/issues/detail?id=22576
8+
9+
Now:
10+
```xml
11+
app:mm_color="color"
12+
app:mm_transformDuration="integer"
13+
app:mm_pressedDuration="integer"
14+
app:mm_scale="integer"
15+
app:mm_strokeWidth="integer"
16+
```
17+
418
Version 1.2.1 (2014-09-21)
519
----------------------------
620

Diff for: README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Check for latest versions at [Gradle Please][4] and import depending on ActionBa
1212

1313
```groovy
1414
// stock actionBar
15-
compile 'com.balysv.materialmenu:material-menu:1.2.1'
15+
compile 'com.balysv.materialmenu:material-menu:1.2.2'
1616
1717
// actionBarCompat
18-
compile 'com.balysv.materialmenu:material-menu-abc:1.2.1'
18+
compile 'com.balysv.materialmenu:material-menu-abc:1.2.2'
1919
2020
// actionBarSherlock
21-
compile 'com.balysv.materialmenu:material-menu-abs:1.2.1'
21+
compile 'com.balysv.materialmenu:material-menu-abs:1.2.2'
2222
```
2323

2424

@@ -36,11 +36,11 @@ A plain old `View` that draws the icon and provides an API to manipulate its sta
3636
Customisation is also available through attributes:
3737

3838
```xml
39-
app:color="color" // Color of drawable
40-
app:transformDuration="integer" // Transformation animation duration
41-
app:pressedDuration="integer" // Pressed circle animation duration
42-
app:scale="integer" // Scale factor of drawable
43-
app:strokeWidth="integer" // Stroke width of icons (can only be 1, 2 or 3)
39+
app:mm_color="color" // Color of drawable
40+
app:mm_transformDuration="integer" // Transformation animation duration
41+
app:mm_pressedDuration="integer" // Pressed circle animation duration
42+
app:mm_scale="integer" // Scale factor of drawable
43+
app:mm_strokeWidth="integer" // Stroke width of icons (can only be 1, 2 or 3)
4444
```
4545

4646
### MaterialMenuIcon

Diff for: gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.2.1
2-
VERSION_CODE=6
1+
VERSION_NAME=1.2.2
2+
VERSION_CODE=7
33
GROUP=com.balysv.materialmenu
44

55
POM_NAME=Material Menu

0 commit comments

Comments
 (0)