aboutsummaryrefslogtreecommitdiffstats
path: root/src/sticker.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-01-29copyright year 2011Max Kellermann1-1/+1
2009-12-31Update copyright notices.Avuton Olrich1-1/+1
2009-07-05sticker: use GError for error handlingMax Kellermann1-2/+6
2009-04-28sticker: added sticker_delete_value()Max Kellermann1-0/+7
sticker_delete_value() deletes only one value in a sticker, while the old function sticker_delete() deletes all values.
2009-04-01sticker: added sticker_find()Max Kellermann1-0/+16
sticker_find() finds stickers with the specified name.
2009-04-01sticker: pass const sticker to sticker_foreach()Max Kellermann1-2/+2
2009-03-14sticker: don't export sticker_list_values()Max Kellermann1-8/+0
sticker_list_values() is only used internally in sticker.c. Remove sticker_song_list_values() completely, it is superseded by sticker_song_get().
2009-03-14sticker: added "struct sticker"Max Kellermann1-0/+43
The sticker struct can be used for enumerating values. This will replace the sticker_list_values() function.
2009-03-13all: Update copyright header.Avuton Olrich1-3/+4
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-03-11Move from the opaque GPtrArray to GHashTable for sticker lists.Eric Wollesen1-5/+4
2009-03-03Add sticker list command.Eric Wollesen1-0/+11
[mk: merged memory leak patch; fixed indentation (tabs); fixed documentation typo]
2009-01-19sticker: new library for storing dynamic information about songsMax Kellermann1-0/+86
"Stickers" are pieces of information attached to existing MPD objects (e.g. song files, directories, albums). Clients can create arbitrary name/value pairs. MPD itself does not assume any special meaning in them.