Skip to content
Merged

3.1.2 #715

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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ captures/
# Additional IntelliJ files
.idea/misc.xml
.idea/deploymentTargetDropDown.xml
.idea/copilot.*

# Keystore files
*.jks
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ 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.1.2]

### Fixed

* Fixed [16 KB page sizes](https://developer.android.com/guide/practices/page-sizes) support (contributed by [@gustavaa](https://github.com/readium/kotlin-toolkit/pull/710)).

#### Navigator

* Fixed vertical text scrolling in EPUB for right-to-left reading progression (contributed by [@shovel-kun](https://github.com/readium/kotlin-toolkit/pull/656)).
Expand Down Expand Up @@ -980,3 +984,4 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress
[3.0.3]: https://github.com/readium/kotlin-toolkit/compare/3.0.2...3.0.3
[3.1.0]: https://github.com/readium/kotlin-toolkit/compare/3.0.3...3.1.0
[3.1.1]: https://github.com/readium/kotlin-toolkit/compare/3.1.0...3.1.1
[3.1.2]: https://github.com/readium/kotlin-toolkit/compare/3.1.1...3.1.2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se

```groovy
buildscript {
ext.readium_version = '3.1.1'
ext.readium_version = '3.1.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.1.1
pom.version=3.1.2

android.minSdk=23
android.compileSdk=36
Expand Down
32 changes: 16 additions & 16 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,21 @@ include(":readium:navigators:common")
project(":readium:navigators:common")
.name = "readium-navigator-common"

include(":readium:navigators:web:common")
project(":readium:navigators:web:common")
.name = "readium-navigator-web-common"

include(":readium:navigators:web:internals")
project(":readium:navigators:web:internals")
.name = "readium-navigator-web-internals"

include(":readium:navigators:web:reflowable")
project(":readium:navigators:web:reflowable")
.name = "readium-navigator-web-reflowable"

include(":readium:navigators:web:fixedlayout")
project(":readium:navigators:web:fixedlayout")
.name = "readium-navigator-web-fixedlayout"
// include(":readium:navigators:web:common")
// project(":readium:navigators:web:common")
// .name = "readium-navigator-web-common"
//
// include(":readium:navigators:web:internals")
// project(":readium:navigators:web:internals")
// .name = "readium-navigator-web-internals"
//
// include(":readium:navigators:web:reflowable")
// project(":readium:navigators:web:reflowable")
// .name = "readium-navigator-web-reflowable"
//
// include(":readium:navigators:web:fixedlayout")
// project(":readium:navigators:web:fixedlayout")
// .name = "readium-navigator-web-fixedlayout"

include(":readium:navigators:media:common")
project(":readium:navigators:media:common")
Expand Down Expand Up @@ -91,4 +91,4 @@ project(":readium:streamer")
.name = "readium-streamer"

include("test-app")
include(":demos:navigator")
// include(":demos:navigator")
2 changes: 1 addition & 1 deletion test-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {

applicationId = "org.readium.r2reader"

versionName = "3.1.1"
versionName = "3.1.2"
versionCode = 1

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