Skip to content

Commit

Permalink
Release 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davemorrissey committed Nov 16, 2017
1 parent 961cde2 commit cf188f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ The view optionally uses subsampling and tiles to support very large images - a

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).

#### 3.8.0 migration

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.

**Support for SDK 10-13 has been dropped. The minimum SDK is now 14.**

#### Download the sample app

[![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)
Expand Down Expand Up @@ -75,7 +81,7 @@ Version 3.x.x includes breaking changes. Please view the [migration guide](https

## Quick start

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

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

Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

group = 'com.davemorrissey.labs'
archivesBaseName = 'subsampling-scale-image-view'
version = '3.7.2'
version = '3.8.0'

android {
compileSdkVersion 26
Expand Down

0 comments on commit cf188f8

Please sign in to comment.