Skip to content

Commit

Permalink
Merge branch 'release/0.10.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
h6ah4i committed Nov 27, 2016
2 parents 7b7bc5a + a93cd05 commit 18cb7a2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ Target platforms
Latest version
---

- Version 0.10.1 (November 27, 2016) ([RELEASE NOTES](./RELEASE-NOTES.md))
- Version 0.10.2 (November 27, 2016) ([RELEASE NOTES](./RELEASE-NOTES.md))


Getting started
---

This library is published on jCenter. Just add these lines to `build.gradle`.

```groovy
```gradle
dependencies {
compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.10.1@aar'){
compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.10.2@aar'){
transitive=true
}
}
Expand Down
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.10.2
[Bug fixes]
- Fix createDraggingItemImage() method regression (issue #325)

## 0.10.1
[Improvements]
- Updated support library to v25.0.1
Expand Down
4 changes: 2 additions & 2 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
applicationId "com.h6ah4i.android.example.advrecyclerview"
minSdkVersion 9
targetSdkVersion 25
versionCode 23
versionName "0.10.1"
versionCode 24
versionName "0.10.2"
vectorDrawables.useSupportLibrary = true
}

Expand Down
4 changes: 2 additions & 2 deletions library/library-data.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# suppress inspection "UnusedProperty" for whole file
# common
VERSION_NAME=0.10.1
VERSION_CODE=23
VERSION_NAME=0.10.2
VERSION_CODE=24

# for maven-publish
POM_GROUP_ID=com.h6ah4i.android.widget.advrecyclerview
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ private Bitmap createDraggingItemImage(View v, NinePatchDrawable shadow) {
View.MeasureSpec.makeMeasureSpec(viewWidth, View.MeasureSpec.EXACTLY),
View.MeasureSpec.makeMeasureSpec(viewHeight, View.MeasureSpec.EXACTLY));

v.layout(viewTop, viewLeft, viewLeft + viewWidth, viewTop + viewHeight);
v.layout(viewLeft, viewTop, viewLeft + viewWidth, viewTop + viewHeight);

final Bitmap bitmap = Bitmap.createBitmap(canvasWidth, canvasHeight, Bitmap.Config.ARGB_8888);

Expand Down

0 comments on commit 18cb7a2

Please sign in to comment.