1. 30 Oct, 2013 1 commit
  2. 28 Oct, 2013 1 commit
  3. 20 Oct, 2013 1 commit
  4. 19 Oct, 2013 4 commits
  5. 15 Oct, 2013 2 commits
  6. 16 Jan, 2013 1 commit
  7. 15 Jan, 2013 2 commits
  8. 07 Jan, 2013 1 commit
  9. 04 Jan, 2013 1 commit
  10. 03 Jan, 2013 2 commits
  11. 02 Aug, 2012 1 commit
  12. 13 Feb, 2012 2 commits
  13. 29 Jan, 2011 2 commits
  14. 10 Jan, 2011 1 commit
  15. 01 Jan, 2010 1 commit
  16. 30 Mar, 2009 1 commit
  17. 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
  18. 28 Feb, 2009 1 commit
  19. 31 Dec, 2008 1 commit
  20. 30 Dec, 2008 1 commit
    • Max Kellermann's avatar
      main: use the GLib main loop · 71e7ce5d
      Max Kellermann authored
      This is a rather huge patch, which unfortunately cannot be splitted.
      
      Instead of using our custom ioops.h library, convert everything to use
      the GLib main loop.
      71e7ce5d
  21. 29 Dec, 2008 1 commit
  22. 02 Dec, 2008 1 commit
  23. 22 Nov, 2008 1 commit
  24. 31 Oct, 2008 2 commits
    • Max Kellermann's avatar
      client: use bool · a9290398
      Max Kellermann authored
      Return bool instead of int.
      a9290398
    • Max Kellermann's avatar
      added prefix to header macros · ea515494
      Max Kellermann authored
      "LOG_H" is a macro which is also used by ffmpeg/log.h.  This is
      ffmpeg's fault, because short macros should be reserved for
      applications, but since it's always a good idea to choose prefixed
      macro names, even for applications, we are going to do that in MPD.
      ea515494
  25. 17 Oct, 2008 1 commit
  26. 15 Oct, 2008 1 commit
  27. 14 Oct, 2008 1 commit
    • Max Kellermann's avatar
      command: added command "idle" · a3e3d2c9
      Max Kellermann authored
      "idle" waits until something noteworthy happens on the server,
      e.g. song change, playlist modified, database updated.  This allows
      clients to keep up to date without polling.
      a3e3d2c9
  28. 08 Oct, 2008 1 commit
  29. 07 Sep, 2008 3 commits
    • Max Kellermann's avatar
      client: added client_[gs]et_permission() · 2835e376
      Max Kellermann authored
      The code in command.c shouldn't mess with a pointer to
      client->permission.  Provide an API for accessing this value.
      2835e376
    • Max Kellermann's avatar
      removed fdprintf() and client_print() · 86d261bd
      Max Kellermann authored
      All callers of fdprintf() have been converted to client_printf() or
      fprintf(); it is time to remove this clumsy hack now.  We can also
      remove client_print() which took a file descriptor as parameter.
      86d261bd
    • Max Kellermann's avatar
      client: removed client_get_fd() · 322e9088
      Max Kellermann authored
      Now that we have removed all invocations of client_get_fd(), we can
      safely remove this transitional function.  All access to the file
      descriptor is now hidden behind the interface declared in client.h.
      322e9088