Skip to content

Commit

Permalink
Bump version, modify README, and prep for release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nvanbenschoten committed Aug 16, 2015
1 parent bd3b9f9 commit 3221341
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 25 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repositories {
}

dependencies{
compile 'com.nvanbenschoten.motion:library:1.1.0'
compile 'com.nvanbenschoten.motion:library:1.1.1'
}
```
**Or**:
Expand All @@ -46,7 +46,7 @@ Add the following to your `pom.xml`:
<dependency>
<groupId>com.nvanbenschoten.motion</groupId>
<artifactId>library</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>
<type>aar</type>
</dependency>
```
Expand Down Expand Up @@ -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).

Expand All @@ -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
22 changes: 3 additions & 19 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 3221341

Please sign in to comment.