summaryrefslogtreecommitdiff
path: root/deadbeef.h
Commit message (Collapse)AuthorAge
...
| * 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 new DB_EV_DSPCHANGED eventGravatar waker2012-04-26
| |
| * shellexec[ui]: cleaned up api, fixed memleaks, add/remove/edit works without ↵Gravatar waker2012-04-24
| | | | | | | | restarting player, Disabled flag is not user-editable and is not saved to config
* | added freq vis supportGravatar waker2012-04-13
| |
* | vis buffer is now always float/monoGravatar waker2012-04-12
| |
* | added experimental visualization (scope)Gravatar waker2012-04-11
| |
* | gtkui: fixed jump to current trackGravatar waker2012-04-09
| |
* | 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
| |
| * extended plugin api to trigger dsp chain saving from pluginsGravatar waker2012-04-02
| |
| * updated (c) year to 2012 in the sourcesGravatar waker2012-03-24
| |
| * cleaned up and added more documentation for DB_ACTION_** stuffGravatar waker2012-01-23
| |
| * added possibility to put additional menu items to playlist context menu ↵Gravatar waker2012-01-22
| | | | | | | | (using plugin actions)
* | 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
| * 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
| |
| * fixed writing non-ascii id3v1 tagsGravatar waker2011-08-31
| |
* | added selection properties widgetGravatar waker2011-06-22
| |
* | medialib scanner prototype: scan folder, build index, etcGravatar waker2011-06-17
|/
* renamed dsp pass_through to can_bypassGravatar waker2011-05-22
|
* added new DSP API pass_through, which allows to skip DSP stage if it doesn't ↵Gravatar waker2011-05-21
| | | | | | do anything; bumped API version to 1.1
* pass started_timestamp of previous track in songchanged event; unbreak scrobblerGravatar waker2011-05-20
|
* 0.5.0-rc1 final fixupsGravatar waker2011-05-10
|
* added remaining plt_* replacements; minor fixupsGravatar waker2011-05-10
|
* added several new plt_* functions to work on specific playlistsGravatar waker2011-05-10
|
* 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
* converter pl_sort into plt_sortGravatar waker2011-05-08
|
* moved playtime and started_timestamp from playitem to streamer global variables;Gravatar waker2011-05-04
| | | | | | playtime and started_timestamp are now passed in track event structures; fixed few lastfm submission and event-handling bugs; cleaned out old event sending helper functions
* changed some API entry points to make it possible working with specific ↵Gravatar waker2011-04-29
| | | | playlists, and not just the current one
* fixed mp3 filetype for streamed radio;Gravatar waker2011-04-27
| | | | removed filetypes ptr in DB_decoder_t
* new future-proof playlist API, potentially reducing locking, and allowing ↵Gravatar waker2011-04-25
| | | | more flexibility
* improved plugin API versioning;Gravatar waker2011-04-25
| | | | block adding files from cmdline while adding from gui
* added short description about PL_MAIN and PL_SEARCHGravatar waker2011-04-23
|
* get rid of some legacy events;Gravatar waker2011-04-16
| | | | update playlist grouping on metadata changes
* more unification work on event systemGravatar waker2011-04-14
|
* new event passing systemGravatar waker2011-04-14
|
* got rid of plt_lock and global_lock in favor of just using pl_lock for all ↵Gravatar waker2011-04-13
| | | | | | | playlist access; added playlist modification time functions for tracking playlist changes; fixed gtkui playlist group rebuilding
* added SEEKED event, so that plugins can update their statusGravatar waker2011-04-09
|
* thread-safe config accessGravatar waker2011-03-31
|
* get rid of frameupdate event; mutex+cond based message pump without usleepGravatar waker2011-03-30
|
* fixed error in playlist plugin APIGravatar waker2011-03-29
|
* initial support for playlist metadataGravatar waker2011-03-26
| | | | | allows to add any set of properties to every playlist api is based on playItem metadata api
* added comment about pl_find_meta thread-safety issuesGravatar waker2011-03-26
|
* got rid of filetype field in playitem structureGravatar waker2011-03-24
|
* renamed gtkui plugin into ddb_gui_GTK2;Gravatar waker2011-03-23
| | | | | | changed the way gui plugins must be named; added selection of gui plugin to preferences window; only 1 gui plugin is loaded at a time
* added streamer_dsp_refresh api entry;Gravatar waker2011-03-15
| | | | fixed switching eq on/off
* fixed playback regression caused by changing waveformat.is_float to bitfieldGravatar waker2011-03-14
|
* added bigendian flag to waveformat structGravatar waker2011-03-12
|
* few fixes/improvements to metadata editor and related plugin APIsGravatar waker2011-03-09
|
* moved most of track properties from playItem struct to metadataGravatar waker2011-03-09
| | | | implemented track properties with multiple selection