From 68bafb0f53f0bcff6d28ec1daed16481a858864c Mon Sep 17 00:00:00 2001 From: wasabeef Date: Wed, 2 Mar 2016 23:09:31 +0900 Subject: [PATCH] bump up 2.0.0 --- CHANGELOG.md | 5 +++++ README.md | 19 ++----------------- gradle.properties | 2 +- 3 files changed, 8 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adb19a5..bb49272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +Version 2.0.0 *(2016-03-02)* +---------------------------- + +Say v8.RenderScript goodbye + Version 1.4.0 *(2016-02-28)* ---------------------------- diff --git a/README.md b/README.md index 2140339..8e65c8e 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ repositories { } dependencies { - compile 'jp.wasabeef:glide-transformations:1.4.0' + compile 'jp.wasabeef:glide-transformations:2.0.0' // If you want to use the GPU Filters compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.3.0' } @@ -55,25 +55,10 @@ You can set a multiple transformations. ```java Glide.with(this).load(R.drawable.demo) - .bitmapTransform(new BlurTransformation(context, 25, 2), new CropCircleTransformation(context)) + .bitmapTransform(new BlurTransformation(context, 25), new CropCircleTransformation(context)) .into((ImageView) findViewById(R.id.image)); ``` -## Step 4 - -If you are using `BlurTransformation`. - -```groovy -android { - ... - defaultConfig { - // Warning:Renderscript support mode is not currently supported with renderscript target 21+ - renderscriptTargetApi 20 - renderscriptSupportModeEnabled true - } -} -``` - ## Transformations ### Crop diff --git a/gradle.properties b/gradle.properties index deb4c55..523c37c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,5 +22,5 @@ POM_DEVELOPER_URL=wasabeef.jp ISSUE_URL=https://github.com/wasabeef/glide-transformations/issues SUPPORT_PACKAGE_VERSION=23.1.1 -GLIDE_VERSION=3.6.1 +GLIDE_VERSION=3.7.0 GPUIMAGE_VERSION=1.3.0 \ No newline at end of file