Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |