File tree 3 files changed +24
-10
lines changed
3 files changed +24
-10
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
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
+
4
18
Version 1.2.1 (2014-09-21)
5
19
----------------------------
6
20
Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ Check for latest versions at [Gradle Please][4] and import depending on ActionBa
12
12
13
13
``` groovy
14
14
// stock actionBar
15
- compile 'com.balysv.materialmenu:material-menu:1.2.1 '
15
+ compile 'com.balysv.materialmenu:material-menu:1.2.2 '
16
16
17
17
// actionBarCompat
18
- compile 'com.balysv.materialmenu:material-menu-abc:1.2.1 '
18
+ compile 'com.balysv.materialmenu:material-menu-abc:1.2.2 '
19
19
20
20
// actionBarSherlock
21
- compile 'com.balysv.materialmenu:material-menu-abs:1.2.1 '
21
+ compile 'com.balysv.materialmenu:material-menu-abs:1.2.2 '
22
22
```
23
23
24
24
@@ -36,11 +36,11 @@ A plain old `View` that draws the icon and provides an API to manipulate its sta
36
36
Customisation is also available through attributes:
37
37
38
38
``` 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)
44
44
```
45
45
46
46
### MaterialMenuIcon
Original file line number Diff line number Diff line change 1
- VERSION_NAME =1.2.1
2
- VERSION_CODE =6
1
+ VERSION_NAME =1.2.2
2
+ VERSION_CODE =7
3
3
GROUP =com.balysv.materialmenu
4
4
5
5
POM_NAME =Material Menu
You can’t perform that action at this time.
0 commit comments