Stein Magnus Jodal
1d108752f6
core: Make events emitted on playback consistent ( fixes #629 )
...
This commit does not try to make the events correct/perfect with regard to
GStreamer states, end-of-stream signalling, etc. It only tries to make the
events work consistently across all the methods on the playback controller.
* play(track) while already playing has changed from:
- playback_state_changed(old_state='playing', new_state='playing')
- track_playback_started(track=...)
to:
- playback_state_changed(old_state='playing', new_state='stopped')
- track_playback_ended(track=..., time_position=...)
- playback_state_changed(old_state='stopped', new_state='playing')
- track_playback_started(track=...)
* next() has changed from:
- track_playback_ended(track=..., time_position=...)
- playback_state_changed(old_state='playing', new_state='stopped')
- track_playback_ended(track=..., time_position=0)
- playback_state_changed(old_state='stopped', new_state='playing')
- track_playback_started(track=...)
to same as play() above.
* previous() has changed in the same way as next().
* on_end_of_track() has changed from:
- track_playback_ended(track=..., time_position=...)
- playback_state_changed(old_state='playing', new_state='playing')
- track_playback_started(track=...)
to same as play() above.
* stop() has reordered its events from:
- track_playback_ended(track=..., time_position=...)
- playback_state_changed(old_state='playing', new_state='stopped')
to:
- playback_state_changed(old_state='playing', new_state='stopped')
- track_playback_ended(track=..., time_position=...)
2014-01-14 01:18:39 +01:00
Stein Magnus Jodal
d59e136713
docs: Update author list
2014-01-13 22:40:42 +01:00
Stein Magnus Jodal
a8eaaedb71
docs: Tweak audio/mixer_volume docs, update changelog
2014-01-13 22:40:35 +01:00
Stein Magnus Jodal
25e4bc0e30
docs: Recommend using Python module name as logger name
2014-01-13 22:28:17 +01:00
Stein Magnus Jodal
e071a161d6
Merge pull request #634 from sdbakker/enhancement/mixer-volume
...
Mixer volume in config
2014-01-13 13:27:51 -08:00
Stein Magnus Jodal
3e3f59c1d0
docs: Fix reference
2014-01-13 13:16:28 +01:00
Stein Magnus Jodal
bba1f0a840
docs: Update install docs for OS X and source install
2014-01-12 23:31:47 +01:00
Stein Magnus Jodal
351eaefbaf
docs: Fix link, add examples of URI conversion before playback
2014-01-12 13:47:58 +01:00
Stein Magnus Jodal
cee7cc28ab
docs: Fix more typos
2014-01-12 13:42:09 +01:00
Thomas Adamcik
8aaf98e2d0
docs: Language fixes and added some more URI details
2014-01-12 13:35:52 +01:00
Stein Magnus Jodal
e1ec5b2217
docs: How to use backend URI schemes ( fixes #429 )
2014-01-12 13:26:42 +01:00
Stein Magnus Jodal
7c3f7dfcea
The harmless Zeroconf warning is confusing users
2014-01-12 12:19:04 +01:00
Stein Magnus Jodal
cc72ce8da9
docs: Complete lists of frontend/backend impls
2014-01-12 11:37:11 +01:00
Thomas Adamcik
b3fb77ed75
Merge pull request #638 from jodal/feature/advanced-log-levels
...
Support advanced log levels with -vv and -vvv
2014-01-11 17:18:45 -08:00
Stein Magnus Jodal
d127bc8931
docs: Update changelog
2014-01-12 01:47:02 +01:00
Stein Magnus Jodal
94c904815d
docs: Explain -v/-vv/-vvv differences
2014-01-12 01:47:01 +01:00
Stein Magnus Jodal
c7240141c2
log: Remove default config that has no effect for verbosity_level < 2
2014-01-12 01:47:01 +01:00
Stein Magnus Jodal
550f7a971b
log: Add verbosity_level 2 and 3
...
Reduces the amount of dependency logging on level 1, and increases the amount
on level 2 and 3. Fixes #593 .
2014-01-12 01:46:49 +01:00
Stein Magnus Jodal
068b63b714
docs: Add info on init scripts ( fixes : #266 )
2014-01-11 21:40:38 +01:00
Stein Magnus Jodal
74d04d4e2f
docs: Use pkill instead of line noise
2014-01-11 21:40:17 +01:00
Stein Magnus Jodal
bc31a42c49
Ignore INFO level log messages from requests
2014-01-11 21:21:55 +01:00
Stein Magnus Jodal
feb1cd51bc
docs: Add Mopidy-VKontakte
2014-01-11 21:10:25 +01:00
Stein Magnus Jodal
cc8bf67641
docs: More prose and less headers in ext docs
2014-01-11 21:05:21 +01:00
Stein Magnus Jodal
d9e602c128
docs: Make extensions and clients more prominent on the front page
2014-01-11 20:26:10 +01:00
Stein Magnus Jodal
d43a944d4d
docs: Point Raspi users to the config and run sections
...
Ref. user not configuring or trying to run Mopidy at
http://www.raspberrypi.org/phpBB3/viewtopic.php?t=66074&p=484932
2014-01-11 19:59:23 +01:00
Stein Magnus Jodal
b1e5878518
docs: Fix param rendering
2014-01-11 19:55:00 +01:00
Stein Magnus Jodal
6b8331c9d5
docs: Actually include the Library class
2014-01-11 19:51:31 +01:00
Stein Magnus Jodal
f7407b6213
docs: Add mopidy.local.Library docs
2014-01-11 19:49:40 +01:00
Thomas Adamcik
719c67341b
Merge pull request #637 from jodal/feature/move-backend-api
...
Move backend API to mopidy.backend
2014-01-11 10:40:04 -08:00
Stein Magnus Jodal
81b3f21af0
docs: Update backend import
2014-01-11 18:28:16 +01:00
Stein Magnus Jodal
05632c3b8b
backend: Update backend API imports
2014-01-11 18:20:45 +01:00
Stein Magnus Jodal
b6b542a60f
backend: Move backend API to mopidy.backend
...
Keep imports from old locations working until extensions have been updated to
use the new location.
2014-01-11 18:20:45 +01:00
Thomas Adamcik
ff4c965aff
Merge pull request #636 from jodal/feature/move-backends
...
Move backends out of mopidy.backends
2014-01-11 09:02:51 -08:00
Stein Magnus Jodal
c962bdffcf
docs: Remove reference to dummy backend
2014-01-11 16:49:34 +01:00
Stein Magnus Jodal
4a8ab668df
backend: Remove unused BaseLibraryUpdateProvider
2014-01-11 16:48:59 +01:00
Stein Magnus Jodal
d724001f5b
tests: Move mopidy.backends.dummy to tests.dummy_backend
2014-01-11 15:49:22 +01:00
Stein Magnus Jodal
2731d23578
local: Move mopidy.{backends => }.local
2014-01-11 15:17:05 +01:00
Stein Magnus Jodal
120c381285
stream: Move mopidy.{backends => }.stream
2014-01-11 15:17:02 +01:00
Stein Magnus Jodal
7ab8fd8861
docs: Reference the correct element
2014-01-11 14:41:53 +01:00
Stein Magnus Jodal
cde87d8c3e
docs: Update/rewrite changelog
2014-01-11 14:40:42 +01:00
Stein Magnus Jodal
3c7c0ae46c
docs: Use Extension.setup() in extensiondev guide
2014-01-11 14:24:32 +01:00
Stein Magnus Jodal
b628825964
docs: Minor tweaks
2014-01-11 14:24:10 +01:00
Stein Magnus Jodal
99dff7515c
docs: Add check-manifest tips
2014-01-11 14:19:37 +01:00
Stein Magnus Jodal
bc4434a8cb
ext: Doc Registry and setup(), deprecate old methods
2014-01-11 14:16:51 +01:00
Stein Magnus Jodal
95ef4c0193
ext: Remove get_library_updaters()
2014-01-11 14:05:54 +01:00
Simon de Bakker
ca35094554
Forgot to adapt tests for audio actor
2014-01-10 23:38:59 +01:00
Simon de Bakker
d8270ec153
Removed empty line (caught by flake8)
2014-01-10 23:38:27 +01:00
Stein Magnus Jodal
9321ae5f78
docs: Remove visits counter
...
We got stats from GitHub now.
2014-01-10 08:29:00 +01:00
Stein Magnus Jodal
7897fe7bac
Fix typos
2014-01-10 00:04:39 +01:00
Thomas Adamcik
6afc85ec72
ext: Switch rest of bundled extensions to registry
2014-01-09 22:35:54 +01:00