summaryrefslogtreecommitdiff
path: root/playlist.c
Commit message (Collapse)AuthorAge
...
| * added itunes tags support to title formattingGravatar waker2012-08-03
| |
| * return err if playlist save fails on renameGravatar waker2012-05-22
| |
| * implemented playlist saving as atomic operation; fixed few PATH_MAX definitionsGravatar waker2012-05-22
| |
| * disabled pl_lock debuggingGravatar waker2012-05-20
| |
| * fixed many calls to pl_find_meta[_raw] being called without pl_lock;Gravatar waker2012-05-17
| | | | | | | | | | added debug pl_ensure_lock function which asserts when pl_lock is not set when it is required; added new API functions for thread-safe metadata access
| * added filename handling to search_processGravatar waker2012-05-16
| |
| * fixed plt_search_process bug which was creating single-linked list instead ↵Gravatar waker2012-04-25
| | | | | | | | | | | | of double-linked; fixed plt_load bug which was leading to crash if playlist file fails to load early, e.g. if a file has size of 0
| * fixed ignoring cuesheet and log in searchGravatar waker2012-04-23
| |
* | Merge branch 'master' into develGravatar waker2012-04-09
|\| | | | | | | | | | | | | Conflicts: plugins/gtkui/callbacks.c plugins/gtkui/callbacks.h plugins/gtkui/gtkui.h
| * added random sort (based on patch from defusix)Gravatar waker2012-04-06
| |
| * updated (c) year to 2012 in the sourcesGravatar waker2012-03-24
| |
| * fixed minor cue parsing bugGravatar waker2012-03-11
| |
| * added a few missing returnsGravatar waker2012-02-02
| |
| * added hack for loading playlists from zip filesGravatar waker2012-01-08
| |
| * fixed filehandle leak in plt_load;Gravatar waker2011-12-29
| | | | | | | | fixed error when loading playlist from URI
| * fixed clearing playqueue on exitGravatar waker2011-11-27
| |
| * title formatting: added %L %X %Z for 'selected playback length', 'selected ↵Gravatar waker2011-11-26
| | | | | | | | track count', and 'current channel configuration' respectively
| * allow blank values in config variablesGravatar waker2011-11-26
| |
| * added album artist support to shuffle albums modeGravatar waker2011-11-18
| |
| * deleted legacy m3u and pls parsers; fixed bug in uri checker which was ↵Gravatar waker2011-11-14
| | | | | | | | failing when uri didn't have '.' char in it
* | Merge branch 'master' into develGravatar waker2011-11-03
|\| | | | | | | | | | | Conflicts: configure.ac scripts/quickinstall.sh
| * minor optimization to shuffle albumsGravatar waker2011-10-23
| |
| * after switching to shuffle-albums mode, while playing a track, mark all ↵Gravatar waker2011-10-23
| | | | | | | | previous album tracks as played
* | Merge branch 'master' into develGravatar waker2011-10-23
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: deadbeef.h metacache.c playlist.c plugins.c plugins/gtkui/Makefile.am plugins/gtkui/ddbcellrenderertextmultiline.c plugins/gtkui/ddbcellrenderertextmultiline.h plugins/gtkui/ddbequalizer.c plugins/gtkui/ddbequalizer.h plugins/gtkui/ddbseekbar.c plugins/gtkui/ddbseekbar.h plugins/gtkui/ddbtabstrip.c plugins/gtkui/fileman.c plugins/gtkui/gtkui.c plugins/gtkui/interface.c plugins/gtkui/plcommon.c plugins/gtkui/trkproperties.c
| * dont't remove moved tracks from playqueueGravatar waker2011-10-13
| |
| * ignore cuesheet if any cue track is out of time bounds of the audio fileGravatar waker2011-10-02
| |
| * added experimental support for metadata overrides.Gravatar waker2011-10-01
| | | | | | | | | | for example field "!NAME" will override field ":NAME", but will not be stored so after player restart, the field will be restored to original :NAME
| * merge new APIs for 0.5.2 from develGravatar waker2011-09-30
| |
| * disabled built-in pls/m3u codeGravatar waker2011-09-30
| |
| * disable loading m3u/pls playlist using "open file(s)/folder(s)", always ↵Gravatar waker2011-09-29
| | | | | | | | using Open Playlist from now
| * fixed memleak caused by tooltip handlerGravatar waker2011-09-18
| |
| * fixed crash on malformed cuesheet filesGravatar waker2011-08-31
| |
* | Merge branch 'medialib' into develGravatar waker2011-06-21
|\ \
| * | medialib scanner prototype: scan folder, build index, etcGravatar waker2011-06-17
| |/
| * OpenIndian b148 support (and perhaps other Solaris builds).Gravatar Kevin van der Vlist2011-06-12
| |
| * few fixes to make it possible to reinitialize player after complete ↵Gravatar waker2011-06-12
| | | | | | | | shutdown, without restarting process
| * unbreak shuffleGravatar waker2011-05-22
| |
* | set infinity sign instead of -:-- in :DURATION propertyGravatar waker2011-05-22
|/
* minor bugfix in pl_set_orderGravatar waker2011-05-22
|
* changed cue loader to use VFS, for reading from archivesGravatar waker2011-05-22
|
* remove bogus printf from init_shuffle_albumsGravatar waker2011-05-20
|
* set initial item duration to -1Gravatar waker2011-05-20
|
* in shuffle albums mode, skip previous album tracks if user selects track ↵Gravatar waker2011-05-20
| | | | manually
* call streamer_notify_playlist_deleted from plt_remove, instead of plt_freeGravatar waker2011-05-16
|
* fixed several pl_lock race conditions in streamer;Gravatar waker2011-05-14
| | | | | added assertion to catch this kind of race conditions, which can be turned on by defining DETECT_PL_LOCK_RC 1 in streamer.c and playlist.c
* fixed several memleaks in gtkuiGravatar waker2011-05-14
|
* added remaining plt_* replacements; minor fixupsGravatar waker2011-05-10
|
* added several new plt_* functions to work on specific playlistsGravatar waker2011-05-10
|
* lock playlist in pl_get_totaltimeGravatar waker2011-05-09
|
* changed few old-style pl_* functions which were working with current ↵Gravatar waker2011-05-08
| | | | playlist with the new ones, working with specific playlist passed as argument