Skip to content

Commit 04835e0

Browse files
committed
Version 5.2.0 - Added domain config support for coomer.st, Refactor logging, and completed translation for help documentation
- Refactored creator_downloader.py and post_downloader.py to dynamically select API endpoints, referers, and base URLs based on the input URL's domain (kemono.cr or coomer.st). - Replaced all direct string formatting in log messages with translation keys and parameterized calls to `translate()` throughout creator_downloader.py. Added corresponding translation keys and multi-language support for all log messages in kd_language.py. - Added Simplified Chinese translations for all help/manual sections in kd_language.py - Changed all English, Japanese, and Korean translation strings to reference Kemono.cr instead of Kemono.su, including URLs and descriptive text.
1 parent 00a3f6f commit 04835e0

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.2.0 (22 August 2025)
4+
**feat: Added domain config support for coomer.st, Refactor logging, and completed translation for help documentation**
5+
- Refactored creator_downloader.py and post_downloader.py to dynamically select API endpoints, referers, and base URLs based on the input URL's domain (kemono.cr or coomer.st).
6+
- Replaced all direct string formatting in log messages with translation keys and parameterized calls to `translate()` throughout creator_downloader.py. Added corresponding translation keys and multi-language support for all log messages in kd_language.py.
7+
- Added Simplified Chinese translations for all help/manual sections in kd_language.py
8+
- Changed all English, Japanese, and Korean translation strings to reference Kemono.cr instead of Kemono.su, including URLs and descriptive text.
9+
310
## v5.1.0 (20 August 2025)
411
**feat: Enhanced last page detection, expanded logging capabilities, and a new feature to open directories**
512
- Enhanced tracking to accurately detect the last page based on previous fetches, eliminating confusing "failed" messages.

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.1.0-brightgreen" alt="Version">
43+
<img src="https://img.shields.io/badge/version-v5.2.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.1.0"
4+
version = "5.2.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
@@ -16,7 +16,7 @@
1616
from kemonodownloader.kd_help import HelpTab
1717
from kemonodownloader.kd_language import translate, language_manager
1818

19-
CURRENT_VERSION = "5.1.0"
19+
CURRENT_VERSION = "5.2.0"
2020
GITHUB_REPO = "VoxDroid/KemonoDownloader"
2121

2222
class VersionChecker(QThread):

0 commit comments

Comments
 (0)