Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-18 | AudioFormat: move to pcm/ | Max Kellermann | |
2020-01-18 | copyright year 2020 | Max Kellermann | |
2019-12-16 | Merge tag 'v0.21.17' | Max Kellermann | |
release v0.21.17 | |||
2019-12-16 | song/Filter: try ParseISO8601() first | Max Kellermann | |
Prepare for allowing ISO8601 time stamps without delimiters, such as 20191216, and prevent them from being interpreted as numeric UNIX time stamps. | |||
2019-12-16 | time/ISO8601: ParseISO8601() returns precision | Max Kellermann | |
2019-12-16 | time/ISO8601: forward-declare StringBuffer | Max Kellermann | |
2019-12-16 | util/Time*: move to time/ | Max Kellermann | |
2019-08-19 | time/ISO8601: ParseISO8601() returns precision | Max Kellermann | |
2019-08-09 | util/UriUtil: split | Max Kellermann | |
2019-07-05 | include cleanups (powered by iwyu) | Max Kellermann | |
2019-06-17 | Copyright year 2019 | Max Kellermann | |
2019-05-22 | DetachedSong: allow LoadFile(), Update() to throw | Max Kellermann | |
2019-05-08 | time/ISO8601: forward-declare StringBuffer | Max Kellermann | |
2019-05-08 | util/Time*: move to time/ | Max Kellermann | |
2019-03-16 | song/TagSongFilter: apply negation properly to multiple tag values | Max Kellermann | |
The old implementation didn't make a lot of sense; the "!=" operator was not actually the opposite of "==". Closes https://github.com/MusicPlayerDaemon/MPD/issues/505 | |||
2019-03-16 | song/StringFilter: remove obsolete #if | Max Kellermann | |
2019-03-16 | song/StringFilter: make MatchWithoutNegation() public | Max Kellermann | |
2019-03-15 | song/TagSongFilter: eliminate Match(TagItem) | Max Kellermann | |
2019-03-15 | song/TagSongFilter: add code comments | Max Kellermann | |
2019-03-15 | song/TagSongFilter: improve lambda indent | Max Kellermann | |
2019-03-15 | song/TagSongFilter: eliminate the std::fill_n() call | Max Kellermann | |
2019-03-15 | song/TagSongFilter: rename MatchNN() to Match() | Max Kellermann | |
The "NN" suffix used to mean "no negation", but that's not how it's implemented today. | |||
2018-12-09 | Add missing pcre_dep in src/song/meson.build | Jacob Vosmaer | |
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-11-12 | song/Filter: add operator "contains" | Max Kellermann | |
Closes #410 | |||
2018-11-11 | song/StringFilter: support regular expressions with "=~" and "!~" | Max Kellermann | |
This feature requires `libpcre`. | |||
2018-11-08 | song/Filter: move code to ParseStringFilter() | Max Kellermann | |
2018-11-07 | song/{Tag,Uri}SongFilter: pass `StringFilter&&` to constructor | Max Kellermann | |
2018-11-07 | song/StringFilter: move `negated` flag from containing class | Max Kellermann | |
2018-11-04 | song/Filter: operator "==" never searches substrings in filter expressions | Max Kellermann | |
The protocol documentation says that the difference between `find` and `search` is that `search` is case insensitive, but that's only half the truth: `search` also searches for sub strings instead of matching the whole string. This part is undocumented and unfortunate, but at this point, we can't change it. However leaking this surprising behavior to the new filter expressions was a bad idea; the "==" operator should never match substrings. For people who need that, we should add a new operator. | |||
2018-11-04 | song/StringFilter: add flag `substring` | Max Kellermann | |
Prepare to stop using substrings for filter expressions. | |||
2018-11-04 | song/StringFilter: use std::string::operator== | Max Kellermann | |
2018-11-02 | song/Filter: allow escaping quotes in filter expressions | Max Kellermann | |
Closes #397 | |||
2018-10-31 | *: copyright year 2018 | Max Kellermann | |
2018-10-23 | Merge tag 'v0.20.22' | Max Kellermann | |
release v0.20.22 | |||
2018-10-22 | Merge branch 'v0.20.x' | Max Kellermann | |
2018-10-14 | build with Meson instead of autotools | Max Kellermann | |
So long, autotools! This is my last MPD related project to migrate away from it. It has its strengths, but also very obvious weaknesses and weirdnesses. Today, many of its quirks are not needed anymore, and are cumbersome and slow. Now welcome our new Meson overlords! | |||
2018-08-20 | Compiler.h: move to util/ | Max Kellermann | |
2018-08-02 | song/AudioFormatFilter: add mask support | Max Kellermann | |
2018-08-02 | song/OptimizeFilter: optimization stage for filters | Max Kellermann | |
2018-08-02 | SongFilter: add class NotSongFilter | Max Kellermann | |
2018-08-02 | song/AudioFormatSongFilter: new filter type | Max Kellermann | |
2018-08-02 | song/Filter: convert LOCATE_TAG_* macros to enum | Max Kellermann | |
2018-08-02 | song/Filter: move each class into a separate source | Max Kellermann | |
2018-08-02 | DetachedSong, db/LightSong, SongFilter: move to src/song/ | Max Kellermann | |