-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Audio Description and Preferred Audio Languages Settings (#45)
* Adding Audio Description Settings property * Adding Preferred Audio Languages --------- Co-authored-by: Clay Simmons <[email protected]>
- Loading branch information
1 parent
1ec847e
commit 58f6ea1
Showing
5 changed files
with
161 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"openrpc": "1.2.4", | ||
"info": { | ||
"title": "AudioDescriptions", | ||
"description": "A module for managing audio-description Settings.", | ||
"version": "0.0.0" | ||
}, | ||
"methods": [ | ||
{ | ||
"name": "enabled", | ||
"tags": [ | ||
{ | ||
"name": "property" | ||
}, | ||
{ | ||
"name": "capabilities", | ||
"x-uses": [ | ||
"xrn:firebolt:capability:accessibility:audiodescriptions" | ||
] | ||
} | ||
], | ||
"summary": "Whether or not audio-descriptions are enabled.", | ||
"params": [ | ||
], | ||
"result": { | ||
"name": "enabled", | ||
"schema": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"examples": [ | ||
{ | ||
"name": "Default example #1", | ||
"params": [ | ||
], | ||
"result": { | ||
"name": "enabled", | ||
"value": true | ||
} | ||
}, | ||
{ | ||
"name": "Default example #2", | ||
"params": [ | ||
], | ||
"result": { | ||
"name": "enabled", | ||
"value": false | ||
} | ||
} | ||
] | ||
} | ||
], | ||
"components": { | ||
"schemas": { | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters