diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | lisp/emms.el | 2 |
3 files changed, 12 insertions, 2 deletions
@@ -20,7 +20,7 @@ INSTALLINFO = /usr/bin/install-info --info-dir=$(INFODIR) CHANGELOG_CMD = git log --pretty=medium --no-merges # The currently released version of EMMS -VERSION=5.1 +VERSION=5.2 .PHONY: all install lisp docs deb-install clean .PRECIOUS: %.elc @@ -1,3 +1,13 @@ +News since version 5.1 + + - emms-browser.el: faster thumbnail cache lookups. + - emms-player-mpd.el: Parse disc number for mpd tracks. + - Make thing-at-point behavior more consistent. + - Remove redundant functions in code. + - Allow changing the mode-line icon. + - Bug fix: emms-player-mode, more consistent behavior. + - Bug fix: emms-browser, Don't rely on (interactive "r"). + News since version 5.0 - Add `emms-toggle-single-track'. diff --git a/lisp/emms.el b/lisp/emms.el index e629cae..fc92e81 100644 --- a/lisp/emms.el +++ b/lisp/emms.el @@ -42,7 +42,7 @@ ;;; Code: -(defvar emms-version "5.1" +(defvar emms-version "5.2" "EMMS version string.") |