Skip to content

Commit cf188f8

Browse files
committed
Release 3.8.0
1 parent 961cde2 commit cf188f8

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ The view optionally uses subsampling and tiles to support very large images - a
2323

2424
Version 3.x.x includes breaking changes. Please view the [migration guide](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/X.--2.x.x-to-3.x.x-migration).
2525

26+
#### 3.8.0 migration
27+
28+
Version 3.8.0 includes a default behaviour change. Image quality is now capped at 320dpi (approximately retina quality) instead of matching the screen's density, which results in high memory use and poor performance when displaying large images on very high density screens. The difference in quality is usually unnoticeable, especially with photos. Use `setMinimumTileDpi(int)` to override the default.
29+
30+
**Support for SDK 10-13 has been dropped. The minimum SDK is now 14.**
31+
2632
#### Download the sample app
2733

2834
[![Get it on Google Play](https://developer.android.com/images/brand/en_generic_rgb_wo_60.png)](https://play.google.com/store/apps/details?id=com.davemorrissey.labs.subscaleview.sample)
@@ -75,7 +81,7 @@ Version 3.x.x includes breaking changes. Please view the [migration guide](https
7581

7682
## Quick start
7783

78-
**1)** Add `com.davemorrissey.labs:subsampling-scale-image-view:3.7.2` as a dependency in your build.gradle file.
84+
**1)** Add `com.davemorrissey.labs:subsampling-scale-image-view:3.8.0` as a dependency in your build.gradle file.
7985

8086
**2)** Add the view to your layout XML.
8187

library/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22

33
group = 'com.davemorrissey.labs'
44
archivesBaseName = 'subsampling-scale-image-view'
5-
version = '3.7.2'
5+
version = '3.8.0'
66

77
android {
88
compileSdkVersion 26

0 commit comments

Comments
 (0)