Skip to content

Commit

Permalink
publish v1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Piasy committed Oct 23, 2018
1 parent 68a9ac3 commit 8a23aca
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change log

+ v1.5.6
- Replace deprecated Glide SimpleTarget, #131;
- Fix NPE when thumbnail scale type not specified, #130;
+ v1.5.5
- Migrate to Android X.
+ v1.5.4
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ allprojects {
}
}
compile 'com.github.piasy:BigImageViewer:1.5.5'
compile 'com.github.piasy:BigImageViewer:1.5.6'
// load with fresco
compile 'com.github.piasy:FrescoImageLoader:1.5.5'
compile 'com.github.piasy:FrescoImageLoader:1.5.6'
// load with glide
compile 'com.github.piasy:GlideImageLoader:1.5.5'
compile 'com.github.piasy:GlideImageLoader:1.5.6'
// progress pie indicator
compile 'com.github.piasy:ProgressPieIndicator:1.5.5'
compile 'com.github.piasy:ProgressPieIndicator:1.5.6'
// support thumbnail, gif and webp with Fresco
compile 'com.github.piasy:FrescoImageViewFactory:1.5.5'
compile 'com.github.piasy:FrescoImageViewFactory:1.5.6'
// support thumbnail and gif with Glide
compile 'com.github.piasy:GlideImageViewFactory:1.5.5'
compile 'com.github.piasy:GlideImageViewFactory:1.5.6'
```

### Initialize
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ dependencies {
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
implementation 'com.github.akarnokd:rxjava2-interop:0.13.2'
implementation('com.github.piasy:RxQrCode:1.3.0')
implementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
implementation 'com.squareup.leakcanary:leakcanary-android:1.6.2'

implementation project(':BigImageViewer')
implementation project(':FrescoImageLoader')
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,16 +75,16 @@ ext {
'usage and full featured image loading choices. Powered by Subsampling Scale ' +
'Image View, Fresco, Glide, and Picasso.'
artifactLabels = ['big', 'image', 'viewer', 'Fresco', 'Glide', 'Picasso']
releaseVersionCode = 32
releaseVersionName = '1.5.5'
releaseVersionCode = 33
releaseVersionName = '1.5.6'

androidCompileSdkVersion = 28
androidBuildToolsVersion = '28.0.2'
androidXVersion = '1.0.0'
minSdkVersion = 14
targetSdkVersion = 28

frescoVersion = '1.10.0'
frescoVersion = '1.11.0'
glideVersion = '4.8.0'
ssivVersion = '3.10.0'
}

0 comments on commit 8a23aca

Please sign in to comment.