Skip to content

Releases: VoxDroid/KemonoDownloader

v5.10.0

07 Mar 05:14
c703560

Choose a tag to compare

KemonoDownloader 5.10.0 Release

Feature Update

Welcome to the KemonoDownloader 5.10.0 release!

This version introduces Fast Mode for dramatically quicker batch downloading, moves file deduplication to a proper SQLite database, adds customizable application fonts, improves progress reporting and corruption handling, and includes many stability & UI fixes.

The biggest highlights are:

  • Fast Mode — one-click batch downloading of multiple creators or posts with automatic queue processing
  • SQLite-based hash database (replaces JSON) → much better performance + corruption detection via file size
  • Application-wide font settings (JetBrains Mono / Poppins) with bundled fonts
  • Greatly improved progress bars, UI locking during downloads, and log window responsiveness

As always, KemonoDownloader remains fully open-source and free to use, modify, and build.

Changelog

  • Fast Mode for Post & Creator Downloaders (major feature)

    • New toggle (bolt icon) enables "Fast Mode" in both tabs
    • Auto-selects all categories, locks options, shows batch URL input (one per line)
    • Auto-removes completed items from queue
    • Creator Fast Mode: automatically detects & downloads all posts per creator sequentially
    • Info dialog (ℹ) explains the feature
    • Full translations (EN/JA/KO/ZH) + unit tests
  • SQLite Hash Database & File Size Corruption Detection (major feature)

    • Replaced file_hashes.json with thread-safe SQLite backend (WAL mode)
    • New HashDB class: has(), add(), remove(), all_hashes()
    • Automatic JSON → SQLite migration on first use
    • Added file_size column; compares size before expensive MD5 check
    • Auto re-download on size mismatch (corruption/incomplete file detection)
    • Schema migration (ALTER TABLE) for existing DBs + legacy support
    • 7 + 16 new unit tests (migration, CRUD, thread-safety, corruption cases)
  • Accurate Progress Bars & Download Tracking Fixes

    • Fixed stalled progress when files fail
    • Now counts both completed + failed toward overall progress
    • Proper file_completed(…, success: bool) signal usage
    • Removed premature completion signals before validation
    • Added failed-files tracking & proper reset logic
  • UI Locking During Downloads

    • Disables nearly all controls (inputs, checkboxes, lists, tabs, settings…) while downloading
    • Only Cancel button + Expand Logs remain active
    • Clean set_downloading_ui_state() implementation in both tabs
  • Non-freezing Expand Logs Window

    • Switched to QTimer-based batched HTML updates (500 ms)
    • Prevents freezes during high-volume logging
  • Customizable Application Fonts

    • New Font Settings section in Settings tab
    • Choose between JetBrains Mono (default) and Poppins
    • Bundled TTF files (Regular/Bold/Medium weights)
    • Persisted via QSettings, applied globally (including intro/help/extension tabs)
    • Recursive font propagation + new font_changed signal
    • Full translations + 39 unit tests (persistence, UI, reset, dialog messages…)
  • Other Fixes & Maintenance

    • Fixed locale.getlocale() crash on Python 3.14 / CachyOS (use LC_CTYPE)
    • Flatpak: include PyQt BaseApp → provides libgssapi_krb5.so.2 (fixes runtime crashes)

Pre-Compiled Binaries

To support ongoing development, maintenance, SQLite integration, font bundling, and future features, pre-compiled binaries are available via contribution. Choose the option that fits your usage:

  • Monthly Support (Recommended): Get binaries for all current and future versions, including regular updates and new features.
    Get Monthly Binaries →

  • Single-Version Contribution: Get binaries only for v5.10.0.
    Future versions (5.11.0 etc.) will require separate or monthly contributions.
    Get v5.10.0 Binaries →

Note: New versions usually arrive every few weeks/months with fixes and enhancements — monthly support gives the best long-term value.

Available Binaries (v5.10.0)

(update these filenames when you upload them)

  • Linux (Arch-based): L-KemonoDownloader-5.10.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora): L-KemonoDownloader-5.10.0-1.fcXX.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.10.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64 / Apple Silicon): M-KemonoDownloader-5.10.0-arm64.dmg
  • macOS (Intel): M-KemonoDownloader-5.10.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.10.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.10.0-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.10.0 binaries.

