Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Commit

Permalink
version bump and readme update for 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
vinc3m1 committed Dec 18, 2013
1 parent 2e4fd23 commit 5f76083
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repositories {
}
dependencies {
compile 'com.makeramen:roundedimageview:1.1.0@aar'
compile 'com.makeramen:roundedimageview:1.2.0@'
}
```

Expand Down Expand Up @@ -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.



Expand Down
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ buildscript {

allprojects {
group 'com.makeramen'
version '1.1.1-SNAPSHOT'

version '1.2.0'
repositories {
mavenCentral()
}
Expand Down
8 changes: 6 additions & 2 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5f76083

Please sign in to comment.