Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-01 | copyright year 2021 | Max Kellermann | |
2020-03-12 | replace assert.h with cassert | Rosen Penev | |
The former was deprecated with C++14. According to the C++11 and C++17 standards, both files are identical. Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||
2020-01-18 | copyright year 2020 | Max Kellermann | |
2019-06-17 | Copyright year 2019 | Max Kellermann | |
2019-05-29 | Main: allocate Instance on the stack | Max Kellermann | |
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 | |
2017-01-03 | update copyright year | Max Kellermann | |
2016-03-10 | IdleMonitor: new class to replace GlobalEvents::IDLE | Max Kellermann | |
Use MaskMonitor to eliminate duplicate code. | |||
2016-03-05 | Idle: move flags to IdleFlags.hxx | 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-02-26 | update copyright year to 2016 | Max Kellermann | |
2015-01-01 | Copyright year 2015 | Max Kellermann | |
2014-12-26 | fs/Traits, ...: work around -Wtautological-pointer-compare | Max Kellermann | |
New in clang 3.6. | |||
2014-02-12 | StorageCommands: emit IDLE_MOUNT on successful "mount" | Max Kellermann | |
Add the new idle event to Idle.hxx/Idle.cxx. | |||
2014-02-09 | Idle: error out when unrecognized idle event was specified | Max Kellermann | |
Implements the error checks missing in commit 0bad8406 | |||
2014-01-26 | neighbor: new subsystem to detect file servers on the local network | Max Kellermann | |
This commit adds the NeighborPlugin API which can be used to detect nearby file servers that can be used by input plugins. This list of servers is exported using the new "listneighbors" command. The idle even "neighbor" notifies interested clients when a new neighbor is found or an existing one is lost. There's a lot missing currently: protocol&user documentation, and a way to "mount" remote servers into the music database. Obviously, some code from the UPnP database plugin can be moved to a neighbor plugin. | |||
2014-01-13 | copyright year 2014 | Max Kellermann | |
2013-02-27 | Idle, GlobalEvents: use std::atomic::exchange() | Max Kellermann | |
Less overhead than fetch_and() for what we do. | |||
2013-01-16 | Idle: don't wake up event loop on duplicate event | Max Kellermann | |
2013-01-16 | Idle: use std::atomic instead of GMutex | Max Kellermann | |
2013-01-09 | EventPipe: rename to GlobalEvents | Max Kellermann | |
2013-01-09 | event_pipe.h: convert to C++ | Max Kellermann | |
2013-01-09 | idle: convert to C++ | Max Kellermann | |