Thanks to visit codestin.com
Credit goes to github.com

Skip to content

1.0.0-beta1

Pre-release
Pre-release

Choose a tag to compare

@MarcosCostaDev MarcosCostaDev released this 07 Nov 16:07

KamiYomu Beta Release Notes

🚀 Initial Beta Release

We’re excited to introduce the initial beta release of KamiYomu, a lightweight manga downloader and crawler agent manager designed for extensibility and automation.

✨ Core Features

  • Agent Import Support: Load crawler agents via .dll or NuGet package for flexible integration.
  • Automatic Manga Downloads: Begin downloading manga as soon as it's added to your library.
  • Download Progress Tracking: Monitor real-time progress of active downloads.
  • Background Job Control: View and manage all ongoing tasks with full transparency.

🔮 Coming Soon

  • Community Agent Browser: Discover and import crawler agents from NuGet.org, GitHub, and other sources.
  • File Visibility: View downloaded files directly from the UI.
  • Recovery & Redownload: Re-fetch files from the same agent when anomalies are detected.
  • Auto-Chapter Sync: Automatically add new chapters to your collection when published by the agent.
services:
    kamiyomu:
      image: marcoscostadev/kamiyomu:1.0.0-beta1
      ports:
        - "8080:8080" # HTTP Port
      envelopment:
        - Settings__Worker__WorkerCount=3 # Number of concurrent crawler agents excecuting
      restart: unless-stopped
      healthcheck:
        test: ["CMD", "curl", "-f", "https://localhost:8080/healthz"]
        interval: 30s
        timeout: 10s
        retries: 3
      volumes:
        - ./AppData/manga:/manga # Your desired local path for manga storage 
        - Kamiyomu_database:/db
        - kamiyomu_agents:/agents 
        - kamiyomu_logs:/logs 

volumes:
      kamiyomu_agents:
      Kamiyomu_database:
      kamiyomu_logs: