Skip to content

Commit b188c3f

Browse files
committed
Update 1.1.4
1 parent 403f066 commit b188c3f

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ Or use Gradle jCenter:
2525

2626
Or Gradle Maven Central:
2727

28-
compile 'com.github.gigamole.slideimageview:library:1.1.3'
28+
compile 'com.github.gigamole.slideimageview:library:1.1.4'
2929

3030
Or Maven:
3131

3232
<dependency>
3333
<groupId>com.github.gigamole.slideimageview</groupId>
3434
<artifactId>library</artifactId>
35-
<version>1.1.3</version>
35+
<version>1.1.4</version>
3636
<type>aar</type>
3737
</dependency>
3838

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: "com.jfrog.bintray"
44

5-
version = "1.1.3"
5+
version = "1.1.4"
66

77
android {
88
compileSdkVersion 21
@@ -12,7 +12,7 @@ android {
1212
minSdkVersion 8
1313
targetSdkVersion 21
1414
versionCode 1
15-
versionName "1.1.3"
15+
versionName "1.1.4"
1616
}
1717
buildTypes {
1818
release {

library/library.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="com.github.gigamole.slideimageview" external.system.module.version="1.1.3" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="com.github.gigamole.slideimageview" external.system.module.version="1.1.4" type="JAVA_MODULE" version="4">
33
<component name="FacetManager">
44
<facet type="android-gradle" name="Android-Gradle">
55
<configuration>

library/src/main/java/com/gigamole/slideimageview/lib/SlideImageView.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,6 @@ protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
176176

177177
@Override
178178
protected void onDraw(Canvas canvas) {
179-
super.onDraw(canvas);
180-
181179
if (this.axis == Axis.HORIZONTAL) {
182180
if (this.horizontalDirection == HorizontalDirection.LEFT_TO_RIGHT) {
183181
if (Math.round(this.bitmapX) == this.slideSize) {

0 commit comments

Comments
 (0)