Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-03-10 | Partition: handle SYNC_WITH_PLAYER before TAG_MODIFIED | Max Kellermann | |
The TAG_MODIFIED handler (i.e. playlist::TagModified()) works only if the modified song is the current song - something that is not updated until SYNC_WITH_PLAYER is finished. This fixes tag updates right after a new song is started. | |||
2017-01-03 | update copyright year | Max Kellermann | |
2016-12-03 | decoder/Control: add attribute configured_audio_format | Max Kellermann | |
Obsoletes the same variable from AudioConfig.cxx. | |||
2016-12-03 | ReplayGainGlobal: move replay_gain_mode to struct Partition | Max Kellermann | |
2016-12-03 | Partition: pass ReplayGainConfig to constructor | Max Kellermann | |
2016-12-03 | player/Control: make ReplayGainConfig const | Max Kellermann | |
2016-11-25 | {decoder,player}/Control: add ReplayGain{Config,Mode} attributes | Max Kellermann | |
Don't use the global variables in class DecoderBridge; instead, forward these values to the decoder thread via PlayerControl and DecoderControl. | |||
2016-11-24 | ReplayGainMode: convert to strictly-typed enum | Max Kellermann | |
2016-11-24 | Partition: add UpdateEffectiveReplayGainMode() | Max Kellermann | |
Move code from replay_gain_get_real_mode(). | |||
2016-10-26 | Instance: remove Error parameter from GetDatabase() | Max Kellermann | |
2016-10-26 | Instance: add GetDatabaseOrThrow() | Max Kellermann | |
2016-06-17 | util/BindMethod: new utility class for callbacks | Max Kellermann | |
Replaces the old BoundMethod template. | |||
2016-03-10 | Partition: use Instance::EmitIdle() | Max Kellermann | |
2016-03-10 | Partition: eliminate GlobalEvents.hxx, add mask constants | Max Kellermann | |
2016-03-10 | Partition: use CallbackMaskMonitor, replacing class GlobalEvents::Monitor | Max Kellermann | |
2016-03-10 | Instance: move GlobalEvents::Monitor to Partition | Max Kellermann | |
All remaining events are specific to the Partition. | |||
2016-03-10 | queue/Playlist: add interface QueueListener, replacing calls to idle_add() | Max Kellermann | |
2016-03-05 | Partition: un-inline the constructor | Max Kellermann | |
2016-03-05 | GlobalEvents: expose the internal class | Max Kellermann | |
Move the GlobalEvents::Monitor instance into class Instance. Eliminate all global variables. | |||
2016-03-05 | Partition: add method EmitIdle() | Max Kellermann | |
Prepare for moving idle events to class Partition. Right now, it's just a wrapper for idle_add(). | |||
2016-03-01 | *: include cleanup (using iwyu) | Max Kellermann | |
2016-02-26 | update copyright year to 2016 | Max Kellermann | |
2015-08-06 | Partition: add method GetDatabase() | Max Kellermann | |
2015-01-01 | Copyright year 2015 | Max Kellermann | |
2014-02-21 | PlayerListener: new interface to replace GlobalEvents access | Max Kellermann | |
2014-02-19 | Mixer: add class MixerListener | Max Kellermann | |
Use a listener interface instead of GlobalEvents. | |||
2014-02-01 | Playlist: pass Database to DatabaseModified() | Max Kellermann | |
Don't use global variable. | |||
2014-02-01 | Partition: disable DatabaseModified() if not ENABLE_DATABASE | Max Kellermann | |
2014-01-28 | OutputAll: convert to class, move instance to class Partition | Max Kellermann | |
Another big chunk of code for multi-player support. | |||
2014-01-13 | copyright year 2014 | Max Kellermann | |
2014-01-09 | DetachedSong: fork of struct Song | Max Kellermann | |
From now on, struct Song will be used by the database only, and DetachedSong will be used by everybody else. DetachedSong is easier to use, but Song has lower overhead. | |||
2013-10-22 | Playlist: refresh new tags after database update | Max Kellermann | |
Fixes regression from commit e96779d. | |||
2013-10-22 | Partition: add method DatabaseModified() | Max Kellermann | |
2013-10-22 | Playlist: copy stream tags from the PlayerThread | Max Kellermann | |
Finally restores an important feature that has been broken for several months when the PlayerThread started working with Song copies instead of pointers to the Queue's Song instances (commit e96779d). | |||
2013-10-21 | Partition: add methods TagModified(), SyncWithPlayer() | Max Kellermann | |
Move code from class Instance. |