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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,24 @@ The format is based on "Keep a Changelog" and follows semantic versioning where

---

## v9.6.11
Date: (see tag)

### Highlights
- Added 'Reading' quick filter (#30).
- Disabled empty sources in search results by default.

### Fixes
- Resolved chapter progress display issue (#28).
- Refactored coroutine jobs to use IO dispatchers instead of Default.
- Various internal bug fixes and performance tweaks.

### Maintenance
- Parser upgrades and dependency/maintenance updates.
- Documentation updates / refactoring.

---

## v9.6.10
Date: (see tag)

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ android {
applicationId 'io.github.landwarderer.futon'
minSdk = 23
targetSdk = 36
versionCode project.hasProperty('versionCode') ? project.property('versionCode').toInteger() : 90610
versionName project.hasProperty('versionName') ? project.property('versionName') : '9.6.10'
versionCode project.hasProperty('versionCode') ? project.property('versionCode').toInteger() : 90611
versionName project.hasProperty('versionName') ? project.property('versionName') : '9.6.11'
generatedDensities = []
testInstrumentationRunner 'io.github.landwarderer.futon.HiltTestRunner'
ksp {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="io.github.landwarderer.futon"
android:versionCode="90610"
android:versionName="9.6.10"
android:versionCode="90611"
android:versionName="9.6.11"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ material = "1.14.0-alpha05"
moshi = "1.15.2"
okhttp = "5.2.1"
okio = "3.16.1"
parsers = "aeed994d96"
parsers = "2a2243f907"
preference = "1.2.1"
recyclerview = "1.4.0"
room = "2.7.2"
Expand Down
14 changes: 14 additions & 0 deletions metadata/changelogs/90611.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
cAdded 'Reading' quick filter and other improvements.

Highlights:
- Added 'Reading' quick filter (#30).
- Disabled empty sources in search results by default.

Fixes:
- Resolved chapter progress display issue (#28).
- Refactored coroutine jobs to use IO dispatchers instead of Default.
- Various internal bug fixes and performance tweaks.

Maintenance:
- Parser upgrades and dependency/maintenance updates.
- Documentation updates / refactoring.