From 1253147c4af6345625101aaf37bc7d87c90eaa4f Mon Sep 17 00:00:00 2001 From: wasabeef Date: Wed, 16 Sep 2015 22:49:01 +0900 Subject: [PATCH] bump up --- README.md | 10 +++++----- gradle.properties | 4 ++-- transformations/build.gradle | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5c77265..ab9a9c3 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,8 @@ android { ## Transformations ### Crop -`CropTransformation`, `CropCircleTransformation`, `CropSquareTransformation` +`CropTransformation`, `CropCircleTransformation`, `CropSquareTransformation`, +`RoundedCornersTransformation` ### Color `ColorFilterTransformation`, `GrayscaleTransformation` @@ -84,14 +85,13 @@ android { ### Blur `BlurTransformation` -### Filter (use [GPUImage](https://github.com/CyberAgent/android-gpuimage)) +### GPU Filter (use [GPUImage](https://github.com/CyberAgent/android-gpuimage)) +*Will require add dependencies for GPUImage.* + `ToonFilterTransformation`, `SepiaFilterTransformation`, `ContrastFilterTransformation` `InvertFilterTransformation`, `PixelationFilterTransformation`, `SketchFilterTransformation` `SwirlFilterTransformation`, `KuwaharaFilterTransformation`, `VignetteFilterTransformation` -### Other -`RoundedCornersTransformation` - Applications using Glide Transformations --- diff --git a/gradle.properties b/gradle.properties index 010e193..8df4ba7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -VERSION_NAME=1.1.0 -VERSION_CODE=9 +VERSION_NAME=1.2.0 +VERSION_CODE=10 GROUP=jp.wasabeef ARTIFACT_ID=glide-transformations diff --git a/transformations/build.gradle b/transformations/build.gradle index 10be9d3..1038596 100644 --- a/transformations/build.gradle +++ b/transformations/build.gradle @@ -16,7 +16,7 @@ android { dependencies { compile "com.github.bumptech.glide:glide:${GLIDE_VERSION}" - compile "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}" + provided "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}" } android.libraryVariants.all { variant ->