Skip to content

Commit 3221341

Browse files
committed
Bump version, modify README, and prep for release 1.1.1
1 parent bd3b9f9 commit 3221341

File tree

2 files changed

+9
-25
lines changed

2 files changed

+9
-25
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ repositories {
3636
}
3737

3838
dependencies{
39-
compile 'com.nvanbenschoten.motion:library:1.1.0'
39+
compile 'com.nvanbenschoten.motion:library:1.1.1'
4040
}
4141
```
4242
**Or**:
@@ -46,7 +46,7 @@ Add the following to your `pom.xml`:
4646
<dependency>
4747
<groupId>com.nvanbenschoten.motion</groupId>
4848
<artifactId>library</artifactId>
49-
<version>1.1.0</version>
49+
<version>1.1.1</version>
5050
<type>aar</type>
5151
</dependency>
5252
```
@@ -85,13 +85,13 @@ Configurations
8585
There are three attributes that can be changed to adjust the parallax effect of the ImageView.
8686
Each can be accessed either through XML attributes or through Java functions.
8787

88-
* motionIntensity (float) - adjusts the strength of the parallax effect, giving control over the
88+
* intensity (attr:motionIntensity) (float) - adjusts the strength of the parallax effect, giving control over the
8989
perceived depth of the view.
9090

91-
* motionTiltSensitivity (float) - adjusts the sensitivity of the view towards tilting, changing how quickly
91+
* tiltSensitivity (attr:motionTiltSensitivity) (float) - adjusts the sensitivity of the view towards tilting, changing how quickly
9292
the parallax's bounds are reached.
9393

94-
* motionScaledIntensity (boolean) - adjusts whether the ImageView's x and y axis' parallax intensities
94+
* scaledIntensity (attr:motionScaledIntensity) (boolean) - adjusts whether the ImageView's x and y axis' parallax intensities
9595
are scaled to the image's aspect ratio or equal to each other and to the smaller of the axis'
9696
intensities (false by default).
9797

@@ -113,4 +113,4 @@ License
113113
limitations under the License.
114114

115115
[1]: https://github.com/nvanbenschoten/motion/releases
116-
[2]: https://github.com/nvanbenschoten/motion/releases/download/v1.1.0/com.nvanbenschoten.motion-1.1.0.jar
116+
[2]: https://github.com/nvanbenschoten/motion/releases/download/v1.1.1/com.nvanbenschoten.motion-1.1.1.jar

gradle.properties

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,8 @@
11
# Project-wide Gradle settings.
2+
# suppress inspection "UnusedProperty" for whole file
23

3-
# IDE (e.g. Android Studio) users:
4-
# Settings specified in this file will override any Gradle settings
5-
# configured through the IDE.
6-
7-
# For more details on how to configure your build environment visit
8-
# http://www.gradle.org/docs/current/userguide/build_environment.html
9-
10-
# Specifies the JVM arguments used for the daemon process.
11-
# The setting is particularly useful for tweaking memory settings.
12-
# Default value: -Xmx10248m -XX:MaxPermSize=256m
13-
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14-
15-
# When configured, Gradle will run in incubating parallel mode.
16-
# This option should only be used with decoupled projects. More details, visit
17-
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18-
# org.gradle.parallel=true
19-
20-
VERSION_NAME=1.1.0
21-
VERSION_CODE=42
4+
VERSION_NAME=1.1.1
5+
VERSION_CODE=50
226
GROUP=com.nvanbenschoten.motion
237

248
POM_DESCRIPTION=An Android library allowing images to exhibit a parallax effect

0 commit comments

Comments
 (0)