Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1003 Bytes

presets.md

File metadata and controls

49 lines (41 loc) · 1003 Bytes

Using Presets

version 2.1.0

You can now use presets with CLI to reduce the numbers of flags

  • Each site can have its own presets, use "module" to declare site, if "module" is not set, it's used for all sites.
  • Rules written below overrides those above.
  • Rule names are the same as CLI flags, full names using camelCase, e.g. maxTitleLength, zipLevel
  • You can still use flags, and flags come with higher priorities.

Example

[
  {
    "archive": "cbz",
    "batch": 5,
    "retry:" true,
    "info": true,
    "output": "~/Downloads/manga",
    "zipLevel": 5
  },
  {
    "module": "zerobyw",
    "batch": 10,
    "cookie": "./cookie.txt",
    "maxTitleLength": 30
  },
  {
    "module": "copymanga",
    "format": "webp"
  },
  {
    "module": "ganma",
    "auth": "your_cookie_string"
  }
]
npx comic-dl -p presets.json -u serie_url

You can also generate a presets.json using the generate command

npx comic-dl gen --presets > presets.json