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
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,31 @@ All notable changes to this project are documented in this file.

The format is based on "Keep a Changelog" and follows semantic versioning where possible.

## [Unreleased]
## 9.7.2[Unreleased]
- Ui updates
- New nav bar
- New futon color scheme

## 9.7.1
Date: 2026-06-30

### Highlights
- Mihon sources usability improved
- Performance improvements
- added option to add bulk manga to favorites
- added merge option for backup restoration
- Added an Easter egg :O
### Fixes
- Fixed the bug where Mihon sources could not be unpinned or disabled and stayed permanently pinned. Now they work the same as any other source.
- Fixed a bug where downloaded manga won't be used instead manga is fetched all times. Now if local manga present, the local manga will be used.
- hide spinner on main-frame load errors in BrowserClient
- Fix app crashes on android 6

### Maintenance
- Updated parsers and dependencies

---

## 9.7
Date: 2026-04-27

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ android {
applicationId 'io.github.landwarderer.futon'
minSdk = 23
targetSdk = 36
versionCode project.hasProperty('versionCode') ? project.property('versionCode').toInteger() : 90700
versionName project.hasProperty('versionName') ? project.property('versionName') : '9.7'
versionCode project.hasProperty('versionCode') ? project.property('versionCode').toInteger() : 90701
versionName project.hasProperty('versionName') ? project.property('versionName') : '9.7.1'
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="90700"
android:versionName="9.7"
android:versionCode="90701"
android:versionName="9.7.1"
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 @@ -35,7 +35,7 @@ material = "1.14.0-alpha05"
moshi = "1.15.2"
okhttp = "5.2.1"
okio = "3.16.1"
parsers = "59c033ecfd"
parsers = "f287c414a6"
preference = "1.2.1"
quickjsKt = "1.0.5"
recyclerview = "1.4.0"
Expand Down
19 changes: 19 additions & 0 deletions metadata/en-US/changelogs/90701.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Date: 2026-06-30
Highlights

- Mihon sources usability improved
- Performance improvements
- added option to add bulk manga to favorites
- added merge option for backup restoration
- Added an Easter egg :O

Fixes

- Fixed the bug where Mihon sources could not be unpinned or disabled and stayed permanently pinned. Now they work the same as any other source.
- Fixed a bug where downloaded manga won't be used instead manga is fetched all times. Now if local manga present, the local manga will be used.
- hide spinner on main-frame load errors in BrowserClient
- Fix app crashes on android 6

Maintenance

- Updated parsers and dependencies
Loading