branch: elpa/org-tree-slide commit caa2a202b549e2e3fc6f58d5f2f546093ffcf2dd Author: Takaaki ISHIKAWA <tak...@ieee.org> Commit: Takaaki ISHIKAWA <tak...@ieee.org>
Hide skipped slides in CONTENT mode --- ChangeLog | 10 +++++++++- README.org | 6 ++++-- org-tree-slide.el | 5 +++-- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index adc68aae95..32544f7a25 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2015-01-12 Takaaki ISHIKAWA <tak...@ieee.org> + + * org-tree-slide.el (org-tree-slide-content): Hide skipped slides when CONTENT mode + - Use `ots-skip-outline-level' in `ots-slide-content' (#8) + Thanks to Eike Kettner + Headlines that are skipped in presentation don't need to show up when + displaying contents. + 2013-07-21 Takaaki ISHIKAWA <ta...@ieee.org> * org-tree-slide.el (ots-count-slide): Revised to distinguish status @@ -36,7 +44,7 @@ * org-tree-slide.el: Issues #2, #5, #7 - Added org-tree-slide-skip-comments to skip a tree with COMMENT (#5) - Thanks to Eric S Fraga + Thanks to Eric S Fraga - Remove brackets from title (#7) - Added org-tree-slide-activate-message and org-tree-slide-deactivate-message to specify messages in mini-buffer (#2) diff --git a/README.org b/README.org index 426f7d6474..ee833a66fc 100644 --- a/README.org +++ b/README.org @@ -1,8 +1,9 @@ #+TITLE: README for Org Tree Slide #+AUTHOR: Takaaki Ishikawa #+EMAIL: tak...@ieee.org +#+DATE: 2015-01-12 +#+UPDATE: 18:34:09 #+STARTUP: content -#+Last Update: 2013-07-21@05:21 * 1. What's this? @@ -98,7 +99,7 @@ Type =M-x org-tree-slide-simple-profile= while =org-tree-slide-mode= is ON. This profile is used as the default setting of org-tree-slide. If an org buffer includes =#+TITLE:=, =#+EMAIL:=, and =#+AUTHOR:=, org-tree-slide attempts to use those variables in the slide header. A date in the header will be set with the presentation of the day. You can enjoy a slide-in effect, the current slide number in mode line. A presentation with a count down timer is started by =M-x org-tree-slide-play-with-timer=. -If you want to show the content of your presentation, type =C-x s c= or =M-x org-tree-slide-content=. All of the headings will be shown like a Table Of Content. Find a heading that you want to show, and type =<right>=, the presentation will be resumed. +If you want to show the content of your presentation, type =C-x s c= or =M-x org-tree-slide-content=. All of the headings will be shown like a Table Of Content except some headings configured as skipping by =org-tree-slide-slip-outline-level=. Find a heading that you want to show, and type =<right>=, the presentation will be resumed. It is possible to skip slides when a heading level is higher than or equal to a value of =org-tree-slide-skip-outline-level=. see User variables. @@ -218,6 +219,7 @@ see also ChangeLog |---------+------------------+-------------------------------------------------| | Version | Date | Description | |---------+------------------+-------------------------------------------------| +| v2.7.1 | 2015-01-12@18:28 | Hide skipped slides when CONTENT mode | | v2.7.0 | 2013-07-21@05:21 | Support buffers without headings | | v2.6.8 | 2013-02-19@12:49 | Added a flag to control face setting | | v2.6.6 | 2013-02-19@11:22 | Added a new toggle to skip commented trees | diff --git a/org-tree-slide.el b/org-tree-slide.el index e84e34f14c..52a4b326b2 100644 --- a/org-tree-slide.el +++ b/org-tree-slide.el @@ -1,6 +1,6 @@ ;;; org-tree-slide.el --- A presentation tool for org-mode ;; -;; Copyright (C) 2011-2013 Takaaki ISHIKAWA +;; Copyright (C) 2011-2014 Takaaki ISHIKAWA ;; ;; Author: Takaaki ISHIKAWA <takaxp at ieee dot org> ;; Maintainer: Takaaki ISHIKAWA <takaxp at ieee dot org> @@ -10,6 +10,7 @@ ;; ;; Committers: Yuuki ARISAWA (@uk-ar) ;; Eric S Fraga +;; Eike Kettner ;; ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -67,7 +68,7 @@ (require 'org-timer) (require 'org-clock) ; org-clock-in, -out, -clocking-p -(defconst org-tree-slide "2.7.0" +(defconst org-tree-slide "2.7.1" "The version number of the org-tree-slide.el") (defgroup org-tree-slide nil