Commit Graph

1509 Commits

Author SHA1 Message Date
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
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
aede889203 docs: Fix typo
(cherry picked from commit c7a6a2abd9)
2014-10-14 21:09:58 +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
Stein Magnus Jodal
fe63e425d5 docs: Update Debian docs with 'mopidyctl'
(cherry picked from commit 933cbe1dce)
2014-10-13 23:19:21 +02:00
Nick Steel
0039133457 docs: typo in Mopidy-HTTP
(cherry picked from commit 839108e7c5)
2014-10-13 23:18:19 +02:00
Stein Magnus Jodal
b0e00eeb0f docs: Update Mopidy-HTTP docs wrt the HTTP server-side API
(cherry picked from commit 713bca384a)
2014-10-13 23:18:09 +02:00
Stein Magnus Jodal
d408685dd4 docs: Remove duplicate extensions
(cherry picked from commit 456faee948)
2014-10-13 23:17:52 +02:00
Stein Magnus Jodal
8cbecd6613 docs: Put screenshot between description and install instructions
(cherry picked from commit 52baf63992)
2014-10-13 23:17:41 +02:00
Stein Magnus Jodal
c510ac94e0 docs: Kuechenradio doesn't have a screenshot yet
(cherry picked from commit 580e5b079f)
2014-10-13 23:17:34 +02:00
Stein Magnus Jodal
160a85513b docs: Add Mopidy-HTTP-Kuechenradio
(cherry picked from commit 0e2866df30)
2014-10-13 23:17:25 +02:00
Stein Magnus Jodal
bea04a7588 docs: Add install instructions for the web extensions
(cherry picked from commit da18a599ac)
2014-10-13 23:17:18 +02:00
Stein Magnus Jodal
3048d6bfba docs: More concistent format for web extensions
(cherry picked from commit 249dcf92c4)
2014-10-13 23:17:09 +02:00
Stein Magnus Jodal
523b4decc3 docs: Add Mopidy-Musicbox-Webclient to the web extensions list
(cherry picked from commit eedaf0eb3b)
2014-10-13 23:16:58 +02:00
Dmitry Sandalov
e79ecd3789 fixes docs typo: AngularJS
(cherry picked from commit 225092add5)
2014-10-13 23:16:22 +02:00
Stein Magnus Jodal
80f912535b docs: Fix typo
(cherry picked from commit 12f9860e2d)
2014-09-08 11:04:39 +02:00
Stein Magnus Jodal
b269694f80 docs: Rewrite 'getting help' section
(cherry picked from commit 13c92dae65)
2014-09-07 10:59:05 +02:00
Stein Magnus Jodal
333da5befd docs: Fix syntax error
(cherry picked from commit cf5660e8e5)
2014-09-07 10:58:44 +02:00
Stein Magnus Jodal
f93a1c2f0b Release v0.19.4 2014-09-01 23:15:12 +02:00
Stein Magnus Jodal
ca44ff3947 docs: Update changelog 2014-09-01 23:07:44 +02:00
Stein Magnus Jodal
83e779eaaf http: Guard against double close of WebSocket 2014-08-30 00:25:43 +02:00
Stein Magnus Jodal
f1096d332c local: Move constant to Library class
Related to #833
2014-08-29 21:28:42 +02:00
Stein Magnus Jodal
69c3e107a2 local: Add ROOT_DIRECTORY_URI constant
Related to #833
2014-08-29 14:02:08 +02:00
Stein Magnus Jodal
0e60730704 backends: Update browse() signature and docs to match core implementation
Fixes #833
2014-08-29 13:50:12 +02:00
Stein Magnus Jodal
2830784703 Merge pull request #827 from trygveaa/fix/network-thread-issue
network: disable_recv before telling actor to close connection
2014-08-29 13:36:48 +02:00
Stein Magnus Jodal
950cbb00cc docs: Add sponsors page
(cherry picked from commit b40409141f)
2014-08-22 00:09:50 +02:00
schinken
f0f5e65a9a #818 Remove mopidy lux from documentation
(cherry picked from commit 06d7d650f8)
(cherry picked from commit c230a0f64c)
2014-08-19 08:21:21 +02:00
schinken
c230a0f64c #818 Remove mopidy lux from documentation
(cherry picked from commit 06d7d650f8)
2014-08-14 09:00:53 +02:00
Trygve Aaberge
265951bf00 network: disable_recv before telling actor to close connection
As of d62ad96, when the connection can't receive more data from the
client, it tells the actor to stop the connection and calls
disable_recv(). The actor operates in it's own thread and when it stops
the connection, disable_recv is being called again from a different
thread. Since the actor is told to stop the connection before
disable_recv is called, the two calls to disable_recv may happen
simultaneously.

