1. 01 Jan, 2021 1 commit
  2. 23 Sep, 2020 1 commit
  3. 07 Sep, 2020 1 commit
  4. 06 Jul, 2020 1 commit
  5. 22 Apr, 2020 1 commit
  6. 08 Apr, 2020 2 commits
  7. 03 Apr, 2020 2 commits
  8. 16 Mar, 2020 1 commit
  9. 12 Mar, 2020 2 commits
  10. 20 Feb, 2020 1 commit
  11. 17 Feb, 2020 1 commit
  12. 02 Feb, 2020 1 commit
  13. 01 Feb, 2020 3 commits
  14. 18 Jan, 2020 1 commit
  15. 05 Jul, 2019 1 commit
  16. 17 Jun, 2019 1 commit
  17. 16 Jun, 2019 1 commit
  18. 20 Feb, 2019 1 commit
  19. 19 Nov, 2018 2 commits
    • Max Kellermann's avatar
      db/upnp: use the generic ::CollectUniqueTags() function · 4b707829
      Max Kellermann authored
      This function implements the "group" feature on top of the
      Database::Visit() method.
      4b707829
    • 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
  20. 31 Oct, 2018 1 commit
  21. 22 Oct, 2018 1 commit
    • Max Kellermann's avatar
      db: fix broken command "list ... group" · db27bb76
      Max Kellermann authored
      Grouping in the "list" command was completely broken from the start,
      unlike "count group".  I have no idea what I have been thinking when I
      wrote commit ae178c77, but it didn't
      make any sense.
      
      This commit is a rewrite of the feature.
      
      For clients to be able to detect this feature, this commit also
      increments the protocol version.
      db27bb76
  22. 02 Sep, 2018 2 commits
  23. 20 Aug, 2018 1 commit
  24. 02 Aug, 2018 2 commits
  25. 25 Jul, 2018 1 commit
  26. 06 Jul, 2018 4 commits
  27. 24 Jan, 2018 1 commit
  28. 19 Jan, 2018 1 commit
    • Stefan Roellin's avatar
      db/upnp/Directory: fix parsing of durations with fractions of seconds · 187cc573
      Stefan Roellin authored
      The duration of a song can have fractions of seconds
      (quote from http://www.upnp.org/schemas/av/didl-lite-v2.xsd):
      
          The format of the duration string is:
          H+:MM:SS[.F+], or H+:MM:SS[.F0/F1]
          Where:
          +H              one or more digits to indicate elapsed hours,
          MM              exactly 2 digits to indicate minutes (00 to 59),
          SS              exactly 2 digits to indicate seconds (00 to 59),
          F+              any number of digits (including no digits) to indicate fractions of seconds,
          F0/F1   a fraction, with F0 and F1 at least one digit long,
                          and F0 < F1.
          The string may be preceded by an optional + or - sign, and the
          decimal point itself may be omitted if there are no fractional  seconds digits.
      
      Until now, a duration with fractions of seconds could not be parsed and
      resulted in an unknown duration. Only durations in the format "H+:MM:SS"
      were feasible. This commit enables to read durations in the first format,
      i.e. "H+:MM:SS[.F+]"
      187cc573
  29. 02 Jan, 2018 1 commit