-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This plugin tracks and provides access to playback history. History entries are stored in memory (not persistent) based on the played song or album which can be configured in the plugin settings. See also: PR #138
- Loading branch information
Showing
12 changed files
with
907 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
PLUGIN = playback-history-qt${PLUGIN_SUFFIX} | ||
|
||
SRCS = playback-history.cc | ||
|
||
include ../../buildsys.mk | ||
include ../../extra.mk | ||
|
||
plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR} | ||
|
||
LD = ${CXX} | ||
CPPFLAGS += -I../.. ${QT_CFLAGS} | ||
CFLAGS += ${PLUGIN_CFLAGS} | ||
LIBS += ${QT_LIBS} -laudqt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
shared_module('playback-history-qt', | ||
'playback-history.cc', | ||
dependencies: [audacious_dep, qt_dep, audqt_dep], | ||
name_prefix: '', | ||
install: true, | ||
install_dir: general_plugin_dir | ||
) |
Oops, something went wrong.