-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Google Music Plugin using GMusicProxy
- Loading branch information
Showing
241 changed files
with
22,211 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"page": { | ||
"label": "TRANSLATE.GMUSIC_CONFIGURATION" | ||
}, | ||
"sections": [ | ||
{ | ||
"id": "section_serverinfo", | ||
"element": "section", | ||
"label": "TRANSLATE.SERVER_INFO", | ||
"icon": "fa-plug", | ||
"onSave": {"type":"controller", "endpoint":"music_service/gmusic_proxy", "method":"saveGMusicConfig"}, | ||
"saveButton": { | ||
"label": "TRANSLATE.SAVE", | ||
"data": [ | ||
"address", | ||
"port" | ||
] | ||
}, | ||
"content": [ | ||
{ | ||
"id": "address", | ||
"type":"text", | ||
"element": "input", | ||
"doc": "This is the address of your GMusic Proxy server", | ||
"label": "TRANSLATE.GMUSIC_ADDRESS", | ||
"value": "" | ||
}, | ||
{ | ||
"id": "port", | ||
"type":"text", | ||
"element": "input", | ||
"doc": "This is the port of your GMusic Proxy server", | ||
"label": "TRANSLATE.GMUSIC_PORT", | ||
"value": "9999" | ||
} | ||
] | ||
} | ||
] | ||
} |
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,14 @@ | ||
{ | ||
"enabled": { | ||
"type": "boolean", | ||
"value": false | ||
}, | ||
"address": { | ||
"type": "string", | ||
"value": "" | ||
}, | ||
"port": { | ||
"type": "string", | ||
"value": "9999" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,6 @@ | ||
{ | ||
"PLUGIN_CONFIGURATION":"Example Plugin Configuration", | ||
"SAVE":"Save", | ||
"GMUSIC_ADDRESS":"GMusic Proxy Address", | ||
"GMUSIC_PORT":"GMusic Proxy Port" | ||
} |
Oops, something went wrong.