Aidan Follestad пре 10 година
родитељ
комит
ac54bfbbbe
5 измењених фајлова са 9 додато и 9 уклоњено
  1. 2 2
      CHANGELOG.md
  2. 3 3
      README.md
  3. 2 2
      library/build.gradle
  4. 2 2
      sample/build.gradle
  5. BIN
      sample/sample.apk

+ 2 - 2
CHANGELOG.md

@@ -1,13 +1,13 @@
 # Changelog
 
-###### Version 0.5.5 - 0.5.6
+###### Version 0.5.5 - 0.5.7
 
 > 1. Added `itemColor` and `itemColorRes` methods to the Builder for changing default list item color.
 > 2. Added `accentColor` and `accentColorRes` methods as a convenience method to the three methods `positiveColor`, `negativeColor`, and `neutralColor` (and their 'res' variants).
 > 3. Added `ThemeSingleton`, for internal use only right now unless you really think your app needs it. Used for dynamic global theming (changing at/after runtime).
 > 4. In the Builder, the `icon` method for a drawable resource ID was renamed to `iconRes` for consistency.
 >
-> Quick fix in 0.5.6.
+> Quick fix in 0.5.6, fixed title gravity in 0.5.7.
 
 ###### Version 0.5.4
 

+ 3 - 3
README.md

@@ -8,14 +8,14 @@ The code you see below is also found in the sample project. You can download a A
 
 For the full history, see the [Changelog](https://github.com/afollestad/material-dialogs/blob/master/CHANGELOG.md).
 
-###### Version 0.5.5 - 0.5.6
+###### Version 0.5.5 - 0.5.7
 
 > 1. Added `itemColor` and `itemColorRes` methods to the Builder for changing default list item color.
 > 2. Added `accentColor` and `accentColorRes` methods as a convenience method to the three methods `positiveColor`, `negativeColor`, and `neutralColor` (and their 'res' variants).
 > 3. Added `ThemeSingleton`, for internal use only right now unless you really think your app needs it. Used for dynamic global theming (changing at/after runtime).
 > 4. In the Builder, the `icon` method for a drawable resource ID was renamed to `iconRes` for consistency.
 >
-> Quick fix in 0.5.6.
+> Quick fix in 0.5.6, fixed title gravity in 0.5.7.
 
 ###### Version 0.5.4
 
@@ -59,7 +59,7 @@ Easily reference the library in your Android projects using this dependency in y
 
 ```Groovy
 dependencies {
-    compile 'com.afollestad:material-dialogs:0.5.6'
+    compile 'com.afollestad:material-dialogs:0.5.7'
 }
 ```
 

+ 2 - 2
library/build.gradle

@@ -9,7 +9,7 @@ android {
         minSdkVersion 8
         targetSdkVersion 21
         versionCode 1
-        versionName "0.5.6"
+        versionName "0.5.7"
     }
     lintOptions {
         abortOnError false
@@ -27,7 +27,7 @@ publish {
     userOrg = 'drummer-aidan'
     groupId = 'com.afollestad'
     artifactId = 'material-dialogs'
-    version = '0.5.6'
+    version = '0.5.7'
     description = 'A library for implementing Material design styled dialogs across all versions of Android.'
     website = 'https://github.com/afollestad/material-dialogs'
     issueTracker = "${website}/issues"

+ 2 - 2
sample/build.gradle

@@ -8,8 +8,8 @@ android {
         applicationId "com.afollestad.materialdialogssample"
         minSdkVersion 14
         targetSdkVersion 21
-        versionCode 61
-        versionName "0.5.6"
+        versionCode 62
+        versionName "0.5.7"
     }
     lintOptions {
         abortOnError false

BIN
sample/sample.apk