Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0347a36

Browse files
committed
Update README and CHANGELOG
Update version
1 parent 7ff63fe commit 0347a36

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.0 (2016-07-13)
2+
* update PdfiumAndroid to 1.4.0 with support for rendering annotations
3+
* merge pull request by [usef](https://github.com/usef) for rendering annotations
4+
15
## 1.2.0 (2016-07-11)
26
* update PdfiumAndroid to 1.3.1 with support for bookmarks, Table Of Contents and documents with password:
37
* added method `PDFView#getDocumentMeta()`, which returns document metadata

README.md

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

9+
## What's new in 1.3.0?
10+
* update PdfiumAndroid to 1.4.0 with support for rendering annotations
11+
* merge pull request by [usef](https://github.com/usef) for rendering annotations
12+
913
## What's new in 1.2.0?
1014
* update PdfiumAndroid to 1.3.1 with support for bookmarks, Table Of Contents and documents with password:
1115
* added method `PDFView#getDocumentMeta()`, which returns document metadata
@@ -22,7 +26,7 @@ and some incompatibilities with current API (only few small).
2226

2327
Add to _build.gradle_:
2428

25-
`compile 'com.github.barteksc:android-pdf-viewer:1.2.0'`
29+
`compile 'com.github.barteksc:android-pdf-viewer:1.3.0'`
2630

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

@@ -54,6 +58,7 @@ pdfView.fromAsset(String)
5458
.onLoad(onLoadCompleteListener)
5559
.onPageChange(onPageChangeListener)
5660
.onError(onErrorListener)
61+
.enableAnnotationRendering(false)
5762
.password(null)
5863
.load();
5964
```

android-pdf-viewer/build.gradle

Lines changed: 3 additions & 3 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 = '1.2.0'
16+
libraryVersion = '1.3.0'
1717

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

3838
}
3939

4040
dependencies {
41-
compile 'com.github.barteksc:pdfium-android:1.3.1'
41+
compile 'com.github.barteksc:pdfium-android:1.4.0'
4242
}
4343

4444
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'

0 commit comments

Comments
 (0)