Open-Source Availability

KemonoDownloader is and will always remain open source.
Full source code, build instructions, extension source, and documentation are available in the repository. Feel free to compile it yourself or contribute!

Support the Project

Contributions via Ko-fi help fund development time, server costs, domain renewals, and new features like Fast Mode and SQLite deduplication. Thank you to everyone who supports the project — it makes continued work possible!

Thank you for using KemonoDownloader!

Support development & get binaries

v5.9.0

09 Feb 13:35
16afdf5

Choose a tag to compare

KemonoDownloader 5.9.0 Release

Feature Update

Welcome to the KemonoDownloader 5.9.0 release!
This version brings powerful new customization options for creator downloads, launches the Kemono Downloader browser extension, and includes numerous reliability, UI, and compatibility improvements.

The biggest highlights are:

  • Deeply customizable filenames and folder structures when downloading creators
  • A standalone browser extension for direct downloading from Kemono/Coomer sites
  • Much better error handling, Tor detection, image previews, and extension compatibility

As always, KemonoDownloader remains fully open-source and free to use, modify, and build.

Changelog

  • Creator Filename & Folder Customization (major feature)

    • Added fully customizable filename templates and folder organization strategies
    • New Settings tab section with:
      • Preset + custom editable filename templates
      • Folder strategy selector (per_post / single_folder / by_file_type)
      • Help button with template variable documentation
    • Supports automatic numbering on filename conflicts
    • Saves per-post description files as desc_{post_id}.txt when appropriate
    • Sanitized paths, avoids redundant creator folder repetition
    • Comprehensive unit tests + thread-safety checks
    • Improved top-level exception protection & logging in download threads
  • Initial Kemono Downloader Browser Extension

    • Standalone Chrome/Firefox-compatible extension for Kemono & Coomer
    • Background script handles downloads + CORS
    • Content script adds UI elements and parses posts
    • Supports multi-file downloads with progress feedback
    • Direct anchor downloads for ZIP/text files (better incognito support)
    • Updated to Manifest V2 for broadest compatibility (with MV3 notes in docs)
  • New Browser Extension Tab + Documentation

    • Added dedicated "Browser Extension" tab in the app with setup instructions
    • Detailed README section covering installation, usage, troubleshooting
    • MV2 vs MV3 differences and known compatibility workarounds documented
  • Tor Auto-Detection & Image Preview Improvements

    • Smarter Tor executable search — now checks app-local folders first (including subfolders)
    • Fixed image preview loading by properly wrapping data in QByteArrayQPixmap
    • Ensured boolean type for Tor button states (bool(tor_exists))
  • API Fetch & Extension Robustness

    • Added fallback parsing + background fetches with custom headers
    • Better error handling for non-standard API responses / auth situations
  • Other Fixes & Maintenance

    • Filename truncation in extension UI for better readability
    • CI: switched to libasound2t64 on Ubuntu
    • Updated Debian system requirements & test dependencies (types-requests)
    • Removed unnecessary asyncio from main requirements
    • Added type stubs for fake_useragent and qtawesome
    • Minor UI/translation updates for new features

Pre-Compiled Binaries

To support ongoing development, maintenance, and the new browser extension, pre-compiled binaries are available via contribution. Choose the option that fits your usage:

  • Monthly Support (Recommended): Get binaries for all current and future versions, including regular updates and new features.
    Get Monthly Binaries →

  • Single-Version Contribution: Get binaries only for v5.9.0.
    Future versions (5.10.0 etc.) will require separate contributions.
    Get v5.9.0 Binaries →

Note: New versions usually arrive every few weeks/months with fixes and enhancements — monthly support gives the best long-term value.

Available Binaries (v5.9.0)

  • Linux (Arch-based): L-KemonoDownloader-5.9.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora): L-KemonoDownloader-5.9.0-1.fcXX.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.9.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64 / Apple Silicon): M-KemonoDownloader-5.9.0-arm64.dmg
  • macOS (Intel): M-KemonoDownloader-5.9.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.9.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.9.0-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.9.0 binaries.

Open-Source Availability

KemonoDownloader is and will always remain open source.
Full source code, build instructions, extension source, and documentation are available in the repository. Feel free to compile it yourself or contribute!

Support the Project

