File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
1432Date: (see tag)
1533
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ material = "1.14.0-alpha05"
3434moshi = " 1.15.2"
3535okhttp = " 5.2.1"
3636okio = " 3.16.1"
37- parsers = " aeed994d96 "
37+ parsers = " 2a2243f907 "
3838preference = " 1.2.1"
3939recyclerview = " 1.4.0"
4040room = " 2.7.2"
Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments