branch: elpa/org-tree-slide commit 20784de4209bd66534b986b3c7ce402ffe32493d Author: Takaaki ISHIKAWA <tak...@ieee.org> Commit: Takaaki ISHIKAWA <tak...@ieee.org>
Update ChangeLog --- ChangeLog | 10 ++++++++++ org-tree-slide.el | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b40867e327..6ae211b002 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2018-11-26 Takaaki ISHIKAWA <tak...@ieee.org> + + * org-tree-slide.el: Extract header colors from default face of frame + - the implementation of org-tree-slide-header-overlay-face is updated so that user don't need to set the variable explicitly. In case user customized theme is updated after loading this package, an appropriate function for updating the face spec should be run in `org-tree-slide-play-hook'. For instance, + (defun my-reload-header-face () + (face-spec-set 'org-tree-slide-header-overlay-face + `((t (:bold t :foreground ,(face-foreground 'default) + :background ,(face-background 'default)))))) + (add-hook 'org-tree-slide-play-hook #'my-reload-header-face) + 2018-09-06 Takaaki ISHIKAWA <tak...@ieee.org> * org-tree-slide.el: Support additional heading faces (#28) diff --git a/org-tree-slide.el b/org-tree-slide.el index dafd2bca3b..a828b196e9 100644 --- a/org-tree-slide.el +++ b/org-tree-slide.el @@ -77,7 +77,7 @@ (require 'org-timer) ;;(require 'org-clock) ; org-clock-in, -out, -clocking-p -(defconst org-tree-slide "2.8.8" +(defconst org-tree-slide "2.8.9" "The version number of the org-tree-slide.el.") (defgroup org-tree-slide nil