瀏覽代碼

Initial documentation of the new clock features.

Carsten Dominik 16 年之前
父節點
當前提交
67070b0289
共有 2 個文件被更改,包括 33 次插入1 次删除
  1. 32 1
      ORGWEBPAGE/Changes.org
  2. 1 0
      lisp/org-clock.el

+ 32 - 1
ORGWEBPAGE/Changes.org

@@ -11,11 +11,42 @@
 #+LINK_HOME: http://orgmode.org
 
 
-* Version 6.10
+* Version 6.11 (in preparation)
 :PROPERTIES:
 :VISIBILITY: content
 :END:
 
+** Overview
+
+** Incompatible Changes
+
+** Details
+
+*** The clock can be now resumed after exiting and re-starting Emacs
+
+    If the option =org-clock-resume= is t, and the first clock
+    line in an entry is unclosed, clocking into that task resumes
+    the clock from that time.
+
+    Thanks to James JD Smith for a patch to this effect.
+
+*** Clock-related data can be saved and resumed accross Emacs sessions
+    
+    The data saved include the contents of =org-clock-history=,
+    and the running clock, if there is one.
+    
+    To use this, you will need to add to your .emacs
+
+#+begin_src emacs-lisp
+(setq org-clock-persist t)
+(setq org-clock-in-resume t)
+(org-clock-persistence-insinuate)
+#+end_src
+
+    Thanks to James JD Smith for a patch to this effect.
+
+* Version 6.10
+
 ** Overview
 
    - Secondary agenda filtering is becoming a killer feature

+ 1 - 0
lisp/org-clock.el

@@ -1076,6 +1076,7 @@ a stored clock"
 	  (message "Not restoring clock data; %s not found"
 		   org-clock-persist-file)))))
 
+;;;###autoload
 (defun org-clock-persistence-insinuate ()
   "Set up hooks for clock persistence"
   (add-hook 'org-mode-hook 'org-clock-load)