Skip to content

Commit

Permalink
Google Music Plugin using GMusicProxy
Browse files Browse the repository at this point in the history
  • Loading branch information
jdwoody committed Dec 8, 2018
1 parent 4542e1f commit 281cbff
Show file tree
Hide file tree
Showing 241 changed files with 22,211 additions and 0 deletions.
39 changes: 39 additions & 0 deletions plugins/music_service/gmusic_proxy/UIConfig.json
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"
}
]
}
]
}
14 changes: 14 additions & 0 deletions plugins/music_service/gmusic_proxy/config.json
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"
}
}
6 changes: 6 additions & 0 deletions plugins/music_service/gmusic_proxy/gmusic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions plugins/music_service/gmusic_proxy/i18n/strings_en.json
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"
}
Loading

0 comments on commit 281cbff

Please sign in to comment.