1. 08 Feb, 2010 1 commit
  2. 02 Jan, 2010 1 commit
    • Max Kellermann's avatar
      dbUtils: return empty tag value only if no value was found · 959f94b0
      Max Kellermann authored
      This fixes a regression in the patch "return multiple tag values per
      song": even when the song has values for the specified tag type, the
      empty string gets added to the set, because the "return" was removed.
      This patch adds a flag which remembers whether at least one value was
      found.
      959f94b0
  3. 01 Jan, 2010 1 commit
  4. 27 Dec, 2009 1 commit
    • Max Kellermann's avatar
      dbUtils: return multiple tag values per song · d66c055f
      Max Kellermann authored
      When collecting tag values for the result set, add all of a song's tag
      values of the searched type.  This affects the "list" command.
      Previously, "list" only considered the first tag value of a song.
      d66c055f
  5. 26 Dec, 2009 1 commit
  6. 12 Nov, 2009 1 commit
    • Max Kellermann's avatar
      include config.h in all sources · 5b82ffc2
      Max Kellermann authored
      After we've been hit by Large File Support problems several times in
      the past week (which only occur on 32 bit platforms, which I don't
      have), this is yet another attempt to fix the issue.
      5b82ffc2
  7. 13 Oct, 2009 1 commit
  8. 25 Aug, 2009 1 commit
  9. 14 Jul, 2009 1 commit
  10. 15 Mar, 2009 1 commit
  11. 13 Mar, 2009 1 commit
    • Avuton Olrich's avatar
      all: Update copyright header. · 0aee49bd
      Avuton Olrich authored
      This updates the copyright header to all be the same, which is
      pretty much an update of where to mail request for a copy of the GPL
      and the years of the MPD project. This also puts all committers under
      'The Music Player Project' umbrella. These entries should go
      individually in the AUTHORS file, for consistancy.
      0aee49bd
  12. 27 Feb, 2009 1 commit
  13. 04 Feb, 2009 1 commit
  14. 25 Jan, 2009 1 commit
    • Max Kellermann's avatar
      use g_free() instead of free() · a45922cd
      Max Kellermann authored
      On some platforms, g_free() must be used for memory allocated by
      GLib.  This patch intends to correct a lot of occurrences, but is
      probably not complete.
      a45922cd
  15. 24 Jan, 2009 5 commits
  16. 22 Jan, 2009 1 commit
  17. 18 Jan, 2009 1 commit
  18. 04 Jan, 2009 1 commit
  19. 03 Jan, 2009 1 commit
  20. 24 Nov, 2008 1 commit
  21. 22 Oct, 2008 2 commits
  22. 15 Oct, 2008 1 commit
  23. 08 Oct, 2008 6 commits
  24. 07 Oct, 2008 2 commits
  25. 29 Sep, 2008 2 commits
    • Eric Wong's avatar
      Switch to C99 types (retaining compat with old compilers) · 0352766d
      Eric Wong authored
      Seeing the "mpd_" prefix _everywhere_ is mind-numbing as the
      mind needs to retrain itself to skip over the first 4 tokens of
      a type to get to its meaning.  So avoid having extra characters
      on my terminal to make it easier to follow code at 2:30 am in
      the morning.
      
      Please report any new issues you may come across on Free
      toolchains.  I realize how difficult it can be to build/maintain
      cross-compiling toolchains and I have no intention of forcing
      people to upgrade their toolchains to build mpd.
      
      Tested with gcc 2.95.4 and and gcc 4.3.1 on x86-32.
      0352766d
    • Eric Wong's avatar
      allow searching for albums with an empty tag · a4019f7d
      Eric Wong authored
      tfing wrote:
      > I have quite some files with an empty album tag as they do not come
      > from a particular album.
      >
      > If I want to look for those files and browse them, this happens:
      > :: nc localhost 6600
      > OK MPD 0.12.0
      > find album ""
      > ACK [2@0] {find} too few arguments for "find"
      >
      > I'd like to be able to browse those files in a client like gmpc.
      > So these 2 items would have to be developed:
      > - list album should report that some files have an empty tag
      > - it should be possible to search for an empty tag with the find command
      
      Patch-by: Marc Pavot
      ref: http://musicpd.org/mantis/view.php?id=464
      a4019f7d
  26. 23 Sep, 2008 1 commit
    • Eric Wong's avatar
      Replace SongList with struct songvec · 0bec1d38
      Eric Wong authored
      Our linked-list implementation is wasteful and the
      SongList isn't modified enough to benefit from being a linked
      list.  So use a more compact array of song pointers which
      saves ~200K on a library with ~9K songs (on x86-32).
      0bec1d38
  27. 08 Sep, 2008 1 commit
    • Max Kellermann's avatar
      use strset.h instead of tagTracker.h · f0e64ceb
      Max Kellermann authored
      With a large music database, the linear string collection in
      tagTracker.c becomes very slow.  We implemented that in a
      quick'n'dirty fashion when we removed tree.c, and now we rewrite it
      using the fast hashed string set.
      f0e64ceb
  28. 07 Sep, 2008 1 commit