1. 17 Feb, 2009 1 commit
  2. 16 Feb, 2009 13 commits
  3. 15 Feb, 2009 15 commits
  4. 14 Feb, 2009 1 commit
  5. 13 Feb, 2009 4 commits
  6. 12 Feb, 2009 6 commits
    • Max Kellermann's avatar
      update: free deleted subdirectories · df9245c2
      Max Kellermann authored
      Use delete_directory() for removing sub directories instead of
      dirvec_clear().  This ensures that all memory occupied by
      subdirectories of deleted directories is freed.
      df9245c2
    • Max Kellermann's avatar
      update: recursively purge deleted directories · 16bab601
      Max Kellermann authored
      When a directory is deleted, MPD deleted only the directory from the
      database; it did not bother to walk the full tree to free all memory
      and to remove deleted songs from the playlist.  Replace a
      dirvec_delete() with delete_directory().
      16bab601
    • Max Kellermann's avatar
      aac: fix stream metadata · a06e2814
      Max Kellermann authored
      Pass the input_stream object to decoder_data().  Without it, the MPD
      core does not see stream tags.
      a06e2814
    • Max Kellermann's avatar
      database: don't load database after charset was reconfigured · d55f6b53
      Max Kellermann authored
      When you change the filesystem charset, discard the old database file
      and create a new one.  The old database file will most likely contain
      stale or invalid information.
      d55f6b53
    • Max Kellermann's avatar
      wildmidi: added seeking support · a2ce6e5b
      Max Kellermann authored
      Use WildMidi_SampledSeek() for seeking in a MIDI file.
      a2ce6e5b
    • Max Kellermann's avatar
      configure.ac: always check for C++ compiler · f6c8dd49
      Max Kellermann authored
      Currently, only the sidplay decoder plugin requires C++, and in all
      other cases, MPD could build well without a C++ compiler.
      Unfortunately, autoconf/automake are confused when we have a
      conditional AC_PROG_CXX check.  We could add lots of workarounds for
      individual problems, but let's just always require a C++ compiler, and
      forget about this autotools limitation.
      f6c8dd49