Commit Graph

1914 Commits

Author SHA1 Message Date
Thomas Adamcik
5fdd5d0898 docs: Add core changes to changelog 2015-04-06 02:13:51 +02:00
Thomas Adamcik
0a2dff5a6a docs: Add model validation to changelog 2015-04-05 13:09:15 +02:00
Stein Magnus Jodal
9ef1f91a0e Merge branch 'v1.0.x' into develop
Conflicts:
	docs/changelog.rst
2015-04-05 02:14:19 +02:00
Stein Magnus Jodal
5d94a265cd docs: Tweak changelog 2015-04-05 02:13:30 +02:00
Thomas Adamcik
bee0a4c4d5 docs: Add audio volume changes to changelog 2015-04-03 14:48:09 +02:00
Stein Magnus Jodal
c4940cbea2 autopep8: Add space after class signature/docstring 2015-04-03 00:05:26 +02:00
Thomas Adamcik
e2faf7f083 docs: Update docstring and changelog 2015-03-31 00:02:02 +02:00
Stein Magnus Jodal
4176557efc docs: Add release date for v1.0.0 2015-03-25 22:24:28 +01:00
Thomas Kemmer
75020c91ec docs: Add PR #1084 to changelog 2015-03-25 05:46:55 +01:00
Stein Magnus Jodal
08c7f311c4 docs: Fix more comments, add refs to relevant docs 2015-03-24 23:08:38 +01:00
Stein Magnus Jodal
426a56d66b docs: Fix changelog review comments 2015-03-24 23:02:43 +01:00
Stein Magnus Jodal
e0d0e785e0 docs: Cleanup v1.0.0 changelog
Fixes #1079
2015-03-24 21:53:26 +01:00
Thomas Adamcik
141c14ad45 core: Add exact to search() and deprecate find_exact()
Backends that still implement find_exact will be called without exact as an
argument to search, and we will continue to use find_exact. Please remove
find_exact from such backends and switch to the new search API.
2015-03-24 09:31:03 +01:00
Thomas Adamcik
24fe242d56 core/backend: Remove find_exact from backends
Functionality has been replaced with an `exact` param in the search method.
Backends that still implement find_exact will continue being called via
the old method for now.
2015-03-23 23:55:03 +01:00
Stein Magnus Jodal
07cf962434 Merge branch 'develop' into feature/new-playlists-api
Conflicts:
	docs/changelog.rst
2015-03-23 21:45:32 +01:00
Thomas Adamcik
97fd102fa2 docs: Add core API cleanup to changelog 2015-03-23 15:02:25 +01:00
Stein Magnus Jodal
df604bb3e5 core: Deprecated playlists.filter() 2015-03-23 00:49:56 +01:00
Stein Magnus Jodal
d37bd62bb1 backend: Remove playlists.playlists property 2015-03-23 00:44:39 +01:00
Stein Magnus Jodal
4f3a0839b3 core: Add playlists.as_list() and playlists.get_items(uri) 2015-03-23 00:44:39 +01:00
Stein Magnus Jodal
ca3c40b8bb docs: Add PR #1073 to changelog 2015-03-23 00:01:45 +01:00
Thomas Adamcik
7ec2342921 core: Normalize search queries
This is needed as otherwise each and every backend needs to handle the fact
that some "bad" clients might send {'field': 'value'} instead of
{'field': ['value']} Though the real problem isn't the clients but our
organically grown query API.
2015-03-22 23:33:49 +01:00
Stein Magnus Jodal
5eebab6e18 Merge pull request #1071 from adamcik/fix/change-track-failure-should-fail-playback
core: Update playback code to take change track into account.
2015-03-22 23:18:13 +01:00
Thomas Adamcik
a3e295026a docs: Add changelog for core play behaviour change 2015-03-22 22:37:47 +01:00
Stein Magnus Jodal
b8130f03cd Fix flake8 warning 2015-03-22 22:18:57 +01:00
Stein Magnus Jodal
56dca0e931 Merge pull request #1064 from adamcik/fix/1052-break-backend-play
backend: Change playback API (breaking change!)
2015-03-22 09:19:39 +01:00
Thomas Adamcik
c620e3a00f docs: Add changelog for backend API breakage 2015-03-22 01:27:07 +01:00
Stein Magnus Jodal
b2f60bc338 m3u: Extract new M3U backend from local
Fixes #1054
2015-03-21 08:13:45 +01:00
Stein Magnus Jodal
8977f71411 docs: Fix syntax errors in changelog 2015-03-21 00:59:54 +01:00
Thomas Adamcik
31d12c7e1d Merge pull request #1065 from jodal/fix/1060-tracklist-add-uris
core: Add uris kwarg to tracklist.add()
2015-03-21 00:42:22 +01:00
Stein Magnus Jodal
2bc3db0d0e core: Add uris kwarg to tracklist.core()
Fixes #1060
2015-03-21 00:16:24 +01:00
Stein Magnus Jodal
861f60e6f1 core: Make history.add() private
Instead of changing the signature to add(uri, name) I opted for
renaming it to _add_track(track).

