Skip to content

Commit db98cfd

Browse files
Release/v9.6.11 (#31)
* Update Parsers * Update version number and code * Update AndroidManifest.xml * chore: Update changelog for v9.6.11
1 parent a88661b commit db98cfd

5 files changed

Lines changed: 37 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@ The format is based on "Keep a Changelog" and follows semantic versioning where
1010

1111
---
1212

13+
## v9.6.11
14+
Date: (see tag)
15+
16+
### Highlights
17+
- Added 'Reading' quick filter (#30).
18+
- Disabled empty sources in search results by default.
19+
20+
### Fixes
21+
- Resolved chapter progress display issue (#28).
22+
- Refactored coroutine jobs to use IO dispatchers instead of Default.
23+
- Various internal bug fixes and performance tweaks.
24+
25+
### Maintenance
26+
- Parser upgrades and dependency/maintenance updates.
27+
- Documentation updates / refactoring.
28+
29+
---
30+
1331
## v9.6.10
1432
Date: (see tag)
1533

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ android {
2828
applicationId 'io.github.landwarderer.futon'
2929
minSdk = 23
3030
targetSdk = 36
31-
versionCode project.hasProperty('versionCode') ? project.property('versionCode').toInteger() : 90610
32-
versionName project.hasProperty('versionName') ? project.property('versionName') : '9.6.10'
31+
versionCode project.hasProperty('versionCode') ? project.property('versionCode').toInteger() : 90611
32+
versionName project.hasProperty('versionName') ? project.property('versionName') : '9.6.11'
3333
generatedDensities = []
3434
testInstrumentationRunner 'io.github.landwarderer.futon.HiltTestRunner'
3535
ksp {

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest
33
package="io.github.landwarderer.futon"
4-
android:versionCode="90610"
5-
android:versionName="9.6.10"
4+
android:versionCode="90611"
5+
android:versionName="9.6.11"
66
xmlns:android="http://schemas.android.com/apk/res/android"
77
xmlns:tools="http://schemas.android.com/tools">
88

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ material = "1.14.0-alpha05"
3434
moshi = "1.15.2"
3535
okhttp = "5.2.1"
3636
okio = "3.16.1"
37-
parsers = "aeed994d96"
37+
parsers = "2a2243f907"
3838
preference = "1.2.1"
3939
recyclerview = "1.4.0"
4040
room = "2.7.2"

metadata/changelogs/90611.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
cAdded 'Reading' quick filter and other improvements.
2+
3+
Highlights:
4+
- Added 'Reading' quick filter (#30).
5+
- Disabled empty sources in search results by default.
6+
7+
Fixes:
8+
- Resolved chapter progress display issue (#28).
9+
- Refactored coroutine jobs to use IO dispatchers instead of Default.
10+
- Various internal bug fixes and performance tweaks.
11+
12+
Maintenance:
13+
- Parser upgrades and dependency/maintenance updates.
14+
- Documentation updates / refactoring.

0 commit comments

Comments
 (0)