Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-19 | check.h: remove obsolete header | Max Kellermann | |
Since we switched from autotools to Meson in commit 94592c14062d5afc9482d11baa401648082022c0, we don't need to include `config.h` early to properly enable large file support. Meson passes the required macros on the compiler command line instead of defining them in `config.h`. This means we can include `config.h` at any time, whenever we want to check its macros, and there are no ordering constraints. | |||
2018-10-31 | *: copyright year 2018 | Max Kellermann | |
2018-08-20 | Compiler.h: move to util/ | Max Kellermann | |
2018-07-17 | StateFile: add struct StateFileConfig | Max Kellermann | |
2017-12-18 | Merge tag 'v0.20.13' | Max Kellermann | |
release v0.20.13 | |||
2017-12-18 | Save and restore mountpoints within the state file. | FlashSystems | |
Signed-off-by: FlashSystems <developer@flashsystems.de> | |||
2017-08-29 | StateFile: migrate from TimeoutMonitor to TimerEvent | Max Kellermann | |
2017-05-08 | *: add "noexcept" to many, many function prototypes | Max Kellermann | |
This eliminates some overhead, because the compiler doesn't need to consider these functions throwing. | |||
2017-01-03 | update copyright year | Max Kellermann | |
2016-12-28 | event/Loop: use std::chrono | Max Kellermann | |
2016-12-27 | StateFile: use C++11 initializers | Max Kellermann | |
2016-03-10 | Instance: remove redundant "virtual" keywords | Max Kellermann | |
2016-02-26 | update copyright year to 2016 | Max Kellermann | |
2015-12-16 | fs/io/OutputStream: use C++ exceptions in Write() | Max Kellermann | |
2015-01-01 | Copyright year 2015 | Max Kellermann | |
2014-08-24 | StateFile: configurable interval | Max Kellermann | |
2014-08-24 | StateFile: make "path" const | Max Kellermann | |
2014-07-30 | *Save, *State: use the OutputStream API instead of FILE* | Max Kellermann | |
2014-01-13 | copyright year 2014 | Max Kellermann | |
2013-10-17 | fs/Path: rename to AllocatedPath | Max Kellermann | |
The new class Path only holds a string pointer without being responsible for allocation/deallocation. The FileSystem.hxx library accepts Path arguments instead of AllocatedPath, to avoid forcing callers to allocate another string object. | |||
2013-10-15 | gcc.h: rename to Compiler.h | Max Kellermann | |
2013-08-07 | ConfigPath: return a Path object | Max Kellermann | |
Migrate all callers to use Path directly, instead of doing the conversion in each caller. | |||
2013-04-08 | event/TimeoutMonitor: eliminate support for periodic events | Max Kellermann | |
No caller needs this. Fixes use-after-free after returning from Client::OnTimeout(). | |||
2013-04-08 | StateFile: schedule timer only after a change | Max Kellermann | |
Save the state file 2 minutes after the last change. This reduces the disruptions by an idle MPD, and MPD can be paged out permanently until it is used. | |||
2013-04-08 | StateFile: move code to RememberVersions(), IsModified() | Max Kellermann | |
2013-04-08 | StateFile: make AutoWrite() private | Max Kellermann | |
2013-02-02 | StateFile: use file system API, log in UTF-8 | Denis Krjuchkov | |
2013-01-22 | Path: move to fs subdirectory | Denis Krjuchkov | |
2013-01-18 | Path: new class "Path" wraps filesystem path strings | Max Kellermann | |
2013-01-14 | event/TimeoutMonitor: wrapper for g_timeout_source_new() | Max Kellermann | |
2013-01-14 | StateFile: convert to a class | Max Kellermann | |
2013-01-05 | Partition: new class, container for Playlist and PlayerControl | Max Kellermann | |
This is the beginning of multi-player support. There will be support for multiple Partition objects in one MPD process. | |||
2013-01-02 | db_save, state_file: convert to C++ | Max Kellermann | |