Since it's internal we may change it whenever we like to. Since you need
different logic for extracting an interesting name from a track and from
a ref or a stream title, it makes sense to add another method for adding
refs/stream titles to the history when that time comes.

Fixes #1056
2015-03-20 22:41:56 +01:00
Stein Magnus Jodal
35a8fecd5d docs: Add PR#1062 to changelog 2015-03-20 22:39:56 +01:00
Stein Magnus Jodal
c57f3ec9b2 core: Make tracklist.mark_*() private
Fixes #1058
2015-03-20 22:28:40 +01:00
Thomas Kemmer
b287579793 docs: Add Mopidy-Local-Images. 2015-03-20 08:11:14 +01:00
Stein Magnus Jodal
4692e73054 docs: Add section on semantic versioning
Fixes #1050
2015-03-18 23:44:31 +01:00
Stein Magnus Jodal
dc982cd880 Merge pull request #1047 from adamcik/fix/1008-add-uris-to-lookup
core: Add uris argument to library.lookup (Fixes #1008)
2015-03-18 23:24:29 +01:00
Thomas Adamcik
71e2b21b52 review: Minor fixes and updates 2015-03-18 23:09:09 +01:00
Stein Magnus Jodal
26d07b2cfe docs: Remove API stability disclaimers
Not as if we've had the freedom to break anything for ages anyway.

Fixes #1049
2015-03-18 22:10:48 +01:00
Stein Magnus Jodal
93afea50a2 docs: Change next release from 0.20 to 1.0 2015-03-18 21:58:58 +01:00
Stein Magnus Jodal
accc1e7249 docs: Update changelog for PR#1046 2015-03-18 00:25:26 +01:00
Thomas Adamcik
fdc84c3905 core: Add uris argument to library.lookup (Fixes #1008)
For now this doesn't add any corresponding APIs to backends, or for that matter
tracklist.add(uris). This is just to get the API in for clients in 0.20.
2015-03-17 23:49:21 +01:00
Stein Magnus Jodal
aae545f2fe docs: Update changelog for PR#1044 2015-03-17 22:07:55 +01:00
Stein Magnus Jodal
3559e61d75 docs: Don't require Sphinx 1.3 to build 2015-03-17 21:34:20 +01:00
Stein Magnus Jodal
bdee947889 docs: Fix review comments 2015-03-17 21:24:32 +01:00
Stein Magnus Jodal
8a0bf3c25f docs: Include commit message tips in the guidelines 2015-03-17 13:16:39 +01:00
Stein Magnus Jodal
b6b872b9c2 docs: Fix typos from review
Co-Authored-By: Nick Steel <kingosticks@gmail.com>
2015-03-17 12:23:12 +01:00
Stein Magnus Jodal
c90f08d8ea docs: Show another level of the about section in the ToC 2015-03-17 01:16:05 +01:00
Stein Magnus Jodal
b2b7b87081 docs: Make devtools a pure release procedure page 2015-03-17 01:16:05 +01:00
Stein Magnus Jodal
e981caf5e9 docs: New contribution guidelines
Fixes #830
2015-03-17 01:16:05 +01:00
Stein Magnus Jodal
7aee505943 docs: Add development environment guide
Fixes #994
2015-03-17 01:16:05 +01:00
Stein Magnus Jodal
aed91008a3 deps: Add executable path to 'mopidy deps' output 2015-03-14 23:07:59 +01:00
Stein Magnus Jodal
a1e866e46e docs: Use sphinx_rtd_theme bundled with Sphinx 1.3 2015-03-14 22:06:38 +01:00
Stein Magnus Jodal
b36083bae6 docs: Fix mock of gst.Caps 2015-03-14 22:02:27 +01:00
Stein Magnus Jodal
5be2849547 docs: Add missing models to graph, reorder model docs 2015-03-14 21:51:37 +01:00
Stein Magnus Jodal
19e120582d docs: Update API concepts 2015-03-14 21:06:28 +01:00
Stein Magnus Jodal
3dc1901436 docs: Remove GStreamer elements from extdev guide
Mixers are no longer custom GStreamer elements, and while still
possible to do, custom GStreamer elements will probably not be as well
supported when we port to GStreamer 1.x.
2015-03-14 20:59:50 +01:00
Stein Magnus Jodal
0eb2e1675a docs: Highlight deprecations in the changelog 2015-03-14 20:48:12 +01:00
Stein Magnus Jodal
0034545351 http: Deprecate http/static_dir config 2015-03-14 20:43:34 +01:00
Thomas Kemmer
9a1833a698 Update change log for PR #1037. 2015-03-14 16:43:02 +01:00
Stein Magnus Jodal
abe9b7aea7 docs: Initial cleanup of v0.20 changelog 2015-03-14 01:27:28 +01:00
Stein Magnus Jodal
bb737e92c2 Merge pull request #1036 from jodal/feature/track-last-modified-as-ms
models: Change Track.last_modified from seconds to ms (fixes #678)
2015-03-14 01:26:55 +01:00
Thomas Adamcik
67f9bd73bf Merge branch 'develop' into feature/stream-reference
Conflicts:
	docs/changelog.rst
2015-03-14 00:28:51 +01:00
Thomas Adamcik
36fe8321b1 docs: Add changelog entry for stream title stuff 2015-03-14 00:25:20 +01:00
Stein Magnus Jodal
3a61445519 models: Change Track.last_modified from seconds to ms 2015-03-14 00:06:23 +01:00
Stein Magnus Jodal
30badf60b9 Merge pull request #1033 from adamcik/feature/scanner-with-typefind
Add typefinding / MIME guess to scan code.
2015-03-13 23:22:12 +01:00
Thomas Adamcik
6b7f9b4899 docs: Add changelog for the scanner improvements 2015-03-13 22:45:57 +01:00
Stein Magnus Jodal
4ce16ce638 docs: Fix header marker 2015-03-13 21:31:33 +01:00
Thomas Kemmer
73bb6c2a8a Replace Mopidy-HTTP-Kuechenradio with Mopidy-Mobile. 2015-03-13 19:10:57 +01:00
Thomas Adamcik
083ec130f9 Merge pull request #1015 from ZenithDK/feature/mixer_none
core/mpd: Allow empty or 'none' as audio.mixer value
2015-03-13 17:57:51 +01:00
Thomas Adamcik
5600b395bf Merge pull request #1032 from tkem/fix/1031
local: Add get_images() to local library (Fixes #1031)
2015-03-13 17:54:47 +01:00
Thomas Kemmer
e655d39384 Fix #1031: Add get_images() to local library. 2015-03-12 11:43:27 +01:00
Stein Magnus Jodal
9a507e17df docs: Improve pointer to contribution page 2015-03-11 19:42:33 +01:00
Stein Magnus Jodal
20e95eac07 docs: Fix rST syntax error 2015-03-10 18:34:49 +01:00
Lasse Bigum
cb19b2c48c Allow 'none' as audio.mixer value
To disable mixing altogether, you can now set the configuration value
 audio/mixer to 'none'.
2015-03-10 00:26:22 +01:00
Thomas Adamcik
29b00cabf9 Merge pull request #1028 from tkem/fix/1026
Fix #1026: Sort local playlists by name.
2015-03-08 23:53:04 +01:00
Stein Magnus Jodal
af87a17ff5 docs: Fix all warnings 2015-03-08 21:43:09 +01:00
Thomas Kemmer
0f52316d77 docs: Add PR #1028 to changelog 2015-03-08 19:04:57 +01:00
Thomas Kemmer
8d2cedcc69 Remove changelog entry for #802. 2015-03-06 19:31:54 +01:00
Stein Magnus Jodal
51fb2e2242 docs: Add PR #1024 to changelog 2015-03-05 22:14:16 +01:00
Stein Magnus Jodal
2280a533c0 Use py.test as test runner 2015-03-05 00:35:20 +01:00
Stein Magnus Jodal
9e967f7997 docs: Add section on Deb package availability 2015-03-04 23:16:26 +01:00
Nick Steel
a6f021cc4f docs: Troubleshooting link to discuss, not google group 2015-03-03 15:03:13 +00:00
Stein Magnus Jodal
6dddf34333 docs: Fix review comments 2015-03-03 15:28:30 +01:00
Stein Magnus Jodal
0f9fcc62cb docs: Add missing ext troubleshooting to Debian docs
Fixes #879
2015-03-03 01:53:36 +01:00
Stein Magnus Jodal
1e41a1192f docs: Add section on ext installation from source 2015-03-03 01:36:47 +01:00
Stein Magnus Jodal
6ff85aed29 docs: Add section on ext installation on Debian 2015-03-03 01:36:47 +01:00
Stein Magnus Jodal
c3f6016388 docs: Add section on ext installation on Arch 2015-03-03 01:36:47 +01:00
Stein Magnus Jodal
3283beba69 docs: Add section on starting Mopidy at login
Fixes #887
2015-03-03 01:22:02 +01:00
Stein Magnus Jodal
88ddcc7d35 docs: Add section on ext installation on OS X 2015-03-03 01:09:48 +01:00
Thomas Adamcik
c0d4626360 docs: Update changelog based on all merges since last 0.19.x merge 2015-03-03 00:00:42 +01:00
Thomas Adamcik
8c7c275f3a docs: Add changelog for issue #917 & PR #947 2015-03-02 23:21:14 +01:00
Stein Magnus Jodal
2179bf06d3 Merge pull request #1022 from adamcik/fix/913
Add list_distinct command for more effective library lookups.
2015-03-02 22:55:42 +01:00
Thomas Adamcik
8cc9c9bbc0 core: Rename list_distinct to get_distinct 2015-03-02 22:41:09 +01:00
Nick Steel
45baeb9974 Fixed OpenHome link for upmpdcli 2015-03-02 11:26:05 +00:00
Thomas Adamcik
5fd2afa7ca mpd: Switch list command to using list_distinct 2015-03-02 00:26:51 +01:00
Thomas Adamcik
00b2b9538e core: Add library.list_distinct for getting distinct field values 2015-03-02 00:26:06 +01:00
Stein Magnus Jodal
0634de6e28 Merge pull request #1020 from adamcik/feature/fix-ws-disconnect-race
Fix WS disconnect race
2015-03-02 00:16:09 +01:00
Thomas Adamcik
0fb6c620df docs: Add changelog entry for broadcast race 2015-03-02 00:05:58 +01:00
Thomas Adamcik
1de032be07 Merge pull request #1018 from ZenithDK/fix/no_resume_on_seek
core: Don't change to playing state when seeking in paused state
2015-03-01 21:09:22 +01:00
ronaldz
713c55321f Updated the changelog 2015-03-01 14:56:38 -05:00
Lasse Bigum
fbd534efbf Don't change to playing state when seeking in paused state
Do not switch state from paused to playing when seeking
2015-03-01 15:50:17 +01:00
Stein Magnus Jodal
635ee6e4eb Merge pull request #1002 from adamcik/fix/694
config: Debug log ignored sections (fixes: #694)
2015-02-25 23:36:13 +01:00
Thomas Adamcik
4a3dfdd415 docs: Update changelog 2015-02-25 23:28:56 +01:00
Thomas Adamcik
3b41b26880 config: Fix review comments 2015-02-25 22:57:49 +01:00
Thomas Adamcik
5c833e106b logging: Add support for per logger colors (fixes: #808) 2015-02-25 22:16:30 +01:00
Stein Magnus Jodal
b7d46d3247 Merge pull request #990 from adamcik/feature/mpd-blacklist-commands
mpd: Support blacklisting MPD commands in the server.
2015-02-18 21:25:50 +01:00
Thomas Adamcik
52814715b4 mpd: Fix review comments for commands blacklist 2015-02-18 20:57:22 +01:00
Thomas Adamcik
e4ba4b3e5f mpd: Support blacklisting MPD commands in the server.
Default blacklist set to listall and listallinfo.

This change has been done to avoid clients being able to call "bad" MPD
commands which are often misused to try and keep a client db. Note that
this change will break some MPD clients, but the blacklist can be controlled
via config to allow opting out for now.
2015-02-18 00:13:24 +01:00
Trygve Aaberge
b6110de186 Merge pull request #989 from jaksi/patch-1
Change yaourt command to update packages from AUR.
2015-02-17 00:28:55 +01:00
Jakab Kristóf
305d88c920 Update arch.rst
yaourt only syncs AUR packages if the -a flag is given
2015-02-17 00:01:01 +01:00
Stein Magnus Jodal
f5e63c4063 flake8: Fix warnings after flake8 upgrade 2015-02-16 10:34:27 +01:00
Stein Magnus Jodal
d60c037fdc docs: Update number of times -v is accepted 2015-02-13 12:24:33 +01:00
Stein Magnus Jodal
2d958d21b5 docs: Fix references and typos 2015-02-13 12:16:49 +01:00
Stein Magnus Jodal
82b94693f9 docs: Add Image to model relation graph 2015-02-13 01:39:57 +01:00
Stein Magnus Jodal
7aede98fda Merge pull request #982 from adamcik/feature/use-proxy-in-stream-scanner
Use proxy in stream scanner
2015-02-13 01:04:09 +01:00
Thomas Adamcik
0e4e872d6b stream: Hook stream scanner up to proxy settings 2015-02-13 00:52:20 +01:00
Stein Magnus Jodal
e4f2796e81 docs: Add model addition to changelog 2015-02-13 00:41:32 +01:00
Stein Magnus Jodal
638740541b Merge pull request #981 from adamcik/feature/core-get-images
Add library.get_images()
2015-02-13 00:33:29 +01:00
Thomas Adamcik
3cb9eb52f0 Merge pull request #975 from jodal/feature/core-mixer
Add core.mixer replacing playback mixer methods.
2015-02-12 23:50:04 +01:00
Stein Magnus Jodal
83a5246074 Merge pull request #980 from adamcik/feature/add-tags-and-duration-to-local-library-add
Add tags and duration to local library add()
2015-02-12 23:26:13 +01:00
Stein Magnus Jodal
172633a2d8 Merge branch 'release/v0.19.x' into develop
Conflicts:
	mopidy/audio/actor.py
	setup.cfg
2015-02-12 23:18:56 +01:00
Stein Magnus Jodal
80516cab01 Merge branch 'master' into release/v0.19.x
Conflicts:
	mopidy/audio/playlists.py
2015-02-12 23:17:29 +01:00
Stein Magnus Jodal
5a6eb78137 docs: Update changelog for PR#958 2015-02-12 23:11:29 +01:00
Thomas Adamcik
a3133afe6b docs: Add changelog entry for core.library.get_images 2015-02-12 22:41:21 +01:00
Thomas Adamcik
663cdf929d docs: Add tags/duration local addition to changelog 2015-02-12 21:13:50 +01:00
Stein Magnus Jodal
ece54b68d1 log: Support -vvvv to not filter logs at all 2015-02-12 19:29:14 +01:00
Stein Magnus Jodal
79dbc652e0 log: Define TRACE log level with name and color 2015-02-12 18:12:56 +01:00
Stein Magnus Jodal
df67d708db config: Add support for 'all' loglevel
Equal to logging.NOTSET or 0 in the logging module.
2015-02-12 18:12:33 +01:00
Stein Magnus Jodal
42115c56f7 core: Add mixer controller (fixes: #962)
Deprecate volume and mute methods on playback controller.
2015-02-12 10:31:16 +01:00
Stein Magnus Jodal
352de135cd core: Deprecate properties (fixes #952) 2015-02-11 00:17:12 +01:00
Stein Magnus Jodal
52457df525 Merge pull request #968 from kingosticks/fix/session-playlist-uri-mapping
Share MPD playlist uri mapping between sessions
2015-02-09 13:26:40 +01:00
Stein Magnus Jodal
75955822b7 docs: Remove ext steps from source install docs
Maintaining multiple copies of instructions for how to install specific
extensions doesn't scale well.
2015-02-09 13:16:18 +01:00
Stein Magnus Jodal
0ec9212146 docs: Break lines and tweak changes from PR#959 2015-02-09 13:13:51 +01:00
kingosticks
0de13994c2 Moved MPDUriMapper to own file and updated changelog 2015-02-09 12:07:17 +00:00
Stein Magnus Jodal
adb3df97db Merge branch Lixxia/docs/install_from_source 2015-02-09 13:05:37 +01:00
Stein Magnus Jodal
faa5e01e0a docs: Update changelog 2015-02-09 00:37:41 +01:00
Lixxia
c698e07931 changed documentation to make installing from source clearer. 2015-02-03 20:56:37 -05:00
Stein Magnus Jodal
c6ec143060 Merge branch 'release/v0.19.x' into develop 2015-02-02 23:00:53 +01:00
Stein Magnus Jodal
193799a57a Merge branch 'master' into release/v0.19.x 2015-02-02 23:00:16 +01:00
Dirk Groenen
7fd0603e16 docs: Update Mopidy-Mopify entry 2015-02-02 22:59:40 +01:00
Stein Magnus Jodal
bec7d0d4ac docs: New year
(cherry picked from commit edcad494da)
2015-02-02 22:59:38 +01:00
Stein Magnus Jodal
5b614e95d6 Update to Mopidy.js 0.5.0 2015-01-31 22:15:40 +01:00
Stein Magnus Jodal
5d19a16837 Merge branch 'release/v0.19.x' into develop
Conflicts:
	docs/changelog.rst
2015-01-04 22:23:03 +01:00
kingosticks
73fac53dd5 Update changelog
(cherry picked from commit e252dd3a55)

Conflicts:
	docs/changelog.rst
2015-01-04 22:22:09 +01:00
Stein Magnus Jodal
767aa08685 New year
(cherry picked from commit edcad494da)
2015-01-04 22:21:15 +01:00
kingosticks
e252dd3a55 Update changelog 2015-01-04 20:54:13 +00:00
Stein Magnus Jodal
edcad494da New year 2015-01-01 12:45:28 +01:00
Thomas Adamcik
8d913b56da docs: Add note about noqa use 2014-12-30 00:39:31 +01:00
Stein Magnus Jodal
097172d574 Merge pull request #915 from adamcik/feature/taglist-converter
Add support for tracking metadata changes in audio
2014-12-28 20:21:37 +01:00
Thomas Adamcik
5513cbcfb1 audio: Update audio taglist key documentation 2014-12-27 23:28:19 +01:00
Stein Magnus Jodal
7d443c6cda Move {data => extra/desktop}/mopidy.desktop 2014-12-27 14:47:53 +01:00
Thomas Adamcik
656f7e976f Merge branch 'develop' into feature/taglist-converter
Conflicts:
	docs/changelog.rst
2014-12-25 22:46:44 +01:00
Stein Magnus Jodal
890ed53ee6 Merge branch 'release/v0.19.x' into develop
Conflicts:
	docs/changelog.rst
2014-12-24 00:41:10 +01:00
Stein Magnus Jodal
884c35e1f4 docs: Update changelog 2014-12-24 00:36:52 +01:00
Stein Magnus Jodal
dbbb86e6c0 Merge branch 'release/v0.19.x' into develop
Conflicts:
	mopidy/core/playback.py
2014-12-24 00:24:19 +01:00
Stein Magnus Jodal
c6ff9eee86 playback: Remove skipped track on next in consume mode
Also adds core level tests of consume behavior on next/prev/eot.

Fixes #902
2014-12-24 00:04:41 +01:00
Stein Magnus Jodal
c8c44c868b Merge branch 'release/v0.19.x' into develop 2014-12-23 22:58:54 +01:00
Stein Magnus Jodal
302bb7c221 ext: Fix unpacking of VersionConflict exception
Fixes #911
2014-12-23 22:58:19 +01:00
Thomas Adamcik
60aec2dc95 docs: Update changelog with audio taglist changes etc 2014-12-23 22:39:37 +01:00
Stein Magnus Jodal
6ec35b2d02 Merge branch 'release/v0.19.x' into develop 2014-12-23 22:23:32 +01:00
Stein Magnus Jodal
fcf39833ca config: Support UTF-8 in default config
Fixes issue reported at https://discuss.mopidy.com/t/428.

Mopidy-HTTP-Kuechenradio includes a non-ASCII UTF-8 character in its
default config. If Mopidy didn't already have a config file, it crashed
when trying to create the initial config file based on the default
config of all available extensions.
2014-12-23 22:21:10 +01:00
Stein Magnus Jodal
532905bd74 docs: Add :discuss: shortcut for linking to forum threads 2014-12-23 22:21:10 +01:00
Stein Magnus Jodal
afcc77d3f8 Merge branch 'release/v0.19.x' into develop 2014-12-21 23:47:04 +01:00
Thomas Adamcik
94bdb88b9c http: Log errors instead of dying for HTTP startup.
(cherry picked from commit 9a2f8a3e4f)

Conflicts:
	docs/changelog.rst
2014-12-21 23:46:35 +01:00
Thomas Adamcik
9a2f8a3e4f http: Log errors instead of dying for HTTP startup. 2014-12-20 21:32:08 +01:00
Stein Magnus Jodal
70829390d1 docs: Fix typo 2014-12-16 23:39:22 +01:00
Stein Magnus Jodal
44599f1163 Merge branch 'release/v0.19.x' into develop
Conflicts:
	.mailmap
	AUTHORS
2014-12-16 23:38:39 +01:00
Stein Magnus Jodal
188c9ef26f docs: Update changelog 2014-12-16 23:34:00 +01:00
Stein Magnus Jodal
d057e5abdb Merge branch 'release/v0.19.x' into develop 2014-12-16 23:23:11 +01:00
Stein Magnus Jodal
a00bfb7fa1 Merge branch 'master' into release/v0.19.x 2014-12-16 23:22:16 +01:00
Stein Magnus Jodal
217919884e docs: Edit Raspbmc appendix a bit 2014-12-16 23:20:18 +01:00
Deni Bertovic
02489b02be Add appendinx about xbmc issues
XBMC won't boot because a different libtag version got
installed with mopidy system wide, and XBMC picks that up
insted of the one it vendors in. Added info how to fix this.
2014-12-16 23:08:50 +01:00
Stein Magnus Jodal
f1fd21f647 docs: Add upmpdcli as an alternative to Rygel
Based on PR #871 by @woutervanwijk.

Fixes #871
2014-12-16 23:01:52 +01:00
Thomas Adamcik
5015a7ff28 docs: Update authors and changelog 2014-12-14 13:37:13 +01:00
Stein Magnus Jodal
496142c201 py3: Use absolute imports by default 2014-12-07 20:17:10 +01:00
Stein Magnus Jodal
e18fd7d507 Merge branch 'release/v0.19.x' into develop 2014-11-26 23:53:31 +01:00
Stein Magnus Jodal
1220889c2f Merge branch 'master' into release/v0.19.x 2014-11-26 23:53:20 +01:00
Stein Magnus Jodal
676206dea9 docs: Add Mopidy-Webhooks extension 2014-11-26 23:14:21 +01:00
Stein Magnus Jodal
e4e4857f56 docs: Add Mopidy-WebSettings extension 2014-11-26 23:12:05 +01:00
Stein Magnus Jodal
2e16975b47 docs: Add Mopidy-TtsGpio extension 2014-11-26 23:09:55 +01:00
Stein Magnus Jodal
ed5ae037a5 docs: Add Mopidy-Simple-Webclient extension 2014-11-26 23:07:49 +01:00
Stein Magnus Jodal
833bd02f61 docs: Add Mopidy-OE1 extension 2014-11-26 22:40:57 +01:00
Stein Magnus Jodal
a21e12b274 docs: Add Mopidy-Local-SQLite extension 2014-11-26 22:37:40 +01:00
Stein Magnus Jodal
d34f1a3bee docs: Add Mopidy-EvtDev extension 2014-11-26 22:34:49 +01:00
Stein Magnus Jodal
21d9a3abe4 docs: Add Mopidy-AudioAddict extension 2014-11-26 22:34:46 +01:00
Stein Magnus Jodal
9f7e518397 docs: Move Mopify to the pip-installable list 2014-11-26 21:56:39 +01:00
Stein Magnus Jodal
ca8ecaffe6 docs: Only list web clients on the web extension page 2014-11-26 21:56:24 +01:00
Stein Magnus Jodal
cfc644448a docs: Update changelog 2014-11-05 09:30:19 +01:00
Stein Magnus Jodal
264070fab2 Merge branch 'release/v0.19.x' into develop 2014-11-04 21:28:25 +01:00
Stein Magnus Jodal
c070c1c0b5 docs: Update changelog 2014-11-04 21:27:59 +01:00
Stein Magnus Jodal
680dbffc0c models: Make all fields default to None or empty collection
(cherry picked from commit abed15b9e4)
2014-11-04 21:27:29 +01:00
Stein Magnus Jodal
b6ea9d0532 Merge branch 'release/v0.19.x' into develop
Conflicts:
	docs/changelog.rst
	tests/test_models.py
2014-11-04 20:21:10 +01:00
Stein Magnus Jodal
a4b17a9aa8 models: Fix equality for fields set to the default
Fixes #837

(cherry picked from commit bdd1fb983b)
2014-11-04 20:17:20 +01:00
Stein Magnus Jodal
88d64044de models: Hide empty lists from repr()
(cherry picked from commit 305a76486d)

Conflicts:
	docs/changelog.rst
2014-11-04 20:17:13 +01:00
Stein Magnus Jodal
c84ed733ee Merge pull request #874 from adamcik/feature/improve-find-and-scan-code
Feature/improve find and scan code
2014-10-20 14:07:46 +02:00
Thomas Adamcik
b9a7a9d2b6 local: Add follow symlinks setting 2014-10-17 20:08:33 +02:00
Stein Magnus Jodal
aede889203 docs: Fix typo
(cherry picked from commit c7a6a2abd9)
2014-10-14 21:09:58 +02:00
Stein Magnus Jodal
c7a6a2abd9 docs: Fix typo 2014-10-14 21:09:46 +02:00
Stein Magnus Jodal
a13f90d9d9 docs: Replace /etc/mopidy/extensions.d with /usr/share/mopidy/conf.d
(cherry picked from commit a1aad39c13)
2014-10-13 23:19:39 +02:00
Stein Magnus Jodal
c9b0101e76 docs: Make extensiondev example and API docs for validate_environment() match
(cherry picked from commit 31c874b3eb)
2014-10-13 23:19:30 +02:00