1. 05 Aug, 2021 1 commit
  2. 18 May, 2021 1 commit
  3. 15 Feb, 2021 1 commit
  4. 01 Jan, 2021 1 commit
  5. 08 Apr, 2020 1 commit
  6. 03 Apr, 2020 1 commit
  7. 02 Apr, 2020 1 commit
  8. 13 Mar, 2020 1 commit
  9. 12 Mar, 2020 1 commit
  10. 17 Feb, 2020 1 commit
  11. 18 Jan, 2020 2 commits
  12. 16 Dec, 2019 4 commits
  13. 19 Aug, 2019 1 commit
  14. 09 Aug, 2019 1 commit
  15. 05 Jul, 2019 1 commit
  16. 17 Jun, 2019 1 commit
  17. 22 May, 2019 1 commit
  18. 08 May, 2019 2 commits
  19. 16 Mar, 2019 3 commits
  20. 15 Mar, 2019 5 commits
  21. 14 Mar, 2019 1 commit
  22. 09 Dec, 2018 1 commit
  23. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, 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.
      ce49d99c
  24. 12 Nov, 2018 1 commit
  25. 11 Nov, 2018 1 commit
  26. 07 Nov, 2018 3 commits
  27. 04 Nov, 2018 1 commit
    • Max Kellermann's avatar
      song/Filter: operator "==" never searches substrings in filter expressions · ac0852b4
      Max Kellermann authored
      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.
      ac0852b4