├── .bowerrc ├── .github └── stale.yml ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── __init__.py.tmpl ├── bower.json ├── dist ├── Mopidy-Mopify-1.7.3.tar.gz ├── assets │ ├── css │ │ └── mopidy-mopify-1.7.3.css │ ├── images │ │ ├── ani_equalizer_black.gif │ │ ├── discover-header.jpg │ │ ├── echonest-header.jpg │ │ ├── echonest-logo.jpg │ │ ├── echonest-menu-logo.jpg │ │ ├── favicon.ico │ │ ├── musicicon-1x.png │ │ ├── musicicon-2x.png │ │ ├── musicicon-3x.png │ │ ├── musicicon-4x.png │ │ ├── musicicon.png │ │ ├── playlists-header.jpg │ │ ├── services-header.jpg │ │ ├── settings-header.jpg │ │ ├── spotify-header.jpg │ │ ├── spotify-icon.png │ │ ├── stations-header.jpg │ │ ├── sync-header.jpg │ │ ├── sync-icon-menu.png │ │ ├── sync-icon.png │ │ └── tracklist-header.jpg │ ├── manifest.json │ ├── mopidy-mopify-1.7.3.js │ ├── mopidy-mopify-1.7.3.js.map │ └── webfonts │ │ ├── ss-standard.css │ │ ├── ss-standard.eot │ │ ├── ss-standard.js │ │ ├── ss-standard.svg │ │ ├── ss-standard.ttf │ │ └── ss-standard.woff └── index.html ├── ext.conf ├── mopidy_mopify ├── __init__.py ├── ext.conf ├── mem.py ├── services │ ├── __init__.py │ ├── autoupdate │ │ ├── __init__.py │ │ └── update.py │ ├── queuemanager │ │ ├── __init__.py │ │ ├── core.py │ │ ├── frontend.py │ │ └── requesthandler.py │ └── sync │ │ ├── __init__.py │ │ └── sync.py └── static │ ├── debug │ ├── assets │ │ ├── images │ │ │ ├── ani_equalizer_black.gif │ │ │ ├── discover-header.jpg │ │ │ ├── echonest-header.jpg │ │ │ ├── echonest-logo.jpg │ │ │ ├── echonest-menu-logo.jpg │ │ │ ├── favicon.ico │ │ │ ├── musicicon-1x.png │ │ │ ├── musicicon-2x.png │ │ │ ├── musicicon-3x.png │ │ │ ├── musicicon-4x.png │ │ │ ├── musicicon.png │ │ │ ├── playlists-header.jpg │ │ │ ├── services-header.jpg │ │ │ ├── settings-header.jpg │ │ │ ├── spotify-header.jpg │ │ │ ├── spotify-icon.png │ │ │ ├── stations-header.jpg │ │ │ ├── sync-header.jpg │ │ │ ├── sync-icon-menu.png │ │ │ ├── sync-icon.png │ │ │ └── tracklist-header.jpg │ │ ├── manifest.json │ │ └── webfonts │ │ │ ├── ss-standard.css │ │ │ ├── ss-standard.eot │ │ │ ├── ss-standard.js │ │ │ ├── ss-standard.svg │ │ │ ├── ss-standard.ttf │ │ │ └── ss-standard.woff │ ├── index.html │ ├── src │ │ ├── app │ │ │ ├── account │ │ │ │ ├── services │ │ │ │ │ ├── facebook │ │ │ │ │ │ ├── facebook.controller.js │ │ │ │ │ │ └── facebook.test.js │ │ │ │ │ ├── services.controller.js │ │ │ │ │ ├── services.menu.controller.js │ │ │ │ │ ├── spotify │ │ │ │ │ │ ├── spotify.controller.js │ │ │ │ │ │ └── spotify.test.js │ │ │ │ │ └── sync │ │ │ │ │ │ ├── sync.controller.js │ │ │ │ │ │ └── sync.test.js │ │ │ │ └── settings │ │ │ │ │ ├── settings.controller.js │ │ │ │ │ └── settings.test.js │ │ │ ├── app.js │ │ │ ├── dashboard │ │ │ │ ├── dashboard.controller.js │ │ │ │ └── dashboard.test.js │ │ │ ├── directives │ │ │ │ ├── album.directive.js │ │ │ │ ├── artist.directive.js │ │ │ │ ├── browse.directive.js │ │ │ │ ├── focusme.directive.js │ │ │ │ ├── module.js │ │ │ │ ├── playlist.directive.js │ │ │ │ ├── service.directive.js │ │ │ │ ├── station.directive.js │ │ │ │ ├── stoppropagation.directive.js │ │ │ │ └── track.directive.js │ │ │ ├── discover │ │ │ │ ├── browse │ │ │ │ │ ├── browse.controller.js │ │ │ │ │ └── browse.test.js │ │ │ │ ├── featured │ │ │ │ │ ├── featured.controller.js │ │ │ │ │ └── featured.test.js │ │ │ │ └── newreleases │ │ │ │ │ ├── newreleases.controller.js │ │ │ │ │ └── newreleases.test.js │ │ │ ├── modals │ │ │ │ └── playlistselect.controller.js │ │ │ ├── music │ │ │ │ ├── artist │ │ │ │ │ ├── artist.controller.js │ │ │ │ │ └── artist.test.js │ │ │ │ ├── library │ │ │ │ │ ├── albums │ │ │ │ │ │ └── albums.controller.js │ │ │ │ │ ├── artists │ │ │ │ │ │ └── artists.controller.js │ │ │ │ │ └── playlists │ │ │ │ │ │ ├── playlists.controller.js │ │ │ │ │ │ └── playlists.test.js │ │ │ │ ├── stations │ │ │ │ │ ├── stations.controller.js │ │ │ │ │ └── stations.test.js │ │ │ │ └── tracklist │ │ │ │ │ ├── tracklist.controller.js │ │ │ │ │ └── tracklist.test.js │ │ │ ├── player │ │ │ │ ├── controls │ │ │ │ │ ├── controls.controller.js │ │ │ │ │ └── controls.test.js │ │ │ │ ├── player.controller.js │ │ │ │ ├── player.test.js │ │ │ │ └── seekbar │ │ │ │ │ ├── seekbar.controller.js │ │ │ │ │ └── seekbar.test.js │ │ │ ├── search │ │ │ │ ├── search.controller.js │ │ │ │ └── search.test.js │ │ │ └── services │ │ │ │ ├── autoupdate.service.js │ │ │ │ ├── discover.service.js │ │ │ │ ├── error.service.js │ │ │ │ ├── facebook.service.js │ │ │ │ ├── history.service.js │ │ │ │ ├── mopidy.service.js │ │ │ │ ├── playlistmanager.service.js │ │ │ │ ├── queuemanager.service.js │ │ │ │ ├── servicemanager.service.js │ │ │ │ ├── settings.service.js │ │ │ │ ├── spotify.service.js │ │ │ │ ├── station.service.js │ │ │ │ ├── sync.service.js │ │ │ │ ├── util.service.js │ │ │ │ └── versionmanager.service.js │ │ ├── css │ │ │ ├── 00-animations.css │ │ │ ├── 01-bootstrap.css │ │ │ ├── 50-style.css │ │ │ └── 60-responsive.css │ │ └── vendor │ │ │ ├── angular-animate │ │ │ └── angular-animate.min.js │ │ │ ├── angular-bootstrap │ │ │ └── ui-bootstrap-tpls.min.js │ │ │ ├── angular-loading-bar │ │ │ └── src │ │ │ │ ├── loading-bar.css │ │ │ │ └── loading-bar.js │ │ │ ├── angular-local-storage │ │ │ └── dist │ │ │ │ └── angular-local-storage.js │ │ │ ├── angular-notifier │ │ │ └── dist │ │ │ │ ├── angular-notifier.css │ │ │ │ └── angular-notifier.min.js │ │ │ ├── angular-prompt │ │ │ └── dist │ │ │ │ └── angular-prompt.js │ │ │ ├── angular-route │ │ │ └── angular-route.js │ │ │ ├── angular-sanitize │ │ │ └── angular-sanitize.js │ │ │ ├── angular-spotify │ │ │ └── src │ │ │ │ └── angular-spotify.js │ │ │ ├── angular-toggle-switch │ │ │ ├── angular-toggle-switch.css │ │ │ └── angular-toggle-switch.min.js │ │ │ ├── angular │ │ │ └── angular.js │ │ │ ├── clipboard │ │ │ └── dist │ │ │ │ └── clipboard.min.js │ │ │ ├── hammerjs │ │ │ └── hammer.js │ │ │ ├── html5-boilerplate │ │ │ └── css │ │ │ │ ├── main.css │ │ │ │ └── normalize.css │ │ │ ├── mopidy │ │ │ └── mopidy.js │ │ │ ├── ng-context-menu │ │ │ └── dist │ │ │ │ └── ng-context-menu.js │ │ │ ├── ryanmullins-angular-hammer │ │ │ └── angular.hammer.js │ │ │ └── underscore │ │ │ └── underscore-min.js │ └── templates-app.js │ └── min │ ├── assets │ ├── css │ │ └── mopidy-mopify-1.7.3.css │ ├── images │ │ ├── ani_equalizer_black.gif │ │ ├── discover-header.jpg │ │ ├── echonest-header.jpg │ │ ├── echonest-logo.jpg │ │ ├── echonest-menu-logo.jpg │ │ ├── favicon.ico │ │ ├── musicicon-1x.png │ │ ├── musicicon-2x.png │ │ ├── musicicon-3x.png │ │ ├── musicicon-4x.png │ │ ├── musicicon.png │ │ ├── playlists-header.jpg │ │ ├── services-header.jpg │ │ ├── settings-header.jpg │ │ ├── spotify-header.jpg │ │ ├── spotify-icon.png │ │ ├── stations-header.jpg │ │ ├── sync-header.jpg │ │ ├── sync-icon-menu.png │ │ ├── sync-icon.png │ │ └── tracklist-header.jpg │ ├── manifest.json │ ├── mopidy-mopify-1.7.3.js │ ├── mopidy-mopify-1.7.3.js.map │ └── webfonts │ │ ├── ss-standard.css │ │ ├── ss-standard.eot │ │ ├── ss-standard.js │ │ ├── ss-standard.svg │ │ ├── ss-standard.ttf │ │ └── ss-standard.woff │ └── index.html ├── package.json ├── pre-work ├── docs │ ├── mainideas.md │ └── structure.md └── html │ ├── css │ ├── bootstrap.css │ ├── style.css │ └── svg │ │ └── resources.svg │ ├── index.html │ ├── stations.html │ └── webfonts │ ├── ss-standard.css │ ├── ss-standard.eot │ ├── ss-standard.js │ ├── ss-standard.svg │ ├── ss-standard.ttf │ └── ss-standard.woff ├── setup.cfg ├── setup.py └── src ├── app ├── account │ ├── menu.tmpl.html │ ├── services │ │ ├── facebook │ │ │ ├── facebook.controller.js │ │ │ ├── facebook.test.js │ │ │ └── menu.tmpl.html │ │ ├── services.controller.js │ │ ├── services.menu.controller.js │ │ ├── services.menu.tmpl.html │ │ ├── services.tmpl.html │ │ ├── spotify │ │ │ ├── menu.tmpl.html │ │ │ ├── spotify.controller.js │ │ │ ├── spotify.test.js │ │ │ └── spotify.tmpl.html │ │ └── sync │ │ │ ├── menu.tmpl.html │ │ │ ├── sync.controller.js │ │ │ ├── sync.test.js │ │ │ └── sync.tmpl.html │ └── settings │ │ ├── settings.controller.js │ │ ├── settings.test.js │ │ └── settings.tmpl.html ├── app.js ├── dashboard │ ├── dashboard.controller.js │ ├── dashboard.test.js │ └── dashboard.tmpl.html ├── directives │ ├── album.directive.js │ ├── album.directive.tmpl.html │ ├── artist.directive.js │ ├── artist.directive.tmpl.html │ ├── browse.directive.js │ ├── browse.directive.tmpl.html │ ├── focusme.directive.js │ ├── module.js │ ├── playlist.directive.js │ ├── playlist.directive.tmpl.html │ ├── service.directive.js │ ├── service.directive.tmpl.html │ ├── station.directive.js │ ├── station.directive.tmpl.html │ ├── stoppropagation.directive.js │ ├── track.directive.js │ └── track.directive.tmpl.html ├── discover │ ├── browse │ │ ├── browse.controller.js │ │ ├── browse.test.js │ │ └── browse.tmpl.html │ ├── featured │ │ ├── featured.controller.js │ │ ├── featured.test.js │ │ └── featured.tmpl.html │ ├── menu.tmpl.html │ └── newreleases │ │ ├── newreleases.controller.js │ │ ├── newreleases.test.js │ │ └── newreleases.tmpl.html ├── modals │ ├── playlistselect.controller.js │ └── playlistselect.tmpl.html ├── music │ ├── artist │ │ ├── artist.controller.js │ │ ├── artist.test.js │ │ └── artist.tmpl.html │ ├── library │ │ ├── albums │ │ │ ├── albums.controller.js │ │ │ └── albums.tmpl.html │ │ ├── artists │ │ │ ├── artists.controller.js │ │ │ └── artists.tmpl.html │ │ └── playlists │ │ │ ├── playlists.controller.js │ │ │ ├── playlists.test.js │ │ │ └── playlists.tmpl.html │ ├── menu.tmpl.html │ ├── stations │ │ ├── stations.controller.js │ │ ├── stations.test.js │ │ └── stations.tmpl.html │ └── tracklist │ │ ├── tracklist.controller.js │ │ ├── tracklist.test.js │ │ └── tracklist.tmpl.html ├── player │ ├── controls │ │ ├── controls.controller.js │ │ ├── controls.left.tmpl.html │ │ ├── controls.right.tmpl.html │ │ └── controls.test.js │ ├── player.controller.js │ ├── player.test.js │ ├── player.tmpl.html │ └── seekbar │ │ ├── seekbar.controller.js │ │ ├── seekbar.test.js │ │ └── seekbar.tmpl.html ├── search │ ├── menu.tmpl.html │ ├── search.controller.js │ ├── search.test.js │ └── search.tmpl.html └── services │ ├── autoupdate.service.js │ ├── discover.service.js │ ├── error.service.js │ ├── facebook.service.js │ ├── history.service.js │ ├── mopidy.service.js │ ├── playlistmanager.service.js │ ├── queuemanager.service.js │ ├── servicemanager.service.js │ ├── settings.service.js │ ├── spotify.service.js │ ├── station.service.js │ ├── sync.service.js │ ├── util.service.js │ └── versionmanager.service.js ├── assets ├── images │ ├── ani_equalizer_black.gif │ ├── discover-header.jpg │ ├── echonest-header.jpg │ ├── echonest-logo.jpg │ ├── echonest-menu-logo.jpg │ ├── favicon.ico │ ├── musicicon-1x.png │ ├── musicicon-2x.png │ ├── musicicon-3x.png │ ├── musicicon-4x.png │ ├── musicicon.png │ ├── playlists-header.jpg │ ├── services-header.jpg │ ├── settings-header.jpg │ ├── spotify-header.jpg │ ├── spotify-icon.png │ ├── stations-header.jpg │ ├── sync-header.jpg │ ├── sync-icon-menu.png │ ├── sync-icon.png │ └── tracklist-header.jpg ├── manifest.json └── webfonts │ ├── ss-standard.css │ ├── ss-standard.eot │ ├── ss-standard.js │ ├── ss-standard.svg │ ├── ss-standard.ttf │ └── ss-standard.woff ├── css ├── 00-animations.css ├── 01-bootstrap.css ├── 50-style.css ├── 60-responsive.css └── svg │ └── resources.svg ├── index.html └── vendor ├── .gitignore ├── README.md ├── angular-prompt ├── .bower.json ├── LICENSE ├── angular-prompt.js ├── bower.json └── dist │ ├── angular-prompt.js │ └── angular-prompt.min.js ├── angular-spotify ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── bower.json ├── dist │ └── angular-spotify.min.js ├── examples │ ├── callback.html │ ├── index.html │ └── main.controller.js ├── package.json └── src │ └── angular-spotify.js └── mopidy └── mopidy.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/vendor" 3 | } -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/__init__.py.tmpl -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/bower.json -------------------------------------------------------------------------------- /dist/Mopidy-Mopify-1.7.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/Mopidy-Mopify-1.7.3.tar.gz -------------------------------------------------------------------------------- /dist/assets/css/mopidy-mopify-1.7.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/css/mopidy-mopify-1.7.3.css -------------------------------------------------------------------------------- /dist/assets/images/ani_equalizer_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/ani_equalizer_black.gif -------------------------------------------------------------------------------- /dist/assets/images/discover-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/discover-header.jpg -------------------------------------------------------------------------------- /dist/assets/images/echonest-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/echonest-header.jpg -------------------------------------------------------------------------------- /dist/assets/images/echonest-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/echonest-logo.jpg -------------------------------------------------------------------------------- /dist/assets/images/echonest-menu-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/echonest-menu-logo.jpg -------------------------------------------------------------------------------- /dist/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/favicon.ico -------------------------------------------------------------------------------- /dist/assets/images/musicicon-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/musicicon-1x.png -------------------------------------------------------------------------------- /dist/assets/images/musicicon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/musicicon-2x.png -------------------------------------------------------------------------------- /dist/assets/images/musicicon-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/musicicon-3x.png -------------------------------------------------------------------------------- /dist/assets/images/musicicon-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/musicicon-4x.png -------------------------------------------------------------------------------- /dist/assets/images/musicicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/musicicon.png -------------------------------------------------------------------------------- /dist/assets/images/playlists-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/playlists-header.jpg -------------------------------------------------------------------------------- /dist/assets/images/services-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/services-header.jpg -------------------------------------------------------------------------------- /dist/assets/images/settings-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/settings-header.jpg -------------------------------------------------------------------------------- /dist/assets/images/spotify-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/spotify-header.jpg -------------------------------------------------------------------------------- /dist/assets/images/spotify-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/spotify-icon.png -------------------------------------------------------------------------------- /dist/assets/images/stations-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/stations-header.jpg -------------------------------------------------------------------------------- /dist/assets/images/sync-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/sync-header.jpg -------------------------------------------------------------------------------- /dist/assets/images/sync-icon-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/sync-icon-menu.png -------------------------------------------------------------------------------- /dist/assets/images/sync-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/sync-icon.png -------------------------------------------------------------------------------- /dist/assets/images/tracklist-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/images/tracklist-header.jpg -------------------------------------------------------------------------------- /dist/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/manifest.json -------------------------------------------------------------------------------- /dist/assets/mopidy-mopify-1.7.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/mopidy-mopify-1.7.3.js -------------------------------------------------------------------------------- /dist/assets/mopidy-mopify-1.7.3.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/mopidy-mopify-1.7.3.js.map -------------------------------------------------------------------------------- /dist/assets/webfonts/ss-standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/webfonts/ss-standard.css -------------------------------------------------------------------------------- /dist/assets/webfonts/ss-standard.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/webfonts/ss-standard.eot -------------------------------------------------------------------------------- /dist/assets/webfonts/ss-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/webfonts/ss-standard.js -------------------------------------------------------------------------------- /dist/assets/webfonts/ss-standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/webfonts/ss-standard.svg -------------------------------------------------------------------------------- /dist/assets/webfonts/ss-standard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/webfonts/ss-standard.ttf -------------------------------------------------------------------------------- /dist/assets/webfonts/ss-standard.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/assets/webfonts/ss-standard.woff -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/dist/index.html -------------------------------------------------------------------------------- /ext.conf: -------------------------------------------------------------------------------- 1 | [mopify] 2 | enabled = true 3 | debug = false -------------------------------------------------------------------------------- /mopidy_mopify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/__init__.py -------------------------------------------------------------------------------- /mopidy_mopify/ext.conf: -------------------------------------------------------------------------------- 1 | [mopify] 2 | enabled = true 3 | debug = false -------------------------------------------------------------------------------- /mopidy_mopify/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/mem.py -------------------------------------------------------------------------------- /mopidy_mopify/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/services/autoupdate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/services/autoupdate/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/services/autoupdate/update.py -------------------------------------------------------------------------------- /mopidy_mopify/services/queuemanager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/services/queuemanager/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/services/queuemanager/core.py -------------------------------------------------------------------------------- /mopidy_mopify/services/queuemanager/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/services/queuemanager/frontend.py -------------------------------------------------------------------------------- /mopidy_mopify/services/queuemanager/requesthandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/services/queuemanager/requesthandler.py -------------------------------------------------------------------------------- /mopidy_mopify/services/sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/services/sync/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/services/sync/sync.py -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/ani_equalizer_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/ani_equalizer_black.gif -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/discover-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/discover-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/echonest-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/echonest-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/echonest-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/echonest-logo.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/echonest-menu-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/echonest-menu-logo.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/favicon.ico -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/musicicon-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/musicicon-1x.png -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/musicicon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/musicicon-2x.png -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/musicicon-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/musicicon-3x.png -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/musicicon-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/musicicon-4x.png -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/musicicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/musicicon.png -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/playlists-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/playlists-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/services-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/services-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/settings-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/settings-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/spotify-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/spotify-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/spotify-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/spotify-icon.png -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/stations-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/stations-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/sync-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/sync-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/sync-icon-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/sync-icon-menu.png -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/sync-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/sync-icon.png -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/images/tracklist-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/images/tracklist-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/manifest.json -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/webfonts/ss-standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/webfonts/ss-standard.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/webfonts/ss-standard.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/webfonts/ss-standard.eot -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/webfonts/ss-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/webfonts/ss-standard.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/webfonts/ss-standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/webfonts/ss-standard.svg -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/webfonts/ss-standard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/webfonts/ss-standard.ttf -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/assets/webfonts/ss-standard.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/assets/webfonts/ss-standard.woff -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/index.html -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/services/facebook/facebook.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/account/services/facebook/facebook.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/services/facebook/facebook.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/services/services.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/account/services/services.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/services/services.menu.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/account/services/services.menu.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/services/spotify/spotify.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/account/services/spotify/spotify.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/services/spotify/spotify.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/services/sync/sync.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/account/services/sync/sync.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/services/sync/sync.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/settings/settings.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/account/settings/settings.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/account/settings/settings.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/app.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/dashboard/dashboard.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/dashboard/dashboard.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/dashboard/dashboard.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/album.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/album.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/artist.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/artist.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/browse.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/browse.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/focusme.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/focusme.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/module.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/playlist.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/playlist.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/service.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/service.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/station.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/station.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/stoppropagation.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/stoppropagation.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/directives/track.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/directives/track.directive.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/discover/browse/browse.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/discover/browse/browse.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/discover/browse/browse.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/discover/featured/featured.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/discover/featured/featured.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/discover/featured/featured.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/discover/newreleases/newreleases.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/discover/newreleases/newreleases.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/discover/newreleases/newreleases.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/modals/playlistselect.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/modals/playlistselect.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/artist/artist.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/music/artist/artist.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/artist/artist.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/library/albums/albums.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/music/library/albums/albums.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/library/artists/artists.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/music/library/artists/artists.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/library/playlists/playlists.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/music/library/playlists/playlists.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/library/playlists/playlists.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/stations/stations.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/music/stations/stations.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/stations/stations.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/tracklist/tracklist.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/music/tracklist/tracklist.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/music/tracklist/tracklist.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/player/controls/controls.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/player/controls/controls.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/player/controls/controls.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/player/player.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/player/player.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/player/player.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/player/seekbar/seekbar.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/player/seekbar/seekbar.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/player/seekbar/seekbar.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/search/search.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/search/search.controller.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/search/search.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/autoupdate.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/autoupdate.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/discover.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/discover.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/error.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/error.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/facebook.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/facebook.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/history.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/history.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/mopidy.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/mopidy.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/playlistmanager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/playlistmanager.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/queuemanager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/queuemanager.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/servicemanager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/servicemanager.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/settings.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/settings.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/spotify.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/spotify.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/station.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/station.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/sync.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/sync.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/util.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/util.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/app/services/versionmanager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/app/services/versionmanager.service.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/css/00-animations.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/css/01-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/css/01-bootstrap.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/css/50-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/css/50-style.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/css/60-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/css/60-responsive.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-animate/angular-animate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-animate/angular-animate.min.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-bootstrap/ui-bootstrap-tpls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-bootstrap/ui-bootstrap-tpls.min.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-loading-bar/src/loading-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-loading-bar/src/loading-bar.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-loading-bar/src/loading-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-loading-bar/src/loading-bar.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-local-storage/dist/angular-local-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-local-storage/dist/angular-local-storage.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-notifier/dist/angular-notifier.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-notifier/dist/angular-notifier.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-notifier/dist/angular-notifier.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-notifier/dist/angular-notifier.min.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-prompt/dist/angular-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-prompt/dist/angular-prompt.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-route/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-route/angular-route.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-sanitize/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-sanitize/angular-sanitize.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-spotify/src/angular-spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-spotify/src/angular-spotify.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-toggle-switch/angular-toggle-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-toggle-switch/angular-toggle-switch.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular-toggle-switch/angular-toggle-switch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular-toggle-switch/angular-toggle-switch.min.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/angular/angular.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/clipboard/dist/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/clipboard/dist/clipboard.min.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/hammerjs/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/hammerjs/hammer.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/html5-boilerplate/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/html5-boilerplate/css/main.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/html5-boilerplate/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/html5-boilerplate/css/normalize.css -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/mopidy/mopidy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/mopidy/mopidy.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/ng-context-menu/dist/ng-context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/ng-context-menu/dist/ng-context-menu.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/ryanmullins-angular-hammer/angular.hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/ryanmullins-angular-hammer/angular.hammer.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/src/vendor/underscore/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/src/vendor/underscore/underscore-min.js -------------------------------------------------------------------------------- /mopidy_mopify/static/debug/templates-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/debug/templates-app.js -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/css/mopidy-mopify-1.7.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/css/mopidy-mopify-1.7.3.css -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/ani_equalizer_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/ani_equalizer_black.gif -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/discover-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/discover-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/echonest-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/echonest-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/echonest-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/echonest-logo.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/echonest-menu-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/echonest-menu-logo.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/favicon.ico -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/musicicon-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/musicicon-1x.png -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/musicicon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/musicicon-2x.png -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/musicicon-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/musicicon-3x.png -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/musicicon-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/musicicon-4x.png -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/musicicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/musicicon.png -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/playlists-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/playlists-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/services-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/services-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/settings-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/settings-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/spotify-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/spotify-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/spotify-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/spotify-icon.png -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/stations-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/stations-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/sync-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/sync-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/sync-icon-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/sync-icon-menu.png -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/sync-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/sync-icon.png -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/images/tracklist-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/images/tracklist-header.jpg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/manifest.json -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/mopidy-mopify-1.7.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/mopidy-mopify-1.7.3.js -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/mopidy-mopify-1.7.3.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/mopidy-mopify-1.7.3.js.map -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/webfonts/ss-standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/webfonts/ss-standard.css -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/webfonts/ss-standard.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/webfonts/ss-standard.eot -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/webfonts/ss-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/webfonts/ss-standard.js -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/webfonts/ss-standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/webfonts/ss-standard.svg -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/webfonts/ss-standard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/webfonts/ss-standard.ttf -------------------------------------------------------------------------------- /mopidy_mopify/static/min/assets/webfonts/ss-standard.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/assets/webfonts/ss-standard.woff -------------------------------------------------------------------------------- /mopidy_mopify/static/min/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/mopidy_mopify/static/min/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/package.json -------------------------------------------------------------------------------- /pre-work/docs/mainideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/docs/mainideas.md -------------------------------------------------------------------------------- /pre-work/docs/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/docs/structure.md -------------------------------------------------------------------------------- /pre-work/html/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/css/bootstrap.css -------------------------------------------------------------------------------- /pre-work/html/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/css/style.css -------------------------------------------------------------------------------- /pre-work/html/css/svg/resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/css/svg/resources.svg -------------------------------------------------------------------------------- /pre-work/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/index.html -------------------------------------------------------------------------------- /pre-work/html/stations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/stations.html -------------------------------------------------------------------------------- /pre-work/html/webfonts/ss-standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/webfonts/ss-standard.css -------------------------------------------------------------------------------- /pre-work/html/webfonts/ss-standard.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/webfonts/ss-standard.eot -------------------------------------------------------------------------------- /pre-work/html/webfonts/ss-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/webfonts/ss-standard.js -------------------------------------------------------------------------------- /pre-work/html/webfonts/ss-standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/webfonts/ss-standard.svg -------------------------------------------------------------------------------- /pre-work/html/webfonts/ss-standard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/webfonts/ss-standard.ttf -------------------------------------------------------------------------------- /pre-work/html/webfonts/ss-standard.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/pre-work/html/webfonts/ss-standard.woff -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/setup.py -------------------------------------------------------------------------------- /src/app/account/menu.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/menu.tmpl.html -------------------------------------------------------------------------------- /src/app/account/services/facebook/facebook.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/facebook/facebook.controller.js -------------------------------------------------------------------------------- /src/app/account/services/facebook/facebook.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account/services/facebook/menu.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/facebook/menu.tmpl.html -------------------------------------------------------------------------------- /src/app/account/services/services.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/services.controller.js -------------------------------------------------------------------------------- /src/app/account/services/services.menu.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/services.menu.controller.js -------------------------------------------------------------------------------- /src/app/account/services/services.menu.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/services.menu.tmpl.html -------------------------------------------------------------------------------- /src/app/account/services/services.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/services.tmpl.html -------------------------------------------------------------------------------- /src/app/account/services/spotify/menu.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/spotify/menu.tmpl.html -------------------------------------------------------------------------------- /src/app/account/services/spotify/spotify.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/spotify/spotify.controller.js -------------------------------------------------------------------------------- /src/app/account/services/spotify/spotify.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account/services/spotify/spotify.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/spotify/spotify.tmpl.html -------------------------------------------------------------------------------- /src/app/account/services/sync/menu.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/sync/menu.tmpl.html -------------------------------------------------------------------------------- /src/app/account/services/sync/sync.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/sync/sync.controller.js -------------------------------------------------------------------------------- /src/app/account/services/sync/sync.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account/services/sync/sync.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/services/sync/sync.tmpl.html -------------------------------------------------------------------------------- /src/app/account/settings/settings.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/settings/settings.controller.js -------------------------------------------------------------------------------- /src/app/account/settings/settings.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/account/settings/settings.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/account/settings/settings.tmpl.html -------------------------------------------------------------------------------- /src/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/app.js -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/dashboard/dashboard.controller.js -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.tmpl.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/directives/album.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/album.directive.js -------------------------------------------------------------------------------- /src/app/directives/album.directive.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/album.directive.tmpl.html -------------------------------------------------------------------------------- /src/app/directives/artist.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/artist.directive.js -------------------------------------------------------------------------------- /src/app/directives/artist.directive.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/artist.directive.tmpl.html -------------------------------------------------------------------------------- /src/app/directives/browse.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/browse.directive.js -------------------------------------------------------------------------------- /src/app/directives/browse.directive.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/browse.directive.tmpl.html -------------------------------------------------------------------------------- /src/app/directives/focusme.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/focusme.directive.js -------------------------------------------------------------------------------- /src/app/directives/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/module.js -------------------------------------------------------------------------------- /src/app/directives/playlist.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/playlist.directive.js -------------------------------------------------------------------------------- /src/app/directives/playlist.directive.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/playlist.directive.tmpl.html -------------------------------------------------------------------------------- /src/app/directives/service.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/service.directive.js -------------------------------------------------------------------------------- /src/app/directives/service.directive.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/service.directive.tmpl.html -------------------------------------------------------------------------------- /src/app/directives/station.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/station.directive.js -------------------------------------------------------------------------------- /src/app/directives/station.directive.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/station.directive.tmpl.html -------------------------------------------------------------------------------- /src/app/directives/stoppropagation.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/stoppropagation.directive.js -------------------------------------------------------------------------------- /src/app/directives/track.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/track.directive.js -------------------------------------------------------------------------------- /src/app/directives/track.directive.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/directives/track.directive.tmpl.html -------------------------------------------------------------------------------- /src/app/discover/browse/browse.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/discover/browse/browse.controller.js -------------------------------------------------------------------------------- /src/app/discover/browse/browse.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/discover/browse/browse.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/discover/browse/browse.tmpl.html -------------------------------------------------------------------------------- /src/app/discover/featured/featured.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/discover/featured/featured.controller.js -------------------------------------------------------------------------------- /src/app/discover/featured/featured.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/discover/featured/featured.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/discover/featured/featured.tmpl.html -------------------------------------------------------------------------------- /src/app/discover/menu.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/discover/menu.tmpl.html -------------------------------------------------------------------------------- /src/app/discover/newreleases/newreleases.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/discover/newreleases/newreleases.controller.js -------------------------------------------------------------------------------- /src/app/discover/newreleases/newreleases.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/discover/newreleases/newreleases.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/discover/newreleases/newreleases.tmpl.html -------------------------------------------------------------------------------- /src/app/modals/playlistselect.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/modals/playlistselect.controller.js -------------------------------------------------------------------------------- /src/app/modals/playlistselect.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/modals/playlistselect.tmpl.html -------------------------------------------------------------------------------- /src/app/music/artist/artist.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/artist/artist.controller.js -------------------------------------------------------------------------------- /src/app/music/artist/artist.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/music/artist/artist.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/artist/artist.tmpl.html -------------------------------------------------------------------------------- /src/app/music/library/albums/albums.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/library/albums/albums.controller.js -------------------------------------------------------------------------------- /src/app/music/library/albums/albums.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/library/albums/albums.tmpl.html -------------------------------------------------------------------------------- /src/app/music/library/artists/artists.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/library/artists/artists.controller.js -------------------------------------------------------------------------------- /src/app/music/library/artists/artists.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/library/artists/artists.tmpl.html -------------------------------------------------------------------------------- /src/app/music/library/playlists/playlists.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/library/playlists/playlists.controller.js -------------------------------------------------------------------------------- /src/app/music/library/playlists/playlists.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/music/library/playlists/playlists.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/library/playlists/playlists.tmpl.html -------------------------------------------------------------------------------- /src/app/music/menu.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/menu.tmpl.html -------------------------------------------------------------------------------- /src/app/music/stations/stations.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/stations/stations.controller.js -------------------------------------------------------------------------------- /src/app/music/stations/stations.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/music/stations/stations.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/stations/stations.tmpl.html -------------------------------------------------------------------------------- /src/app/music/tracklist/tracklist.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/tracklist/tracklist.controller.js -------------------------------------------------------------------------------- /src/app/music/tracklist/tracklist.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/music/tracklist/tracklist.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/music/tracklist/tracklist.tmpl.html -------------------------------------------------------------------------------- /src/app/player/controls/controls.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/player/controls/controls.controller.js -------------------------------------------------------------------------------- /src/app/player/controls/controls.left.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/player/controls/controls.left.tmpl.html -------------------------------------------------------------------------------- /src/app/player/controls/controls.right.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/player/controls/controls.right.tmpl.html -------------------------------------------------------------------------------- /src/app/player/controls/controls.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/player/player.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/player/player.controller.js -------------------------------------------------------------------------------- /src/app/player/player.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/player/player.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/player/player.tmpl.html -------------------------------------------------------------------------------- /src/app/player/seekbar/seekbar.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/player/seekbar/seekbar.controller.js -------------------------------------------------------------------------------- /src/app/player/seekbar/seekbar.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/player/seekbar/seekbar.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/player/seekbar/seekbar.tmpl.html -------------------------------------------------------------------------------- /src/app/search/menu.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/search/menu.tmpl.html -------------------------------------------------------------------------------- /src/app/search/search.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/search/search.controller.js -------------------------------------------------------------------------------- /src/app/search/search.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/search/search.tmpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/search/search.tmpl.html -------------------------------------------------------------------------------- /src/app/services/autoupdate.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/autoupdate.service.js -------------------------------------------------------------------------------- /src/app/services/discover.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/discover.service.js -------------------------------------------------------------------------------- /src/app/services/error.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/error.service.js -------------------------------------------------------------------------------- /src/app/services/facebook.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/facebook.service.js -------------------------------------------------------------------------------- /src/app/services/history.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/history.service.js -------------------------------------------------------------------------------- /src/app/services/mopidy.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/mopidy.service.js -------------------------------------------------------------------------------- /src/app/services/playlistmanager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/playlistmanager.service.js -------------------------------------------------------------------------------- /src/app/services/queuemanager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/queuemanager.service.js -------------------------------------------------------------------------------- /src/app/services/servicemanager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/servicemanager.service.js -------------------------------------------------------------------------------- /src/app/services/settings.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/settings.service.js -------------------------------------------------------------------------------- /src/app/services/spotify.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/spotify.service.js -------------------------------------------------------------------------------- /src/app/services/station.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/station.service.js -------------------------------------------------------------------------------- /src/app/services/sync.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/sync.service.js -------------------------------------------------------------------------------- /src/app/services/util.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/util.service.js -------------------------------------------------------------------------------- /src/app/services/versionmanager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/app/services/versionmanager.service.js -------------------------------------------------------------------------------- /src/assets/images/ani_equalizer_black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/ani_equalizer_black.gif -------------------------------------------------------------------------------- /src/assets/images/discover-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/discover-header.jpg -------------------------------------------------------------------------------- /src/assets/images/echonest-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/echonest-header.jpg -------------------------------------------------------------------------------- /src/assets/images/echonest-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/echonest-logo.jpg -------------------------------------------------------------------------------- /src/assets/images/echonest-menu-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/echonest-menu-logo.jpg -------------------------------------------------------------------------------- /src/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/favicon.ico -------------------------------------------------------------------------------- /src/assets/images/musicicon-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/musicicon-1x.png -------------------------------------------------------------------------------- /src/assets/images/musicicon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/musicicon-2x.png -------------------------------------------------------------------------------- /src/assets/images/musicicon-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/musicicon-3x.png -------------------------------------------------------------------------------- /src/assets/images/musicicon-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/musicicon-4x.png -------------------------------------------------------------------------------- /src/assets/images/musicicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/musicicon.png -------------------------------------------------------------------------------- /src/assets/images/playlists-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/playlists-header.jpg -------------------------------------------------------------------------------- /src/assets/images/services-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/services-header.jpg -------------------------------------------------------------------------------- /src/assets/images/settings-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/settings-header.jpg -------------------------------------------------------------------------------- /src/assets/images/spotify-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/spotify-header.jpg -------------------------------------------------------------------------------- /src/assets/images/spotify-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/spotify-icon.png -------------------------------------------------------------------------------- /src/assets/images/stations-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/stations-header.jpg -------------------------------------------------------------------------------- /src/assets/images/sync-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/sync-header.jpg -------------------------------------------------------------------------------- /src/assets/images/sync-icon-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/sync-icon-menu.png -------------------------------------------------------------------------------- /src/assets/images/sync-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/sync-icon.png -------------------------------------------------------------------------------- /src/assets/images/tracklist-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/images/tracklist-header.jpg -------------------------------------------------------------------------------- /src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/manifest.json -------------------------------------------------------------------------------- /src/assets/webfonts/ss-standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/webfonts/ss-standard.css -------------------------------------------------------------------------------- /src/assets/webfonts/ss-standard.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/webfonts/ss-standard.eot -------------------------------------------------------------------------------- /src/assets/webfonts/ss-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/webfonts/ss-standard.js -------------------------------------------------------------------------------- /src/assets/webfonts/ss-standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/webfonts/ss-standard.svg -------------------------------------------------------------------------------- /src/assets/webfonts/ss-standard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/webfonts/ss-standard.ttf -------------------------------------------------------------------------------- /src/assets/webfonts/ss-standard.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/assets/webfonts/ss-standard.woff -------------------------------------------------------------------------------- /src/css/00-animations.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/01-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/css/01-bootstrap.css -------------------------------------------------------------------------------- /src/css/50-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/css/50-style.css -------------------------------------------------------------------------------- /src/css/60-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/css/60-responsive.css -------------------------------------------------------------------------------- /src/css/svg/resources.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/css/svg/resources.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/index.html -------------------------------------------------------------------------------- /src/vendor/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !angular-prompt 4 | !mopidy 5 | -------------------------------------------------------------------------------- /src/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/README.md -------------------------------------------------------------------------------- /src/vendor/angular-prompt/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-prompt/.bower.json -------------------------------------------------------------------------------- /src/vendor/angular-prompt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-prompt/LICENSE -------------------------------------------------------------------------------- /src/vendor/angular-prompt/angular-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-prompt/angular-prompt.js -------------------------------------------------------------------------------- /src/vendor/angular-prompt/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-prompt/bower.json -------------------------------------------------------------------------------- /src/vendor/angular-prompt/dist/angular-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-prompt/dist/angular-prompt.js -------------------------------------------------------------------------------- /src/vendor/angular-prompt/dist/angular-prompt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-prompt/dist/angular-prompt.min.js -------------------------------------------------------------------------------- /src/vendor/angular-spotify/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/Gruntfile.js -------------------------------------------------------------------------------- /src/vendor/angular-spotify/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/LICENSE.md -------------------------------------------------------------------------------- /src/vendor/angular-spotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/README.md -------------------------------------------------------------------------------- /src/vendor/angular-spotify/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/bower.json -------------------------------------------------------------------------------- /src/vendor/angular-spotify/dist/angular-spotify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/dist/angular-spotify.min.js -------------------------------------------------------------------------------- /src/vendor/angular-spotify/examples/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/examples/callback.html -------------------------------------------------------------------------------- /src/vendor/angular-spotify/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/examples/index.html -------------------------------------------------------------------------------- /src/vendor/angular-spotify/examples/main.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/examples/main.controller.js -------------------------------------------------------------------------------- /src/vendor/angular-spotify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/package.json -------------------------------------------------------------------------------- /src/vendor/angular-spotify/src/angular-spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/angular-spotify/src/angular-spotify.js -------------------------------------------------------------------------------- /src/vendor/mopidy/mopidy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkgroenen/mopidy-mopify/HEAD/src/vendor/mopidy/mopidy.js --------------------------------------------------------------------------------