Skip to content

v1.1.0

Compare
Choose a tag to compare
@ful1e5 ful1e5 released this 25 Feb 06:36
· 2 commits to main since this release

⚠️ Breaking Changes

  • The default render engine is now resvg-js.
    To use Puppeteer, either assign the --puppeteer option in the command line or set "use": "puppeteer" in the JSON config.

    Example in CLI Argument:

    npx cbmp -d svg -o out --puppeteer

    In config files:

    {
        "use": "puppeteer",
        "Sample 1": {
            "dir": "svg",
            "out": "out/sample1"
        },
    
        "Sample 2": {
            "dir": "svg",
            "out": "out/sample2",
            "fps": 10
        }
    }

What's New?