Skip to content

Commit ce0a9eb

Browse files
Release/9.7 (#55)
* chore: version updates * fix: workflow fixes * updated metadata and readme
1 parent 794af4f commit ce0a9eb

10 files changed

Lines changed: 42 additions & 11 deletions

File tree

.github/workflows/debug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Build debug APK
3232
env:
3333
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
34-
run: ./gradlew assembleDebug --stacktrace --info
34+
run: ./gradlew assembleDebug --stacktrace --info --no-build-cache --no-configuration-cache
3535

3636
- name: Upload debug APK
3737
uses: actions/upload-artifact@v4

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
7777
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
7878
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
79-
run: ./gradlew assembleNightly
79+
run: ./gradlew assembleNightly --no-build-cache --no-configuration-cache
8080

8181
- name: Get version
8282
id: version

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ jobs:
141141
run: |
142142
./gradlew assembleRelease \
143143
-PversionName=${{ steps.version.outputs.version }} \
144-
-PversionCode=${{ steps.version.outputs.version_code }}
144+
-PversionCode=${{ steps.version.outputs.version_code }} \
145+
--no-build-cache --no-configuration-cache
145146
146147
- name: Notify Discord - APK Build Complete
147148
env:

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@ The format is based on "Keep a Changelog" and follows semantic versioning where
66

77
## [Unreleased]
88
## 9.7
9-
Date: Late March 2026
9+
Date: 2026-04-27
1010

1111
### Highlights
12-
- UI reworks and new features.
12+
- Added Tachiyomi keiyoushi extension compatibility!
13+
- Updated adaptive icon with new monochrome layer and fixed transparency
14+
- New Futon splash icon
15+
- Recent manga can now be shown in the shelf widget
16+
- Added extension downloader activity with search functionality
17+
- Small UI changes (hide navigation bar labels by default, manga details panel background)
1318

14-
- (Work in progress)
19+
### Fixes
20+
- Fixed adaptive icon and splash screen
21+
22+
### Maintenance
23+
- Updated parsers
1524

1625
---
1726
## v9.6.14

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<div align="left">
1212

1313
* Online [manga catalogues](https://github.com/Kotatsu-Redo/kotatsu-parsers-redo) (with 1200+ manga sources)
14+
* Support for [Tachiyomi keiyoushi](https://github.com/keiyoushi/extensions) extensions
1415
* Search manga by name, genres and more filters
1516
* Favorites organized by user-defined categories
1617
* Reading history, bookmarks and incognito mode support
@@ -171,6 +172,8 @@ We are deeply grateful to:
171172
* **The Kotatsu community** for their contributions, testing, and support
172173
* **All translators** who helped localize Kotatsu through [Weblate](https://hosted.weblate.org/engage/kotatsu/)
173174
* **Parser contributors** who maintain the extensive library of [manga sources](https://github.com/Kotatsu-Redo/kotatsu-parsers-redo)
175+
* **[Kotatsu-Redo](https://github.com/Kotatsu-Redo/kotatsu-parsers-redo)** for continuing parser development and maintenance
176+
* **[Kototoro](https://github.com/Kototoro-app/Kototoro)** for the Tachiyomi extension integration guide
174177

175178
This project stands on the shoulders of giants. The Kotatsu team's dedication to creating a feature-rich, user-friendly manga reader has provided an incredible foundation for Futon to build upon.
176179

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ android {
3030
applicationId 'io.github.landwarderer.futon'
3131
minSdk = 23
3232
targetSdk = 36
33-
versionCode project.hasProperty('versionCode') ? project.property('versionCode').toInteger() : 90614
34-
versionName project.hasProperty('versionName') ? project.property('versionName') : '9.6.14'
33+
versionCode project.hasProperty('versionCode') ? project.property('versionCode').toInteger() : 90700
34+
versionName project.hasProperty('versionName') ? project.property('versionName') : '9.7'
3535
generatedDensities = []
3636
testInstrumentationRunner 'io.github.landwarderer.futon.HiltTestRunner'
3737
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="90614"
5-
android:versionName="9.6.14"
4+
android:versionCode="90700"
5+
android:versionName="9.7"
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 = "4c0ce00c35"
37+
parsers = "59c033ecfd"
3838
preference = "1.2.1"
3939
quickjsKt = "1.0.5"
4040
recyclerview = "1.4.0"

metadata/changelogs/90700.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Date: 2026-04-27
2+
Highlights
3+
4+
- Added Tachiyomi keiyoushi extension compatibility!
5+
- Updated adaptive icon with new monochrome layer and fixed transparency
6+
- New Futon splash icon
7+
- Recent manga can now be shown in the shelf widget
8+
- Added extension downloader activity with search functionality
9+
- Small UI changes (hide navigation bar labels by default, manga details panel background)
10+
11+
Fixes
12+
13+
- Fixed adaptive icon and splash screen
14+
15+
Maintenance
16+
17+
- Updated parsers

metadata/en-US/full_description.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Note: Futon is an unofficial fork of Kotatsu
66

77

88
- Online manga catalogs (with 1100+ manga sources)
9+
- Support for Tachiyomi keiyoushi extensions
910
- Search manga by name, genres, and more filters
1011
- Favorites organized by user-defined categories
1112
- Reading history, bookmarks, and incognito mode support

0 commit comments

Comments
 (0)