Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 4f77803

Browse files
committed
Update build tools to 2.2.3
Update README and CHANGELOG Update version
1 parent bb61b2a commit 4f77803

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.4.0 (2016-12-30)
2+
* Merge pull request by [hansinator85](https://github.com/hansinator85) which allows to enable/disable rendering during scale
3+
* Make rendering during scale disabled by default (looks better)
4+
* Merge pull request by [cesquivias](https://github.com/cesquivias) which replaces RenderingAsyncTask with Handler to simply code and work with testing frameworks
5+
16
## 2.3.0 (2016-11-19)
27
* Add mechanism for providing documents from different sources - more info in README
38
* Update PdfiumAndroid to 1.5.0

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,10 @@ Library for displaying PDF documents on Android, with `animations`, `gestures`,
1010
It is based on [PdfiumAndroid](https://github.com/barteksc/PdfiumAndroid) for decoding PDF files. Works on API 11 and higher.
1111
Licensed under Apache License 2.0.
1212

13-
## What's new in 2.3.0?
14-
* Add mechanism for providing documents from different sources - more info [here](#document-sources)
15-
* Update PdfiumAndroid to 1.5.0
16-
* Thanks to document sources and PdfiumAndroid update, in-memory documents are supported
17-
* Fix not working OnClickListener on PDFView
18-
* **com.github.barteksc.exception.FileNotFoundException** is deprecated and all usages was removed.
19-
All exceptions are delivered to old Configurator#onError() listener.
13+
## What's new in 2.4.0?
14+
* Merge pull request by [hansinator85](https://github.com/hansinator85) which allows to enable/disable rendering during scale
15+
* Make rendering during scale disabled by default (looks better)
16+
* Merge pull request by [cesquivias](https://github.com/cesquivias) which replaces RenderingAsyncTask with Handler to simply code and work with testing frameworks
2017

2118
## Changes in 2.0 API
2219
* `Configurator#defaultPage(int)` and `PDFView#jumpTo(int)` now require page index (i.e. starting from 0)
@@ -31,7 +28,7 @@ All exceptions are delivered to old Configurator#onError() listener.
3128

3229
Add to _build.gradle_:
3330

34-
`compile 'com.github.barteksc:android-pdf-viewer:2.3.0'`
31+
`compile 'com.github.barteksc:android-pdf-viewer:2.4.0'`
3532

3633
Library is available in jcenter repository, probably it'll be in Maven Central soon.
3734

android-pdf-viewer/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ext {
1313
siteUrl = 'https://github.com/barteksc/AndroidPdfViewer'
1414
gitUrl = 'https://github.com/barteksc/AndroidPdfViewer.git'
1515

16-
libraryVersion = '2.3.0'
16+
libraryVersion = '2.4.0'
1717

1818
developerId = 'barteksc'
1919
developerName = 'Bartosz Schiller'
@@ -32,7 +32,7 @@ android {
3232
minSdkVersion 11
3333
targetSdkVersion 23
3434
versionCode 1
35-
versionName "2.3.0"
35+
versionName "2.4.0"
3636
}
3737

3838
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
jcenter()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:2.2.2'
7+
classpath 'com.android.tools.build:gradle:2.2.3'
88
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
99
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1010
}

0 commit comments

Comments
 (0)