Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-02-02 | PlaylistFile.cxx: use file system API | Denis Krjuchkov | 1 | -6/+5 | |
2013-01-29 | require GLib 2.24 | Max Kellermann | 1 | -2/+0 | |
2013-01-29 | ConfigFile, CommandLine: use the Path class | Max Kellermann | 1 | -2/+3 | |
2013-01-28 | Path: convert fs_charset_to_utf8() to static method Path::ToUTF8() | Denis Krjuchkov | 1 | -4/+3 | |
2013-01-26 | Mapper: improve usage of Path class | Denis Krjuchkov | 1 | -3/+3 | |
2013-01-22 | Path: move to fs subdirectory | Denis Krjuchkov | 1 | -1/+1 | |
2013-01-18 | Path: new class "Path" wraps filesystem path strings | Max Kellermann | 1 | -42/+27 | |
2013-01-17 | path: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-09 | idle: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-07 | decoder_api.h, ...: add "extern C" | Max Kellermann | 1 | -1/+1 | |
2013-01-04 | PlaylistFile: reuse classes PlaylistInfo and PlaylistVector | Max Kellermann | 1 | -4/+6 | |
.. instead of rolling own classes. | |||||
2013-01-03 | PlaylistFile: fix memory leak | Max Kellermann | 1 | -0/+1 | |
2013-01-03 | TextFile: convert to a class | Max Kellermann | 1 | -6/+3 | |
2013-01-03 | text_file: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2013-01-03 | database.h: eliminate db_*_song() | Max Kellermann | 1 | -8/+9 | |
Use the C++ API. | |||||
2013-01-02 | mapper: convert to C++ | Max Kellermann | 1 | -1/+1 | |
2012-10-04 | PlaylistFile, client_file, tag_id3: don't use g_file_error_quark() | Max Kellermann | 1 | -4/+3 | |
g_file_error_quark() is meant to be used with the GFileError enum which does not correspond with errno, but must be converted with g_file_error_from_errno(). At the same time, this removes g_strerror() use for g_file_error_quark(). | |||||
2012-09-28 | main: use C++ compiler | Max Kellermann | 1 | -1/+1 | |
2012-09-28 | PlaylistFile: use std::list instead of GPtrArray | Max Kellermann | 1 | -100/+53 | |
2012-09-28 | stored_playlist, playlist_save: use C++ compiler | Max Kellermann | 1 | -8/+12 | |
2012-09-28 | stored_playlist: make variables more local | Max Kellermann | 1 | -46/+25 | |
2012-08-16 | DatabasePlugin: add method ReturnSong() | Max Kellermann | 1 | -1/+3 | |
Allow the plugin to allocate the GetSong() return value. | |||||
2011-09-11 | stored_playlist: return GError, code is playlist_result | Max Kellermann | 1 | -114/+190 | |
Improve error reporting and handling. command.c gets the new function print_error(), which sends a GError to the client. | |||||
2011-09-11 | playlist: move PLAYLIST_COMMENT to stored_playlist.c | Max Kellermann | 1 | -0/+2 | |
Only used there. | |||||
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2010-12-23 | stored_playlist: remove database lookups from spl_load() | Max Kellermann | 1 | -7/+1 | |
Don't look up songs in the database, no caller needs this. | |||||
2010-12-23 | stored_playlist: ignore empty lines | Max Kellermann | 1 | -1/+1 | |
2010-12-23 | stored_playlist: use the text_file library to read lines | Max Kellermann | 1 | -6/+4 | |
2010-07-25 | database, ...: remove EINTR checks after stdio calls | Max Kellermann | 1 | -10/+10 | |
MPD doesn't have child processes anymore, and thus we're not expecting to receive SIGCHLD very often. Since hard disk access isn't interrupted by signals anyway, we don't need those excessive checks. | |||||
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-12-08 | mapper: apply filesystem_charset to playlists | Max Kellermann | 1 | -6/+21 | |
This fixes an inconsistency in the stored playlist subsystem: when obtaining the list of playlists (listplaylist, listplaylistinfo), the file names in the playlist directory are converted to UTF-8 (according to filesystem_charset), but when saving or loading playlists, the filesystem_charset setting was ignored. | |||||
2009-12-08 | command: verify playlist name in the "rm" command | Max Kellermann | 1 | -0/+3 | |
Call spl_valid_name() in spl_delete(). | |||||
2009-11-12 | include config.h in all sources | Max Kellermann | 1 | -0/+1 | |
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. | |||||
2009-04-24 | stored_playlist: don't close NULL file on error | Max Kellermann | 1 | -5/+1 | |
spl_append_song() can crash when fopen() fails, because it attempts to close the invalid file handle (NULL) in the error handler. | |||||
2009-03-13 | all: Update copyright header. | Avuton Olrich | 1 | -6/+7 | |
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. | |||||
2009-02-25 | ls: moved generic URI utilities to uri.c | Max Kellermann | 1 | -1/+1 | |
"ls" is a bad name for a library which parses URIs. We'll move the rest of the "ls" library later. | |||||
2009-01-25 | playlist: moved is_valid_playlist_name() to stored_playlist.c | Max Kellermann | 1 | -5/+23 | |
2009-01-25 | stored_playlist: moved configuration variables from playlist.c | Max Kellermann | 1 | -0/+15 | |
Don't declare and export variables specific to stored playlists in playlist.c/playlist.h. | |||||
2009-01-25 | mapper: added dot to PLAYLIST_FILE_SUFFIX | Max Kellermann | 1 | -7/+4 | |
Some code will be a little bit simpler if the dot is part of the string literal. | |||||
2009-01-18 | mapper: make the playlist directory optional | Max Kellermann | 1 | -1/+18 | |
2009-01-08 | path: allocate buffer in fs_charset conversion functions | Max Kellermann | 1 | -3/+3 | |
Don't use fixed static buffers. GLib allocates a new string for us anyway, let's just return this one instead of copying it. | |||||
2009-01-04 | path: removed pfx_dir() | Max Kellermann | 1 | -6/+4 | |
Use GLib's g_build_filename() instead of pfx_dir(). | |||||
2009-01-04 | song: allocate the result of song_get_url() | Max Kellermann | 1 | -4/+4 | |
2009-01-04 | mapper: allocate the result of map_fs_to_utf8() | Max Kellermann | 1 | -2/+3 | |
2009-01-04 | playlist: use uri_has_scheme() instead of isRemoteUrl() | Max Kellermann | 1 | -12/+11 | |
For internal checks (i.e. not in command.c), we need to check whether an URI is in the databse, in the local file system or a remote URI with a scheme. | |||||
2009-01-02 | playlist: use GLib instead of utils.h | Max Kellermann | 1 | -2/+2 | |
2009-01-01 | playlist: use g_file_test() instead of stat() | Max Kellermann | 1 | -4/+2 | |
To find out whether a file exists, use g_file_test() instead of stat(), because it is more portable and easier to use. | |||||
2009-01-01 | mapper: allocate playlist path from heap | Max Kellermann | 1 | -28/+41 | |
Don't pass a static buffer to map_spl_utf8_to_fs(). | |||||
2008-12-29 | removed os_compat.h | Max Kellermann | 1 | -1/+7 | |
Only include headers which are really needed. os_compat.h aimed to make MPD easily portable, but was never actually made portable. | |||||
2008-12-28 | utils: removed myFgets() | Max Kellermann | 1 | -1/+3 | |
Replaced myFgets() with fgets() + g_strchomp(). |