Skip to content

Commit aff3bbb

Browse files
committed
Version 5.4.0 - Added customizable retry count settings, fix thread settings, and improved download handling
- [#39](#39) Add home folder permissions for Flatpak - [#42](#42) Added customizable retry count settings in the settings page, removing the hardcoded values. - [#44](#44) Improved download handling, counting and fetching files. - Suppress MarkupResemblesLocatorWarning from BeautifulSoup
1 parent 60fda08 commit aff3bbb

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Kemono Downloader Release Notes
22

3+
## v5.4.0 (10 September 2025)
4+
**feat: Added customizable retry count settings, fix thread settings, and improved download handling**
5+
- [#39](https://github.com/VoxDroid/KemonoDownloader/pull/39) Add home folder permissions for Flatpak
6+
- [#42](https://github.com/VoxDroid/KemonoDownloader/pull/42) Added customizable retry count settings in the settings page, removing the hardcoded values.
7+
- [#44](https://github.com/VoxDroid/KemonoDownloader/pull/44) Improved download handling, counting and fetching files.
8+
- Suppress MarkupResemblesLocatorWarning from BeautifulSoup
9+
310
## v5.3.0 (28 August 2025)
411
**feat: Add .webp support for image previews and filters**
512
- Extended image preview, detection, and filter logic in creator_downloader.py and post_downloader.py to include .webp files alongside existing image formats.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<img src="https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-lightgrey" alt="Platforms">
4141
</a>
4242
<a href="https://github.com/VoxDroid/KemonoDownloader/releases">
43-
<img src="https://img.shields.io/badge/version-v5.3.0-brightgreen" alt="Version">
43+
<img src="https://img.shields.io/badge/version-v5.4.0-brightgreen" alt="Version">
4444
</a>
4545
<a>
4646
<img src="https://img.shields.io/github/v/release/VoxDroid/KemonoDownloader?label=Latest%20Release" alt="Latest Release">

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.briefcase]
22
project_name = "Kemono Downloader"
33
bundle = "com.voxdroid"
4-
version = "5.3.0"
4+
version = "5.4.0"
55
url = "https://github.com/VoxDroid/KemonoDownloader"
66
license.file = "LICENSE"
77
author = "VoxDroid"

src/kemonodownloader/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
warnings.filterwarnings("ignore", category=MarkupResemblesLocatorWarning)
2222

23-
CURRENT_VERSION = "5.3.0"
23+
CURRENT_VERSION = "5.4.0"
2424
GITHUB_REPO = "VoxDroid/KemonoDownloader"
2525

2626
class VersionChecker(QThread):

0 commit comments

Comments
 (0)