Contributions via Ko-fi help fund development time, server costs, domain renewals, and new features like the browser extension. Thank you to everyone who supports the project — it makes continued work possible!

Thank you for using KemonoDownloader!

Support development & get binaries

v5.8.0

31 Dec 09:10
9b7bb7d

Choose a tag to compare

KemonoDownloader 5.8.0 Release

Feature Update

Welcome to the KemonoDownloader 5.8.0 release! This update focuses on enhanced download flexibility, better Tor reliability across platforms, and significant UI improvements for bulk operations and content handling. We've added FLAC support, optional post description saving, and smarter URL parsing, making your downloading experience smoother and more capable. As always, KemonoDownloader remains fully open-source and free to use, modify, and build.

Changelog

  • Tor Compatibility Fixes & Improvements:
    • Resolved Tor startup issues on Linux and improved cross-platform behavior.
    • Now creates a temporary torrc file on Linux to prevent conflicts with system configurations.
    • Uses the --torc-file argument for cleaner and more reliable Tor initialization.
  • FLAC Audio Support:
    • Added full FLAC file support in both creator and post downloaders.
    • FLAC files are now properly detected, previewed in the UI, and can be filtered using the existing format checkboxes.
  • Download Post Text as desc.txt:
    • New checkbox option in creator and post downloaders to save post text content as desc.txt.
    • Includes fetching, parsing, translation handling, and detailed logging for success or failure.
    • Updated language files with new translation keys for the option.
  • Multi-Selection & Bulk Actions:
    • Enabled extended multi-selection in post and file lists (both CreatorDownloaderTab and PostDownloaderTab).
    • Checkbox toggling, highlighting, and actions now apply to all selected items.
    • Refactored selection handling to use selection change events for better performance and usability.
  • Improved URL Parsing for Creator Downloads:
    • Enhanced robustness when extracting service and creator IDs from URLs.
    • Better handling of query parameters (e.g., offset, search queries) and single-page requests.
    • Added cleaning of extracted values and improved error handling for malformed or unexpected URL structures.

Pre-Compiled Binaries

To support the ongoing development and maintenance of KemonoDownloader, you can contribute to access pre-compiled binaries (executable files). Please choose the option that best fits your needs:

  • Monthly Support (Recommended for regular users): Contribute to get binaries for all current and future versions. This helps sustain regular improvements and ensures you always have the latest features. Get binaries here.
  • Single-Version Contribution (This version only): Contribute to get the binaries for Kemono Downloader v5.8.0 ONLY. This option supports the project while providing access to this specific version's executable files. Important: Future versions (5.9.0, etc.) will require separate contributions. Get v5.8.0 binaries here.

Note: New versions are released regularly with bug fixes and improvements. If you plan to use the software more than once or want to receive updates, Monthly Support provides better value.

Available Binaries

  • Linux (Arch-based): L-KemonoDownloader-5.8.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora 42): L-KemonoDownloader-5.8.0-1.fc43.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.8.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64): M-KemonoDownloader-5.8.0-arm64.dmg
  • macOS (x86_64): M-KemonoDownloader-5.8.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.8.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.8.0-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.8.0 binaries.

Open-Source Availability

KemonoDownloader is and will always be open-source. The full source code, build instructions, and documentation are available in this repository. You're welcome to compile the software yourself or contribute to its development!

Support the Project

Your contributions through Ko-fi help keep KemonoDownloader actively maintained, enabling continued improvements and new features. Thank you for supporting this project's sustainability!

Thank you for using KemonoDownloader!
Get v5.8.0 binaries

Kemono Downloader v5.7.0

28 Dec 12:14
f5ada2d

Choose a tag to compare

KemonoDownloader 5.7.0 Release

Feature Update
Welcome to the KemonoDownloader 5.7.0 release! This update brings highly requested proxy support, including full Tor integration, directly into the settings and download pipeline, giving users greater control over privacy and accessibility. Additionally, we've continued improving internationalization by localizing key log messages. KemonoDownloader remains fully open-source, and you can use, modify, and build the software for free under its license.