This causes a race condition issue where both threads can reach past the
check that recv_id is not None before either of them set it to None. If
one of them set it to None before the other one tries to use it, an
error is raised.

This commit calls disable_recv before telling the actor to stop the
connection. Since disable_recv is a blocking call, this ensures that
recv_id is being set to None before the actor thread begins to stop the
connection.

Fixes #781
2014-08-14 01:58:48 +02:00
Stein Magnus Jodal
d2eb7fdd10 Merge branch 'trygveaa/feature/mopidy-config-dirs' into release/v0.19.x
Conflicts:
	docs/changelog.rst
2014-08-12 23:39:36 +02:00
Trygve Aaberge
7b99c2fbae docs: Fix grammar 2014-08-12 16:45:26 +02:00
Trygve Aaberge
d776ada30a docs: Add directories to --config in man page 2014-08-11 16:27:19 +02:00
Trygve Aaberge
4ea5271362 docs: Return exit status 1 on initialization error 2014-08-11 16:13:40 +02:00
Trygve Aaberge
9e41eff187 config: Support passing directories to mopidy --config 2014-08-11 14:48:04 +02:00
Trygve Aaberge
44c7951520 docs: Use :confval:-syntax, add fixes for logging issue
(cherry picked from commit 524043f6b7)

Conflicts:
	docs/changelog.rst
2014-08-11 13:00:36 +02:00
Trygve Aaberge
bac3bfb7a2 log: Don't disable loggers when loading fileConfig
The default when loading config for logging from a file is to disable
existing loggers. Since some loggers are created before logging is set
up, these loggers were disabled if logging/config_file is set.

(cherry picked from commit cb0387c46d)

Conflicts:
	docs/changelog.rst
2014-08-11 13:00:01 +02:00
Stein Magnus Jodal
9b7bcd37b3 docs: Add note Debian package distro support (fixes #820) 2014-08-06 00:02:49 +02:00
Trygve Aaberge
19f96f7944 docs: Fix formatting
(cherry picked from commit 26cfd24e11)
2014-08-05 23:53:29 +02:00
Trygve Aaberge
73982f0455 docs: Add the mpd list command fix to the changelog
(cherry picked from commit 92fa75325d)

Conflicts:
	docs/changelog.rst
2014-08-05 23:53:14 +02:00
Stein Magnus Jodal
87e22eb940 docs: Update changelog 2014-08-03 23:34:25 +02:00
Stein Magnus Jodal
6c08c33724 docs: Add more links into the docs
(cherry picked from commit 5dd2be5ec9)
2014-08-03 23:32:19 +02:00
Stein Magnus Jodal
7fc89972a2 docs: Use text from web site and readme
(cherry picked from commit 1e0569abb6)
2014-08-03 23:32:11 +02:00
Stein Magnus Jodal
837fb00fb7 Fail early if extension doesn't implement setup()
Fixes #813
2014-08-03 23:13:14 +02:00
Stein Magnus Jodal
2d4b447d0a docs: Update changelog 2014-08-03 15:19:33 +02:00
Stein Magnus Jodal
3a442483eb docs: Add Mopidy-Touchscreen
(cherry picked from commit 27d4c89ae9)
2014-07-30 00:31:59 +02:00
Stein Magnus Jodal
6c684e1cbe docs: Add Mopidy-LeftAsRain
(cherry picked from commit 2a28128c37)
2014-07-30 00:31:48 +02:00
Stein Magnus Jodal
195b78a50b docs: Add Mopidy-Bassdrive
(cherry picked from commit c51988546d)
2014-07-30 00:31:40 +02:00
Stein Magnus Jodal
24db560fd0 docs: Add Mopidy-Banshee
(cherry picked from commit a470e0c914)
2014-07-30 00:31:34 +02:00