From 32213418fc672919690c905ce807f5cc769f6774 Mon Sep 17 00:00:00 2001 From: Nathan VanBenschoten Date: Sat, 15 Aug 2015 23:21:28 -0400 Subject: [PATCH] Bump version, modify README, and prep for release 1.1.1 --- README.md | 12 ++++++------ gradle.properties | 22 +++------------------- 2 files changed, 9 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 51a8a0e..82aa945 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ repositories { } dependencies{ - compile 'com.nvanbenschoten.motion:library:1.1.0' + compile 'com.nvanbenschoten.motion:library:1.1.1' } ``` **Or**: @@ -46,7 +46,7 @@ Add the following to your `pom.xml`: com.nvanbenschoten.motion library - 1.1.0 + 1.1.1 aar ``` @@ -85,13 +85,13 @@ Configurations There are three attributes that can be changed to adjust the parallax effect of the ImageView. Each can be accessed either through XML attributes or through Java functions. -* motionIntensity (float) - adjusts the strength of the parallax effect, giving control over the +* intensity (attr:motionIntensity) (float) - adjusts the strength of the parallax effect, giving control over the perceived depth of the view. -* motionTiltSensitivity (float) - adjusts the sensitivity of the view towards tilting, changing how quickly +* tiltSensitivity (attr:motionTiltSensitivity) (float) - adjusts the sensitivity of the view towards tilting, changing how quickly the parallax's bounds are reached. -* motionScaledIntensity (boolean) - adjusts whether the ImageView's x and y axis' parallax intensities +* scaledIntensity (attr:motionScaledIntensity) (boolean) - adjusts whether the ImageView's x and y axis' parallax intensities are scaled to the image's aspect ratio or equal to each other and to the smaller of the axis' intensities (false by default). @@ -113,4 +113,4 @@ License limitations under the License. [1]: https://github.com/nvanbenschoten/motion/releases - [2]: https://github.com/nvanbenschoten/motion/releases/download/v1.1.0/com.nvanbenschoten.motion-1.1.0.jar + [2]: https://github.com/nvanbenschoten/motion/releases/download/v1.1.1/com.nvanbenschoten.motion-1.1.1.jar diff --git a/gradle.properties b/gradle.properties index ffe33d7..5f34c37 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,24 +1,8 @@ # Project-wide Gradle settings. +# suppress inspection "UnusedProperty" for whole file -# IDE (e.g. Android Studio) users: -# Settings specified in this file will override any Gradle settings -# configured through the IDE. - -# For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html - -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -# Default value: -Xmx10248m -XX:MaxPermSize=256m -# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 - -# When configured, Gradle will run in incubating parallel mode. -# This option should only be used with decoupled projects. More details, visit -# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects -# org.gradle.parallel=true - -VERSION_NAME=1.1.0 -VERSION_CODE=42 +VERSION_NAME=1.1.1 +VERSION_CODE=50 GROUP=com.nvanbenschoten.motion POM_DESCRIPTION=An Android library allowing images to exhibit a parallax effect