Changelog

  • Full Proxy and Tor Support:
    • Added comprehensive proxy configuration options in the Settings UI, supporting both custom HTTP/SOCKS proxies and built-in Tor integration.
    • Includes Tor process auto-start/stop management, automatic port detection, and a connection test feature.
    • Refactored download logic to route all requests through the configured proxy (or Tor), ensuring consistent behavior across creators and posts.
    • Updated confirmation dialogs and language strings for all new proxy/Tor-related options.
    • Added PySocks to requirements to enable SOCKS5 proxy support (including Tor).
  • Improved Localization in Post Downloader:
    • Replaced hardcoded log messages and tooltips in post_downloader.py with proper translation calls.
    • Added corresponding translation keys to kd_language.py, enabling accurate localization for all post-download progress, status, and error messages.

Pre-Compiled Binaries

To support the ongoing development and maintenance of KemonoDownloader, you can contribute to access pre-compiled binaries (executable files). Please choose the option that best fits your needs:

  • Monthly Support (Recommended for regular users): Contribute to get binaries for all current and future versions. This helps sustain regular improvements and ensures you always have the latest features. Get binaries here.
  • Single-Version Contribution (This version only): Contribute to get the binaries for Kemono Downloader v5.7.0 ONLY. This option supports the project while providing access to this specific version's executable files. Important: Future versions (5.8.0, etc.) will require separate contributions. Get v5.7.0 binaries here (link will be updated upon release).
    Note: New versions are released regularly with bug fixes and improvements. If you plan to use the software more than once or want to receive updates, Monthly Support provides better value.

Available Binaries

  • Linux (Arch-based): L-KemonoDownloader-5.7.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora 42): L-KemonoDownloader-5.7.0-1.fc43.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.7.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64): M-KemonoDownloader-5.7.0-arm64.dmg
  • macOS (x86_64): M-KemonoDownloader-5.7.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.7.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.7.0-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.7.0 binaries.

Open-Source Availability

KemonoDownloader is and will always be open-source. The full source code, build instructions, and documentation are available in this repository. You're welcome to compile the software yourself or contribute to its development!

Support the Project

Your contributions through Ko-fi help keep KemonoDownloader actively maintained, enabling continued improvements and new features. Thank you for supporting this project's sustainability!

Thank you for using KemonoDownloader!
Get v5.7.0 binaries

Kemono Downloader v5.6.0

23 Dec 05:28
7d2b849

Choose a tag to compare

KemonoDownloader 5.6.0 Release

Feature Update
Welcome to the KemonoDownloader 5.6.0 release! This update focuses on enhancing the user interface, improving URL handling reliability, and adding convenient new import options to make managing large collections even easier. KemonoDownloader remains fully open-source, and you can use, modify, and build the software for free under its license.

Changelog

  • Added Import from .txt File:
    • New button to quickly import creator and post URLs directly from a plain text file, streamlining bulk additions.
  • URL Normalization:
    • Consistently strips trailing slashes from URLs in both creator_downloader.py and post_downloader.py. This prevents duplicate queue entries and ensures uniform URL handling across the app.
  • Post List Pagination and Global Select-All:
    • Introduced pagination controls for the creator post list, allowing smoother navigation and better performance when handling large numbers of posts.
    • Added a “Check ALL (All)” checkbox to select or deselect every post across all pages.
    • Improved incremental UI updates, post fetching efficiency, error handling, and cancellation support.
  • Redesigned Intro Screen:
    • Refactored the IntroScreen layout with a prominent app image and version label.
    • Moved the app title, developer credit, and GitHub link to a cleaner footer section for a more modern and polished appearance.

Pre-Compiled Binaries

To support the ongoing development and maintenance of KemonoDownloader, you can contribute to access pre-compiled binaries (executable files). Please choose the option that best fits your needs:

  • Monthly Support (Recommended for regular users): Contribute to get binaries for all current and future versions. This helps sustain regular improvements and ensures you always have the latest features. Get binaries here.
  • Single-Version Contribution (This version only): Contribute to get the binaries for Kemono Downloader v5.6.0 ONLY. This option supports the project while providing access to this specific version's executable files. Important: Future versions (5.7.0, etc.) will require separate contributions. Get v5.6.0 binaries here.
    Note: New versions are released regularly with bug fixes and improvements. If you plan to use the software more than once or want to receive updates, Monthly Support provides better value.

Available Binaries

  • Linux (Arch-based): L-KemonoDownloader-5.6.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora 42): L-KemonoDownloader-5.6.0-1.fc43.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.6.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64): M-KemonoDownloader-5.6.0-arm64.dmg
  • macOS (x86_64): M-KemonoDownloader-5.6.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.6.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.6.0-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.6.0 binaries.

