Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #105

Merged
merged 17 commits into from
Jul 3, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions mopidy_spotmop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from services.auth import auth
from mopidy import config, ext

__version__ = '2.7.1'
__version__ = '2.7.2'
__ext_name__ = 'spotmop'
__verbosemode__ = False

Expand All @@ -30,7 +30,6 @@ def get_config_schema(self):
schema = super(SpotmopExtension, self).get_config_schema()
schema['debug'] = config.Boolean()
schema['pusherport'] = config.String()
schema['pusherclientmap'] = config.String()
schema['artworklocation'] = config.String()
return schema

Expand Down Expand Up @@ -63,6 +62,7 @@ def spotmop_client_factory(config, core):
}),
])
application.listen(pusherport)

logger.info( 'Pusher server running on []:'+ str(pusherport) )

return [
Expand All @@ -88,4 +88,4 @@ def spotmop_client_factory(config, core):
"path": spotmoppath,
"default_filename": "index.html"
}),
]
]
1 change: 0 additions & 1 deletion mopidy_spotmop/ext.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
enabled = true
debug = false
pusherport = 6681
pusherclientmap = [{"ip":"192.168.0.152","name":"James"},{"ip":"192.168.0.139","name":"Dev server"},{"ip":"192.168.0.118","name":"Jeremy"}]
artworklocation = /root/.local/share/mopidy/local-images/
Loading