diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-01-23 22:46:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 22:46:00 -0500 |
commit | ebfef0c74858607d050da2cdc9046a681b133b25 (patch) | |
tree | 67a9a33edc447a95f59916e5851ef946199469e2 /ext/bg/data/options-schema.json | |
parent | ef577b88754523abeab3844115506a0b6e914874 (diff) |
Multiple custom audio sources (#1303)
* Fix label
* Fix icon size being flexible
* Add schema
* Add customSourceType option
* Update settings
* Pass customSourceType to the audio downloader
* Implement custom audio JSON mode
Diffstat (limited to 'ext/bg/data/options-schema.json')
-rw-r--r-- | ext/bg/data/options-schema.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index 189c8621..dfc553ed 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -348,6 +348,7 @@ "volume", "autoPlay", "customSourceUrl", + "customSourceType", "textToSpeechVoice" ], "properties": { @@ -387,6 +388,11 @@ "type": "string", "default": "" }, + "customSourceType": { + "type": "string", + "enum": ["audio", "json"], + "default": "audio" + }, "textToSpeechVoice": { "type": "string", "default": "" |