Open-Source Availability

KemonoDownloader is and will always be open-source. The full source code, build instructions, and documentation are available in this repository. You're welcome to compile the software yourself or contribute to its development!

Support the Project

Your contributions through Ko-fi help keep KemonoDownloader actively maintained, enabling continued improvements and new features. Thank you for supporting this project's sustainability!

Thank you for using KemonoDownloader!
Get v5.6.0 binaries

Kemono Downloader v5.5.1

03 Nov 14:09
ab80b2a

Choose a tag to compare

KemonoDownloader 5.5.1 Release

Patch Update

Welcome to the KemonoDownloader 5.5.1 release! This patch builds directly on the performance and stability improvements from v5.5.0 with a significant fix for download completion tracking. KemonoDownloader remains fully open-source, and you can use, modify, and build the software for free under its license.

Changelog

  • Implemented Widget Caching:
    • Improves responsiveness during filtering and "select all" operations (#45).
  • Added HTTP Connection Pooling:
    • Reuses TCP connections to reduce overhead (#45).
  • Optimized Logs Window with Batched Updates:
    • Prevents UI freezes by batching toHtml() updates every 500ms instead of on every log entry (#45).
  • Refined File Completion Handling and Fixed Edge Cases:
    • Improved reliability in file tracking and completion logic under various scenarios (#49).
  • Fixed Filter Thread Crash on Large Post Sets:
    • Resolved a race condition that could occur when rapidly applying filters on datasets with thousands of posts (#49).
  • Fixed Download Completion Trigger (v5.5.1 Patch):
    • Ensures completion is properly triggered for every post once all files are downloaded, fixing a regression introduced in v5.5.0 where completion would not fire consistently after full post downloads.

Pre-Compiled Binaries

To support the ongoing development and maintenance of KemonoDownloader, you can contribute to access pre-compiled binaries (executable files). Please choose the option that best fits your needs:

  • Monthly Support (Recommended for regular users): Contribute to get binaries for all current and future versions. This helps sustain regular improvements and ensures you always have the latest features. Get binaries here.

  • Single-Version Contribution (This version only): Contribute to get the binaries for Kemono Downloader v5.5.1 ONLY. This option supports the project while providing access to this specific version's executable files. Important: Future versions (5.6.0, 5.7.0, etc.) will require separate contributions. Get v5.5.1 binaries here.

Note: New versions are released regularly with bug fixes and improvements. If you plan to use the software more than once or want to receive updates, Monthly Support provides better value.

Available Binaries

  • Linux (Arch-based): L-KemonoDownloader-5.5.1-1-x86_64.pkg.tar.zst
  • Linux (Fedora 42): L-KemonoDownloader-5.5.1-1.fc42.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.5.1-1.ubuntu-noble_amd64.deb
  • macOS (ARM64): M-KemonoDownloader-5.5.1-arm64.dmg
  • macOS (x86_64): M-KemonoDownloader-5.5.1-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.5.1-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.5.1-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.5.1 binaries.

Open-Source Availability

KemonoDownloader is and will always be open-source. The full source code, build instructions, and documentation are available in this repository. You're welcome to compile the software yourself or contribute to its development!

Support the Project

Your contributions through Ko-fi help keep KemonoDownloader actively maintained, enabling continued improvements and new features. Thank you for supporting this project's sustainability!

Thank you for using KemonoDownloader!

Get v5.5.1 binaries

Kemono Downloader v5.4.0

01 Oct 05:52
aff3bbb

Choose a tag to compare

KemonoDownloader 5.4.0 Release

Welcome to the KemonoDownloader 5.4.0 release! This version introduces customizable retry count settings, fixed thread settings, and improved download handling for a more reliable experience. KemonoDownloader remains fully open-source, and you can use, modify, and build the software for free under its license.

Changelog

  • Added Customizable Retry Count Settings:
    • Added customizable retry count settings in the settings page, removing the hardcoded values (#42).
  • Improved Download Handling:
    • Enhanced counting and fetching of files for better reliability (#44).
  • Added Home Folder Permissions for Flatpak:
    • Implemented permissions to support Flatpak environments (#39).
  • Other Improvements:
    • Suppressed MarkupResemblesLocatorWarning from BeautifulSoup for cleaner operation.

Pre-Compiled Binaries

To support the ongoing development and maintenance of KemonoDownloader, you can contribute to access pre-compiled binaries (executable files). Please choose the option that best fits your needs:

  • Monthly Support (Recommended for regular users): Contribute to get binaries for all current and future versions. This helps sustain regular improvements and ensures you always have the latest features. Get binaries here.

  • Single-Version Contribution (This version only): Contribute to get the binaries for Kemono Downloader v5.4.0 ONLY. This option supports the project while providing access to this specific version's executable files. Important: Future versions (5.5.0, 5.6.0, etc.) will require separate contributions. Get v5.4.0 binaries here.

Note: New versions are released regularly with bug fixes and improvements. If you plan to use the software more than once or want to receive updates, Monthly Support provides better value.

Available Binaries

  • Linux (Arch-based): L-KemonoDownloader-5.4.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora 42): L-KemonoDownloader-5.4.0-1.fc42.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.4.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64): M-KemonoDownloader-5.4.0-arm64.dmg
  • macOS (x86_64): M-KemonoDownloader-5.4.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.4.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.4.0-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.4.0 binaries.

Open-Source Availability

KemonoDownloader is and will always be open-source. The full source code, build instructions, and documentation are available in this repository. You're welcome to compile the software yourself or contribute to its development!

Support the Project

Your contributions through Ko-fi help keep KemonoDownloader actively maintained, enabling continued improvements and new features. Thank you for supporting this project's sustainability!

Thank you for using KemonoDownloader!

Get v5.4.0 binaries

Kemono Downloader v5.3.0

28 Aug 05:27
5ff93e5

Choose a tag to compare

KemonoDownloader 5.3.0 Release

Welcome to the KemonoDownloader 5.3.0 release! This version introduces .webp support for image previews and filters, extending detection and filtering logic to ensure compatibility with this widely used image format. KemonoDownloader remains fully open-source, and you can use, modify, and build the software for free under its license.

Changelog

  • Added .webp Image Support:
    • Extended image preview, detection, and filter logic in creator_downloader.py and post_downloader.py to handle .webp files alongside existing image formats.

Pre-Compiled Binaries

To support the ongoing development and maintenance of KemonoDownloader, you can contribute to access pre-compiled binaries (executable files). Please choose the option that best fits your needs:

  • Monthly Support (Recommended for regular users): Contribute to get binaries for all current and future versions. This helps sustain regular improvements and ensures you always have the latest features. Get binaries here.

  • Single-Version Contribution (This version only): Contribute to get the binaries for Kemono Downloader v5.3.0 ONLY. This option supports the project while providing access to this specific version's executable files. Important: Future versions (5.4.0, 5.5.0, etc.) will require separate contributions. Get v5.3.0 binaries here.

Note: New versions are released regularly with bug fixes and improvements. If you plan to use the software more than once or want to receive updates, Monthly Support provides better value.

Available Binaries

  • Linux (Arch-based): L-KemonoDownloader-5.3.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora 42): L-KemonoDownloader-5.3.0-1.fc42.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.3.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64): M-KemonoDownloader-5.3.0-arm64.dmg
  • macOS (x86_64): M-KemonoDownloader-5.3.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.3.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.3.0-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.3.0 binaries.

Open-Source Availability

KemonoDownloader is and will always be open-source. The full source code, build instructions, and documentation are available in this repository. You're welcome to compile the software yourself or contribute to its development!

Support the Project

Your contributions through Ko-fi help keep KemonoDownloader actively maintained, enabling continued improvements and new features. Thank you for supporting this project's sustainability!

Thank you for using KemonoDownloader!

Get v5.3.0 binaries

Kemono Downloader v5.2.0

22 Aug 03:45
04835e0

Choose a tag to compare

KemonoDownloader 5.2.0 Release

Welcome to the KemonoDownloader 5.2.0 release! This version introduces support for coomer.st domains, improves logging with enhanced translation support, and completes translations for help documentation. KemonoDownloader remains fully open-source, and you can use, modify, and build the software for free under its license.

Changelog

  • Added Domain Configuration Support for coomer.st:
    • 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).
  • Refactored Logging:
    • Replaced direct string formatting in log messages with translation keys and parameterized calls to translate() in creator_downloader.py. Added corresponding translation keys and multi-language support for all log messages in kd_language.py.
  • Completed Help Documentation Translations:
    • Added Simplified Chinese translations for all help/manual sections in kd_language.py.
    • Updated all English, Japanese, and Korean translation strings to reference kemono.cr instead of kemono.su, including URLs and descriptive text.

Pre-Compiled Binaries

To support the ongoing development and maintenance of KemonoDownloader, you can contribute to access pre-compiled binaries (executable files):

  • Monthly Support: Contribute to get binaries for all current and future versions. This helps sustain regular improvements and ensures you always have the latest features. Get binaries here.
  • Single-Version Contribution: Contribute to get the binaries for Kemono Downloader v5.2.0. This option supports the project while providing access to this specific version’s executable files without future updates. Get v5.2.0 binaries here.

Available Binaries

  • Linux (Arch-based): L-KemonoDownloader-5.2.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora 42): L-KemonoDownloader-5.2.0-1.fc42.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.2.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64): M-KemonoDownloader-5.2.0-arm64.dmg
  • macOS (x86_64): M-KemonoDownloader-5.2.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.2.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.2.0-x86_64.msi

Support the project by contributing: Get binaries for Monthly Support or Get v5.2.0 binaries.

Open-Source Availability

KemonoDownloader is and will always be open-source. The full source code, build instructions, and documentation are available in this repository. You’re welcome to compile the software yourself or contribute to its development!

Support the Project

Your contributions through Ko-fi help keep KemonoDownloader actively maintained, enabling continued improvements and new features. Thank you for supporting this project’s sustainability!

Thank you for using KemonoDownloader!

Get v5.2.0 binaries

Kemono Downloader v5.1.0

20 Aug 01:18
4c33b9c

Choose a tag to compare

KemonoDownloader 5.1.0 Release

Welcome to the KemonoDownloader 5.1.0 release! This version introduces enhanced last page detection, expanded logging capabilities, and a new feature to open directories directly from the Settings tab. KemonoDownloader remains open-source, and you can use and build the software for free under its license.

Changelog

  • Improved Last Page Detection Logic:
    • Enhanced tracking to accurately detect the last page based on previous fetches, eliminating confusing "failed" messages.
  • Expanded Logs Feature:
    • Added expand logs functionality for both creator and post downloader, improving debugging and user experience.
  • New Directory Access Feature:
    • Added an "Open Directory" button in the Settings tab to directly open the file explorer.

Pre-Compiled Binaries

For your convenience, pre-compiled binaries are available through a subscription model:

  • Subscription Access: Subscribe on Ko-fi to access all current and future binaries, including every update and release. Ideal for supporters who want a hassle-free setup and to stay up-to-date effortlessly!

Available Binaries

  • Linux (Arch-based): L-KemonoDownloader-5.1.0-1-x86_64.pkg.tar.zst
  • Linux (Fedora 42): L-KemonoDownloader-5.1.0-1.fc42.x86_64.rpm
  • Linux (Ubuntu Noble): L-KemonoDownloader-5.1.0-1.ubuntu-noble_amd64.deb
  • macOS (ARM64): M-KemonoDownloader-5.1.0-arm64.dmg
  • macOS (x86_64): M-KemonoDownloader-5.1.0-x86_64.dmg
  • Windows (Portable): W-KemonoDownloader-5.1.0-x86_64-Portable.exe
  • Windows (Installer): W-KemonoDownloader-5.1.0-x86_64.msi

Get them now by subscribing on Ko-fi!
Get the Kemono Downloader v5.1.0 pre-compiled binaries here!

Special Note for Recent v5.0.0 Buyers

As a gesture of appreciation for those who recently purchased the v5.0.0 binary, I will upload the v5.1.0 binary for free to the v5.0.0 product page on Ko-fi for you to access. This applies to purchases made within the last 3 days. Thank you for your early support!

Open-Source Availability

KemonoDownloader is and will always be open-source. You can access the full source code, build instructions, and documentation in this repository. Feel free to compile the software yourself or contribute to its development!

Support the Project

Your subscription on Ko-fi helps keep KemonoDownloader maintained and updated. Thank you for backing this project!

Thank you for using KemonoDownloader!

Download KemonoDownloader