Skip to content

2.4.0 #419

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 7, 2023
Merged

2.4.0 #419

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file. Take a look

**Warning:** Features marked as *experimental* may change or be removed in a future release without notice. Use with caution.

## [Unreleased]
<!-- ## [Unreleased] -->

## [2.4.0]

* Readium is now distributed with [Maven Central](https://search.maven.org/search?q=g:org.readium.kotlin-toolkit). Take a look at [the migration guide](docs/migration-guide.md#240) to update your Gradle configuration.

### Added

Expand Down Expand Up @@ -59,6 +63,7 @@ All notable changes to this project will be documented in this file. Take a look

* Fixed issue with the TTS starting from the beginning of the chapter instead of the current position.


## [2.3.0]

### Added
Expand Down Expand Up @@ -692,4 +697,5 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress
[2.2.0]: https://github.com/readium/kotlin-toolkit/compare/2.1.1...2.2.0
[2.2.1]: https://github.com/readium/kotlin-toolkit/compare/2.2.0...2.2.1
[2.3.0]: https://github.com/readium/kotlin-toolkit/compare/2.2.1...2.3.0
[2.4.0]: https://github.com/readium/kotlin-toolkit/compare/2.3.0...2.4.0

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se

```groovy
buildscript {
ext.readium_version = '2.3.0'
ext.readium_version = '2.4.0'
}

allprojects {
Expand Down
4 changes: 3 additions & 1 deletion docs/migration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

All migration steps necessary in reading apps to upgrade to major versions of the Kotlin Readium toolkit will be documented in this file.

## Unreleased
<!-- ## Unreleased -->

## 2.4.0

### Maven Central

Expand Down
3 changes: 0 additions & 3 deletions jitpack.yml

This file was deleted.

1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ nav:
- OPDS: readium/opds/index.md
- LCP: readium/lcp/index.md
- Adapters:
- Navigator media2: readium/navigator-media2/index.md
- PDFium Document: readium/adapters/pdfium/pdfium-document/index.md
- PDFium Navigator: readium/adapters/pdfium/pdfium-navigator/index.md
- PSPDFKit Document: readium/adapters/pspdfkit/pspdfkit-document/index.md
Expand Down
2 changes: 1 addition & 1 deletion test-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {

applicationId = "org.readium.r2reader"

versionName = "2.3.0"
versionName = "2.4.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
ndk.abiFilters.add("armeabi-v7a")
Expand Down