From b09c6521f65f655b6a6c04e2247a39a6b7b0045c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Menu?= Date: Wed, 24 Jul 2024 14:17:50 +0200 Subject: [PATCH] 3.0.0-beta.2 --- CHANGELOG.md | 20 +++++++++++++++++++- README.md | 2 +- gradle.properties | 2 +- test-app/build.gradle.kts | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0c54230f1..d446560d88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,19 @@ 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] + + +## [3.0.0-beta.2] + +### Added + +#### Navigator + +* Added `ExoPlayerDataSourceProvider` to implement resource caching with the media3 audio navigator. + +#### LCP + +* A new `LcpService.retrieveLicenseDocument()` API can be used to read the LCPL embedded in a ZIP package. ### Changed @@ -14,9 +26,14 @@ All notable changes to this project will be documented in this file. Take a look ### Fixed +#### Shared + +* Fixed concurrent access when streaming a ZIP container. + #### Navigator * Optimized scrolling to an EPUB text-based locator if it contains a CSS selector. +* Fixed applying the PSPDFKit reading progression preference on configuration changes. ## [3.0.0-beta.1] @@ -859,4 +876,5 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress [3.0.0-alpha.1]: https://github.com/readium/kotlin-toolkit/compare/2.4.1...3.0.0-alpha.1 [3.0.0-alpha.2]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-alpha.1...3.0.0-alpha.2 [3.0.0-beta.1]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-alpha.2...3.0.0-beta.1 +[3.0.0-beta.2]: https://github.com/readium/kotlin-toolkit/compare/3.0.0-beta.1...3.0.0-beta.2 diff --git a/README.md b/README.md index 56d91a6c64..abc4372a65 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se ```groovy buildscript { - ext.readium_version = '3.0.0-beta.1' + ext.readium_version = '3.0.0-beta.2' } allprojects { diff --git a/gradle.properties b/gradle.properties index 78ecadd060..0be95289c0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,7 +6,7 @@ # http://www.gradle.org/docs/current/userguide/build_environment.html pom.groupId=org.readium.kotlin-toolkit -pom.version=3.0.0-beta.1 +pom.version=3.0.0-beta.2 android.minSdk=21 android.compileSdk=34 diff --git a/test-app/build.gradle.kts b/test-app/build.gradle.kts index fff3f826a0..dc3d867436 100644 --- a/test-app/build.gradle.kts +++ b/test-app/build.gradle.kts @@ -19,7 +19,7 @@ android { applicationId = "org.readium.r2reader" - versionName = "3.0.0-beta.1" + versionName = "3.0.0-beta.2" versionCode = 300000 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"