Przeglądaj źródła

One more change to the Typeface stuff. Release 0.6.2.1.

Aidan Follestad 10 lat temu
rodzic
commit
9ae39eb57e
3 zmienionych plików z 7 dodań i 8 usunięć
  1. 4 5
      README.md
  2. 2 2
      library/build.gradle
  3. 1 1
      sample/build.gradle

+ 4 - 5
README.md

@@ -23,7 +23,7 @@ Easily reference the library in your Android projects using this dependency in y
 
 ```Gradle
 dependencies {
-    compile 'com.afollestad:material-dialogs:0.6.2'
+    compile 'com.afollestad:material-dialogs:0.6.2.1'
 }
 ```
 
@@ -320,12 +320,11 @@ you're responsible for using padding values that look good with your content.
 
 By default, Material Dialogs will use the Roboto Medium font for the dialog title and action buttons on Lollipop. Below
 Lollipop, Roboto Regular with a bold style will be used in place of Roboto Medium (due to Roboto Medium
-not being available as a system font until Lollipop). Note that Roboto is only a system font on devices that
-implement it as such; a lot of LG devices and Samsung devices that are not Nexus devices use handwriting-style fonts.
+not being available as a system font until Lollipop).
 
 If you want this default behavior to be avoided, you can make a call to `disableDefaultFonts()` when
-using the `Builder`. This will result in the library not applying and medium or bold styling, and everything
-will use the regular system font.
+using the `Builder`. This will result in the library not applying Roboto and Roboto Medium fonts,
+and everything will use the regular system font.
 
 If you want to explicitly use custom fonts, you can make a call to `typeface(String, String)` when
 using the `Builder`. This will pull fonts from TTF files in your project's `assets` folder. For an example,

+ 2 - 2
library/build.gradle

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

+ 1 - 1
sample/build.gradle

@@ -9,7 +9,7 @@ android {
         minSdkVersion 14
         targetSdkVersion 21
         versionCode 72
-        versionName "0.6.2"
+        versionName "0.6.2.1"
     }
     lintOptions {
         abortOnError false