├── .bowerrc ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── PRIVACY.md ├── README.rst ├── bower.json ├── config.xml ├── gulpfile.js ├── hooks └── after_prepare │ └── 010_add_platform_class.js ├── ionic.config.json ├── merges └── android │ └── app │ └── services │ └── platform.js ├── mopidy_mobile ├── __init__.py ├── ext.conf ├── web.py └── www │ ├── images │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-76x76.png │ ├── icon-144x144.png │ ├── icon-192x192.png │ ├── icon-72x72.png │ ├── icon-96x96.png │ └── splash-320x480.png │ ├── index.html │ └── manifest.json ├── package.json ├── res ├── android │ ├── colors.xml │ ├── icon │ │ ├── drawable-hdpi-icon.png │ │ ├── drawable-ldpi-icon.png │ │ ├── drawable-mdpi-icon.png │ │ ├── drawable-xhdpi-icon.png │ │ ├── drawable-xxhdpi-icon.png │ │ ├── drawable-xxxhdpi-icon.png │ │ ├── mipmap-hdpi-icon-fg.png │ │ ├── mipmap-mdpi-icon-fg.png │ │ ├── mipmap-xhdpi-icon-fg.png │ │ ├── mipmap-xxhdpi-icon-fg.png │ │ └── mipmap-xxxhdpi-icon-fg.png │ ├── play-icon.png │ ├── play-icon.xcf │ └── splash │ │ ├── drawable-land-hdpi-screen.png │ │ ├── drawable-land-ldpi-screen.png │ │ ├── drawable-land-mdpi-screen.png │ │ ├── drawable-land-xhdpi-screen.png │ │ ├── drawable-land-xxhdpi-screen.png │ │ ├── drawable-land-xxxhdpi-screen.png │ │ ├── drawable-port-hdpi-screen.png │ │ ├── drawable-port-ldpi-screen.png │ │ ├── drawable-port-mdpi-screen.png │ │ ├── drawable-port-xhdpi-screen.png │ │ ├── drawable-port-xxhdpi-screen.png │ │ └── drawable-port-xxxhdpi-screen.png ├── icon.png ├── icon.xcf ├── splash.png └── splash.xcf ├── scss ├── _style.scss ├── _variables.scss ├── ionic-dark.scss ├── ionic-light.scss └── ionic-sprites.png ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_extension.py ├── tox.ini └── www ├── app ├── app.js ├── coverart │ ├── archive.js │ ├── coverart.js │ ├── lastfm.js │ └── mopidy.js ├── library │ ├── browse.html │ ├── library.js │ ├── lookup.html │ ├── query.html │ └── search.html ├── locale │ ├── ca.js │ ├── de.js │ ├── en.js │ ├── es.js │ ├── fr.js │ ├── locale.js │ ├── nb.js │ ├── nl.js │ ├── pl.js │ └── sk.js ├── main │ ├── main.js │ ├── tabs.html │ └── trackinfo.html ├── playback │ ├── playback.html │ └── playback.js ├── playlist │ ├── add.html │ ├── edit.html │ ├── playlist.js │ └── view.html ├── playlists │ ├── edit.html │ ├── playlists.js │ ├── select.html │ └── view.html ├── servers │ ├── add.html │ ├── edit.html │ ├── servers.js │ └── view.html ├── services │ ├── actions.js │ ├── connection.js │ ├── coverart.js │ ├── locale.js │ ├── logging.js │ ├── mopidy.js │ ├── paging.js │ ├── platform.js │ ├── router.js │ ├── servers.js │ ├── services.js │ └── settings.js ├── settings │ ├── about.html │ ├── coverart.html │ ├── coverartarchive.svg │ ├── icon.png │ ├── index.html │ ├── lastfm.gif │ ├── licenses.html │ ├── logging.html │ ├── mopidy.png │ ├── settings.js │ └── ui.html ├── tracklist │ ├── add.html │ ├── edit.html │ ├── menu.html │ ├── tracklist.js │ └── view.html └── ui │ ├── loading.js │ ├── menu.js │ ├── popover.js │ ├── popup.js │ ├── stylesheet.js │ ├── target.js │ └── ui.js └── index.html /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/README.rst -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/bower.json -------------------------------------------------------------------------------- /config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/config.xml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/gulpfile.js -------------------------------------------------------------------------------- /hooks/after_prepare/010_add_platform_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/hooks/after_prepare/010_add_platform_class.js -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/ionic.config.json -------------------------------------------------------------------------------- /merges/android/app/services/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/merges/android/app/services/platform.js -------------------------------------------------------------------------------- /mopidy_mobile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/__init__.py -------------------------------------------------------------------------------- /mopidy_mobile/ext.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/ext.conf -------------------------------------------------------------------------------- /mopidy_mobile/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/web.py -------------------------------------------------------------------------------- /mopidy_mobile/www/images/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /mopidy_mobile/www/images/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /mopidy_mobile/www/images/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /mopidy_mobile/www/images/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /mopidy_mobile/www/images/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/icon-144x144.png -------------------------------------------------------------------------------- /mopidy_mobile/www/images/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/icon-192x192.png -------------------------------------------------------------------------------- /mopidy_mobile/www/images/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/icon-72x72.png -------------------------------------------------------------------------------- /mopidy_mobile/www/images/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/icon-96x96.png -------------------------------------------------------------------------------- /mopidy_mobile/www/images/splash-320x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/images/splash-320x480.png -------------------------------------------------------------------------------- /mopidy_mobile/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/index.html -------------------------------------------------------------------------------- /mopidy_mobile/www/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/mopidy_mobile/www/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/package.json -------------------------------------------------------------------------------- /res/android/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/colors.xml -------------------------------------------------------------------------------- /res/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /res/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /res/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /res/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /res/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /res/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /res/android/icon/mipmap-hdpi-icon-fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/mipmap-hdpi-icon-fg.png -------------------------------------------------------------------------------- /res/android/icon/mipmap-mdpi-icon-fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/mipmap-mdpi-icon-fg.png -------------------------------------------------------------------------------- /res/android/icon/mipmap-xhdpi-icon-fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/mipmap-xhdpi-icon-fg.png -------------------------------------------------------------------------------- /res/android/icon/mipmap-xxhdpi-icon-fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/mipmap-xxhdpi-icon-fg.png -------------------------------------------------------------------------------- /res/android/icon/mipmap-xxxhdpi-icon-fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/icon/mipmap-xxxhdpi-icon-fg.png -------------------------------------------------------------------------------- /res/android/play-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/play-icon.png -------------------------------------------------------------------------------- /res/android/play-icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/play-icon.xcf -------------------------------------------------------------------------------- /res/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /res/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/icon.png -------------------------------------------------------------------------------- /res/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/icon.xcf -------------------------------------------------------------------------------- /res/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/splash.png -------------------------------------------------------------------------------- /res/splash.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/res/splash.xcf -------------------------------------------------------------------------------- /scss/_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/scss/_style.scss -------------------------------------------------------------------------------- /scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/scss/_variables.scss -------------------------------------------------------------------------------- /scss/ionic-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/scss/ionic-dark.scss -------------------------------------------------------------------------------- /scss/ionic-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/scss/ionic-light.scss -------------------------------------------------------------------------------- /scss/ionic-sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/scss/ionic-sprites.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/tests/test_extension.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/tox.ini -------------------------------------------------------------------------------- /www/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/app.js -------------------------------------------------------------------------------- /www/app/coverart/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/coverart/archive.js -------------------------------------------------------------------------------- /www/app/coverart/coverart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/coverart/coverart.js -------------------------------------------------------------------------------- /www/app/coverart/lastfm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/coverart/lastfm.js -------------------------------------------------------------------------------- /www/app/coverart/mopidy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/coverart/mopidy.js -------------------------------------------------------------------------------- /www/app/library/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/library/browse.html -------------------------------------------------------------------------------- /www/app/library/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/library/library.js -------------------------------------------------------------------------------- /www/app/library/lookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/library/lookup.html -------------------------------------------------------------------------------- /www/app/library/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/library/query.html -------------------------------------------------------------------------------- /www/app/library/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/library/search.html -------------------------------------------------------------------------------- /www/app/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/ca.js -------------------------------------------------------------------------------- /www/app/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/de.js -------------------------------------------------------------------------------- /www/app/locale/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/en.js -------------------------------------------------------------------------------- /www/app/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/es.js -------------------------------------------------------------------------------- /www/app/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/fr.js -------------------------------------------------------------------------------- /www/app/locale/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/locale.js -------------------------------------------------------------------------------- /www/app/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/nb.js -------------------------------------------------------------------------------- /www/app/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/nl.js -------------------------------------------------------------------------------- /www/app/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/pl.js -------------------------------------------------------------------------------- /www/app/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/locale/sk.js -------------------------------------------------------------------------------- /www/app/main/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/main/main.js -------------------------------------------------------------------------------- /www/app/main/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/main/tabs.html -------------------------------------------------------------------------------- /www/app/main/trackinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/main/trackinfo.html -------------------------------------------------------------------------------- /www/app/playback/playback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playback/playback.html -------------------------------------------------------------------------------- /www/app/playback/playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playback/playback.js -------------------------------------------------------------------------------- /www/app/playlist/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playlist/add.html -------------------------------------------------------------------------------- /www/app/playlist/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playlist/edit.html -------------------------------------------------------------------------------- /www/app/playlist/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playlist/playlist.js -------------------------------------------------------------------------------- /www/app/playlist/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playlist/view.html -------------------------------------------------------------------------------- /www/app/playlists/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playlists/edit.html -------------------------------------------------------------------------------- /www/app/playlists/playlists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playlists/playlists.js -------------------------------------------------------------------------------- /www/app/playlists/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playlists/select.html -------------------------------------------------------------------------------- /www/app/playlists/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/playlists/view.html -------------------------------------------------------------------------------- /www/app/servers/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/servers/add.html -------------------------------------------------------------------------------- /www/app/servers/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/servers/edit.html -------------------------------------------------------------------------------- /www/app/servers/servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/servers/servers.js -------------------------------------------------------------------------------- /www/app/servers/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/servers/view.html -------------------------------------------------------------------------------- /www/app/services/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/actions.js -------------------------------------------------------------------------------- /www/app/services/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/connection.js -------------------------------------------------------------------------------- /www/app/services/coverart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/coverart.js -------------------------------------------------------------------------------- /www/app/services/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/locale.js -------------------------------------------------------------------------------- /www/app/services/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/logging.js -------------------------------------------------------------------------------- /www/app/services/mopidy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/mopidy.js -------------------------------------------------------------------------------- /www/app/services/paging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/paging.js -------------------------------------------------------------------------------- /www/app/services/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/platform.js -------------------------------------------------------------------------------- /www/app/services/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/router.js -------------------------------------------------------------------------------- /www/app/services/servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/servers.js -------------------------------------------------------------------------------- /www/app/services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/services.js -------------------------------------------------------------------------------- /www/app/services/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/services/settings.js -------------------------------------------------------------------------------- /www/app/settings/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/about.html -------------------------------------------------------------------------------- /www/app/settings/coverart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/coverart.html -------------------------------------------------------------------------------- /www/app/settings/coverartarchive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/coverartarchive.svg -------------------------------------------------------------------------------- /www/app/settings/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/icon.png -------------------------------------------------------------------------------- /www/app/settings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/index.html -------------------------------------------------------------------------------- /www/app/settings/lastfm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/lastfm.gif -------------------------------------------------------------------------------- /www/app/settings/licenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/licenses.html -------------------------------------------------------------------------------- /www/app/settings/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/logging.html -------------------------------------------------------------------------------- /www/app/settings/mopidy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/mopidy.png -------------------------------------------------------------------------------- /www/app/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/settings.js -------------------------------------------------------------------------------- /www/app/settings/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/settings/ui.html -------------------------------------------------------------------------------- /www/app/tracklist/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/tracklist/add.html -------------------------------------------------------------------------------- /www/app/tracklist/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/tracklist/edit.html -------------------------------------------------------------------------------- /www/app/tracklist/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/tracklist/menu.html -------------------------------------------------------------------------------- /www/app/tracklist/tracklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/tracklist/tracklist.js -------------------------------------------------------------------------------- /www/app/tracklist/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/tracklist/view.html -------------------------------------------------------------------------------- /www/app/ui/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/ui/loading.js -------------------------------------------------------------------------------- /www/app/ui/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/ui/menu.js -------------------------------------------------------------------------------- /www/app/ui/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/ui/popover.js -------------------------------------------------------------------------------- /www/app/ui/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/ui/popup.js -------------------------------------------------------------------------------- /www/app/ui/stylesheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/ui/stylesheet.js -------------------------------------------------------------------------------- /www/app/ui/target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/ui/target.js -------------------------------------------------------------------------------- /www/app/ui/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/app/ui/ui.js -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkem/mopidy-mobile/HEAD/www/index.html --------------------------------------------------------------------------------