aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Morrissey <davemorrissey@gmail.com>2017-12-02 08:40:06 +0000
committerDavid Morrissey <davemorrissey@gmail.com>2017-12-02 08:40:06 +0000
commitb11947feead2995956c3ddcce01e164aa87332b3 (patch)
tree9e8ef94c3e2539162a60e7b4f46b6ba9960dba5f
parent9eac0c1ad0cb00e8d9575b7a1af8bae7151a82d6 (diff)
downloadsubsampling-scale-image-view-b11947feead2995956c3ddcce01e164aa87332b3.tar.gz
3.9.0 release
-rw-r--r--README.md12
-rw-r--r--library/build.gradle2
2 files changed, 4 insertions, 10 deletions
diff --git a/README.md b/README.md
index 22c417b..7243279 100644
--- a/README.md
+++ b/README.md
@@ -20,15 +20,9 @@ The view optionally uses subsampling and tiles to support very large images - a
* [Extension](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/10.-Extension)
* [Reference (JavaDocs)](http://davemorrissey.github.io/subsampling-scale-image-view/javadoc/)
-#### 2.x.x to 3.x.x migration
+#### Migration guides
-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.
+Versions 3.9.0, 3.8.0 and 3.0.0 contain breaking changes. Migration instructions can be found [in the wiki](https://github.com/davemorrissey/subsampling-scale-image-view/wiki/X.--Release-notes).
#### Download the sample app
@@ -88,7 +82,7 @@ Support for SDK 10-13 has been dropped. The minimum SDK is now 14.
## Quick start
-**1)** Add `com.davemorrissey.labs:subsampling-scale-image-view:3.8.0` as a dependency in your build.gradle file.
+**1)** Add `com.davemorrissey.labs:subsampling-scale-image-view:3.9.0` as a dependency in your build.gradle file.
**2)** Add the view to your layout XML.
diff --git a/library/build.gradle b/library/build.gradle
index 54cadd0..f66ea5f 100644
--- a/library/build.gradle
+++ b/library/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
group = 'com.davemorrissey.labs'
archivesBaseName = 'subsampling-scale-image-view'
-version = '3.9.0.BETA'
+version = '3.9.0'
android {
compileSdkVersion 26