Skip to content
Merged
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
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
<!-- ## [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

Expand All @@ -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]
Expand Down Expand Up @@ -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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 = "3.0.0-beta.1"
versionName = "3.0.0-beta.2"
versionCode = 300000

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down