aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * support reading options from config fileChristian Hesse2016-10-053-0/+18
|/ | | | | | | | | | | | | This tries to read ~/.local/mpd-notification.conf, which is expected to look like this: host = localhost port = 6600 music-dir = /srv/media/music/ scale = 200 timeout = 20 Unused options can be commented or removed completely.
* Merge branch 'pixbuf'Christian Hesse2016-10-053-70/+79
|\
| * add scale option to help outputChristian Hesse2016-10-051-1/+1
| |
| * add notification file workaroundChristian Hesse2016-10-053-3/+18
| |
| * keep aspect ratio when scalingChristian Hesse2016-10-052-2/+11
| |
| * allow to scale artwork imagesChristian Hesse2016-10-052-2/+18
| |
| * merge the artwork functionsChristian Hesse2016-10-052-59/+34
| |
| * do not handle image path, but always give pixbufChristian Hesse2016-10-052-24/+18
|/
* clarify option arguments in documentationChristian Hesse2016-10-051-4/+4
|
* prepare version 0.7.5Christian Hesse2016-10-041-1/+1
|
* Merge branch 'systemd'Christian Hesse2016-10-041-1/+13
|\
| * work around mpd initialization issueChristian Hesse2016-05-161-0/+7
| |
| * try to get systemd unit start order rightChristian Hesse2016-05-121-1/+6
| |
* | always set imageChristian Hesse2016-10-041-2/+2
|/ | | | | Looks like libnotify does remember the image even if the notification is updated. So always set the image, it is cleared when called with NULL.
* prepare version 0.7.4Christian Hesse2016-05-101-1/+1
|
* make systemd unit depend on mpdChristian Hesse2016-05-061-0/+1
|
* fix compiler and linker flags and produce binaries with full RELROChristian Hesse2016-05-031-2/+7
|
* prepare version 0.7.3Christian Hesse2016-04-051-1/+1
|
* indent with tabsChristian Hesse2016-04-011-1/+1
|
* Allow one line notificationsChristian Hesse2016-04-014-11/+24
| | | | This is related to #9.
* update comment to match the codeChristian Hesse2016-03-151-2/+1
|
* Merge pull request #8 from hydracone/masterChristian Hesse2016-01-131-1/+1
|\ | | | | Support local unix sockets
| * support local unix socketsRonnie P. Thomas2016-01-091-1/+1
|/ | | | Add support for using local AF_UNIX sockets as host
* update copyright for 2016Christian Hesse2016-01-043-3/+3
|
* prepare version 0.7.2Christian Hesse2015-12-041-1/+1
|
* read environment variables: MPD_HOST and MPD_PORTChristian Hesse2015-11-161-1/+9
| | | | Fixes #6
* free resources when nothing to be displayedChristian Hesse2015-11-161-1/+2
| | | | | We need to free our resources, otherwise subsequent calls will fail. Should fix #7
* prepare version 0.7.1Christian Hesse2015-10-131-1/+1
|
* use systemd user unit to (auto-)startChristian Hesse2015-10-124-13/+14
|
* new screenshotsChristian Hesse2015-08-196-4/+4
|
* clean AVFormatContextChristian Hesse2015-07-141-4/+4
|
* prepare version 0.7.0Christian Hesse2015-07-131-1/+1
|
* make sure to use artwork when availableChristian Hesse2015-07-091-1/+7
|
* silent libav error messages only when not verboseChristian Hesse2015-07-091-1/+2
|
* move verbose output into conditional outputChristian Hesse2015-07-091-3/+3
|
* be verbose about artworkChristian Hesse2015-07-091-0/+3
|
* always allocate memory for notification stringChristian Hesse2015-07-091-3/+3
|
* rename define after icon nameChristian Hesse2015-07-092-4/+4
|
* do not write artwork to file but handle pixbuf to libnotifyChristian Hesse2015-07-092-37/+38
|
* silent libav error messagesChristian Hesse2015-07-092-1/+4
|
* rework the notification string handlingChristian Hesse2015-07-093-22/+48
|
* add project URLsChristian Hesse2015-07-051-0/+5
|
* update documentationChristian Hesse2015-07-051-1/+2
|
* use the more generic icon audio-x-genericChristian Hesse2015-07-051-1/+1
| | | | http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html#mimetypes
* it is sufficient to link against libavformatChristian Hesse2015-07-032-2/+1
|
* make libav (and retrieving cover from media file) optionalChristian Hesse2015-07-033-2/+18
|
* add --version optionChristian Hesse2015-07-031-5/+16
|
* obviously this should read -t... fix copy'n'paste errorChristian Hesse2015-06-191-1/+1
|
* add new timeout option to READMEChristian Hesse2015-06-191-0/+1
|
* Implement a notification-timeout option (-t)Samuel Čavoj2015-06-191-5/+11
| | | | | | It takes a floating point input in seconds and is converted to ms before passed to libnotify. Modified-by: Christian Hesse <mail@eworm.de>