Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 872 Bytes

README.md

File metadata and controls

35 lines (29 loc) · 872 Bytes

wuhu-plugin-json-export

Super simple wuhu plugin for exporting compo data into JSON. Intended for use with jamviewer and our normalization script.

Installation

Just clone this repository into the Wuhu plugins directory.

Usage

Enable the plugin, then a "JSON Export" option should appear in the Wuhu admin sidebar. The data is emitted in the format:

[
    {
        "directory_name": string,
        "display_name": string,
        "entries": [
            {
                "title": string,
                "author": string,
                "comment": string,
                "orgacomment": string,
                "filename": string,
                "playingorder": number
            },
            ...
        ]
    },
    ...
]