Skip to content

Commit 60ff835

Browse files
authored
Merge pull request #105 from jaedb/develop
Develop
2 parents 32f3ddc + 86f51a5 commit 60ff835

53 files changed

Lines changed: 556 additions & 553 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

mopidy_spotmop/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from services.auth import auth
1212
from mopidy import config, ext
1313

14-
__version__ = '2.7.1'
14+
__version__ = '2.7.2'
1515
__ext_name__ = 'spotmop'
1616
__verbosemode__ = False
1717

@@ -30,7 +30,6 @@ def get_config_schema(self):
3030
schema = super(SpotmopExtension, self).get_config_schema()
3131
schema['debug'] = config.Boolean()
3232
schema['pusherport'] = config.String()
33-
schema['pusherclientmap'] = config.String()
3433
schema['artworklocation'] = config.String()
3534
return schema
3635

@@ -63,6 +62,7 @@ def spotmop_client_factory(config, core):
6362
}),
6463
])
6564
application.listen(pusherport)
65+
6666
logger.info( 'Pusher server running on []:'+ str(pusherport) )
6767

6868
return [
@@ -88,4 +88,4 @@ def spotmop_client_factory(config, core):
8888
"path": spotmoppath,
8989
"default_filename": "index.html"
9090
}),
91-
]
91+
]

mopidy_spotmop/ext.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
enabled = true
33
debug = false
44
pusherport = 6681
5-
pusherclientmap = [{"ip":"192.168.0.152","name":"James"},{"ip":"192.168.0.139","name":"Dev server"},{"ip":"192.168.0.118","name":"Jeremy"}]
65
artworklocation = /root/.local/share/mopidy/local-images/

0 commit comments

Comments
 (0)