Skip to content

Commit 71074ea

Browse files
authored
3.1.2 (#715)
1 parent 97367a0 commit 71074ea

File tree

6 files changed

+26
-20
lines changed

6 files changed

+26
-20
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ captures/
5757
# Additional IntelliJ files
5858
.idea/misc.xml
5959
.idea/deploymentTargetDropDown.xml
60+
.idea/copilot.*
6061

6162
# Keystore files
6263
*.jks

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ All notable changes to this project will be documented in this file. Take a look
44

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

7-
## [Unreleased]
7+
<!-- ## [Unreleased] -->
8+
9+
## [3.1.2]
810

911
### Fixed
1012

13+
* 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)).
14+
1115
#### Navigator
1216

1317
* Fixed vertical text scrolling in EPUB for right-to-left reading progression (contributed by [@shovel-kun](https://github.com/readium/kotlin-toolkit/pull/656)).
@@ -980,3 +984,4 @@ progression. Now if no reading progression is set, the `effectiveReadingProgress
980984
[3.0.3]: https://github.com/readium/kotlin-toolkit/compare/3.0.2...3.0.3
981985
[3.1.0]: https://github.com/readium/kotlin-toolkit/compare/3.0.3...3.1.0
982986
[3.1.1]: https://github.com/readium/kotlin-toolkit/compare/3.1.0...3.1.1
987+
[3.1.2]: https://github.com/readium/kotlin-toolkit/compare/3.1.1...3.1.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Readium modules are distributed with [Maven Central](https://search.maven.org/se
9898

9999
```groovy
100100
buildscript {
101-
ext.readium_version = '3.1.1'
101+
ext.readium_version = '3.1.2'
102102
}
103103
104104
allprojects {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# http://www.gradle.org/docs/current/userguide/build_environment.html
77

88
pom.groupId=org.readium.kotlin-toolkit
9-
pom.version=3.1.1
9+
pom.version=3.1.2
1010

1111
android.minSdk=23
1212
android.compileSdk=36

settings.gradle.kts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -46,21 +46,21 @@ include(":readium:navigators:common")
4646
project(":readium:navigators:common")
4747
.name = "readium-navigator-common"
4848

49-
include(":readium:navigators:web:common")
50-
project(":readium:navigators:web:common")
51-
.name = "readium-navigator-web-common"
52-
53-
include(":readium:navigators:web:internals")
54-
project(":readium:navigators:web:internals")
55-
.name = "readium-navigator-web-internals"
56-
57-
include(":readium:navigators:web:reflowable")
58-
project(":readium:navigators:web:reflowable")
59-
.name = "readium-navigator-web-reflowable"
60-
61-
include(":readium:navigators:web:fixedlayout")
62-
project(":readium:navigators:web:fixedlayout")
63-
.name = "readium-navigator-web-fixedlayout"
49+
// include(":readium:navigators:web:common")
50+
// project(":readium:navigators:web:common")
51+
// .name = "readium-navigator-web-common"
52+
//
53+
// include(":readium:navigators:web:internals")
54+
// project(":readium:navigators:web:internals")
55+
// .name = "readium-navigator-web-internals"
56+
//
57+
// include(":readium:navigators:web:reflowable")
58+
// project(":readium:navigators:web:reflowable")
59+
// .name = "readium-navigator-web-reflowable"
60+
//
61+
// include(":readium:navigators:web:fixedlayout")
62+
// project(":readium:navigators:web:fixedlayout")
63+
// .name = "readium-navigator-web-fixedlayout"
6464

6565
include(":readium:navigators:media:common")
6666
project(":readium:navigators:media:common")
@@ -91,4 +91,4 @@ project(":readium:streamer")
9191
.name = "readium-streamer"
9292

9393
include("test-app")
94-
include(":demos:navigator")
94+
// include(":demos:navigator")

test-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android {
2020

2121
applicationId = "org.readium.r2reader"
2222

23-
versionName = "3.1.1"
23+
versionName = "3.1.2"
2424
versionCode = 1
2525

2626
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

0 commit comments

Comments
 (0)