diff --git a/README.md b/README.md index 35df78f..47382cf 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ repositories { } dependencies { - compile 'com.makeramen:roundedimageview:1.1.0@aar' + compile 'com.makeramen:roundedimageview:1.2.0@' } ``` @@ -97,12 +97,18 @@ iv.setBackground(backgroundDrawable); ChangeLog ---------- +* **1.2.0** + * add `setDither` and `setFilterBitmap` method support on RoundedDrawable for tuning bitmap scaling quality + * improved performance for `setImageResource` + * RoundedDrawable constructor is now public + * **1.1.0** - * LayerDrawable support (needs testing!) - * Refactored api to support chaining and remove repetitive code + * LayerDrawable support (needs testing!) + * Refactored api to support chaining and remove repetitive code + * **1.0.0** - * Initial release to maven central - * Programmatically setting attributes with TransitionDrawables not supported. + * Initial release to maven central + * Programmatically setting attributes with TransitionDrawables not supported. diff --git a/build.gradle b/build.gradle index 8ffd121..ef1f362 100644 --- a/build.gradle +++ b/build.gradle @@ -10,8 +10,7 @@ buildscript { allprojects { group 'com.makeramen' - version '1.1.1-SNAPSHOT' - + version '1.2.0' repositories { mavenCentral() } diff --git a/example/build.gradle b/example/build.gradle index 543e749..a01d526 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -2,11 +2,15 @@ apply plugin: 'android' repositories { mavenCentral() +// maven { +// url 'https://oss.sonatype.org/content/repositories/snapshots/' +// url 'https://oss.sonatype.org/content/repositories/releases/' +// } } dependencies { -// compile 'com.makeramen:roundedimageview:1.1.0' - compile project(':roundedimageview') + compile 'com.makeramen:roundedimageview:1.2.0' +// compile project(':roundedimageview') } android {