Fix typos on website Changes documentation
[org-mode.git] / ORGWEBPAGE / Changes.org
blob6dcb05dd79e60de679cc19bfd2b087fdff66cee2
1 #   -*- mode: org; org-export-publishing-directory: "tmp"; fill-column: 65 -*-
3 #+STARTUP: hidestars
5 #+TITLE: Org-mode list of user-visible changes
6 #+AUTHOR:  Carsten Dominik
7 #+EMAIL:  carsten at orgmode dot org
8 #+OPTIONS: H:3 num:nil toc:nil \n:nil @:t ::t |:t ^:{} *:t TeX:t LaTeX:nil
9 #+INFOJS_OPT: view:info toc:1 path:org-info.js tdepth:2 ftoc:t
10 #+LINK_UP: index.html
11 #+LINK_HOME: http://orgmode.org
14 * Version 6.11 (in preparation)
15 :PROPERTIES:
16 :VISIBILITY: content
17 :END:
19 ** Overview
21 ** Incompatible Changes
23 ** Details
25 *** Yanking subtree with =C-y= now adjusts the tree level
26     When yanking a cut/copied subtree or a series of trees, the
27     normal yank key =C-y= now adjusts the level of the tree to
28     make it fit into the current outline position, without losing
29     its identity, and without swallowing other subtrees.
31     This uses the command =org-past-subtree=.  An additional
32     change in that command has been implemented: Normally, this
33     command picks the right outline level from the surrounding
34     *visible* headlines, and uses the smaller one.  So if the
35     cursor is between a level 4 and a level 3 headline, the tree
36     will be pasted as level 3.  If the cursor is actually *at*
37     the beginning of a headline, the level of that headline will
38     be used.  For example, lets say you have a tree like this:
40 #+begin_src org
41 ,* Level one
42 ,** Level two
43 ,(1)
44 ,(2)* Level one again
45 #+end_src
47     with (1) and (2) indicating possible cursor positions for the
48     insertion.  When at (1), the tree will be pasted as level 2.
49     When at (2), it will be pasted as level 1.
51     If you do not want =C-y= to behave like this, configure the
52     variable =org-yank-adjusted-subtrees=.
54     Thanks to Samuel Wales for this idea and a partial implementation.
56 *** State changes can now be shown in the log mode in the agenda
58     If you configure the variable =org-agenda-log-mode-items=,
59     you can now request that all logged state changes be included
60     in the agenda when log mode is active.  If you find this too
61     much for normal applications, you can also temporarily
62     request the inclusion of state changes by pressing =C-u l= in
63     the agenda.
64     
65     This was a request by Hsiu-Khuern Tang.
67 *** Footnote in HTML export are now collected at the end of the document
68     Previously, footnotes would be left in the document where
69     they are defined, now they are all collected and put into a
70     special =<div>= at the end of the document.
72     Thanks to Sebastian Rose for this request.
74 *** HTML export now validates again as XHTML.
76     Thanks to Sebastian Rose for pushing this cleanup.
78 *** The clock can now be resumed after exiting and re-starting Emacs
80     If the option =org-clock-in-resume= is t, and the first clock
81     line in an entry is unclosed, clocking into that task resumes
82     the clock from that time.
84     Thanks to James JD Smith for a patch to this effect.
86 *** Clock-related data can be saved and resumed across Emacs sessions
87     
88     The data saved include the contents of =org-clock-history=,
89     and the running clock, if there is one.
90     
91     To use this, you will need to add to your .emacs
93 #+begin_src emacs-lisp
94 (setq org-clock-persist t)
95 (setq org-clock-in-resume t)
96 (org-clock-persistence-insinuate)
97 #+end_src
99     Thanks to James JD Smith for a patch to this effect.
101 *** Following file links can now use C-u C-u to force use of an external app.
103     So far you could only bypass your setup in `org-file-apps'
104     and force opening a file link in Emacs by using a =C-u= prefix arg
105     with =C-c C-o=.  Now you can call =C-u C-u C-c C-o= to force
106     an external application.  Which external application depends
107     on your system.  On Mac OS X and Windows, =open= is used.  On
108     a GNU/Linux system, the mailcap settings are used.
110     This was a proposal by Samuel Wales.
112 *** Inserting absolute files names now abbreviates links with "~".
114     Inserting file links with =C-u C-c C-l= was buggy if the
115     setting of `org-link-file-path-type' was `adaptive' (the
116     default).  Absolute file paths were not abbreviated relative
117     to the users home directory.  This bug has been fixed.
119     Thanks to Matt Lundin for the report.
121 *** Links to attachment files
123     Even though one of the purposes of entry attachments was to
124     reduce the number of links in an entry, one might still want
125     to have the occasional link to one of those files.  You can
126     now use link abbreviations to set up a special link type that
127     points to attachments in the current entry.  Note that such
128     links will only work from within the same entry that has the
129     attachment, because the directory path is entry specific.
130     Here is the setup you need:
132 #+begin_src emacs-lisp
133 (setq org-link-abbrev-alist '(("att" . org-attach-expand-link)))
134 #+end_src
136     After this, a link like this will work
138     : [[att:some-attached-file.txt]]
140     This was a proposal by Lindsay Todd.
142 *** Completed repeated tasks FIXME
143 *** Remove buffers created during publishing FIXME
144 * Version 6.10
146 ** Overview
148    - Secondary agenda filtering is becoming a killer feature
149    - Setting tags has now its own binding, =C-c C-q=
150    - Todo state changes can trigger tag changes
151    - C-RET will now always insert a new headline, never an item.
152    - Customize org-mouse.el feature set to free up mouse events
153    - New commands for export all the way to PDF (through LaTeX)
154    - Some bug fixed for LaTeX export, more bugs remain.
156 ** Details
158 *** Enhancements to secondary agenda filtering
160     This is, I believe, becoming a killer feature.  It allows you
161     to define fewer and more general custom agenda commands, and
162     then to do the final narrowing to specific tasks you are
163     looking for very quickly, much faster than calling a new
164     agenda command.
166     If you have not tries this yet, you should!
168 **** You can now refining the current filter by an additional criterion
169       When filtering an existing agenda view with =/=, you can
170       now narrow down the existing selection by an additional
171       condition.  Do do this, use =\= instead of =/= to add the
172       additional criterion.  You can also press =+= or =-= after
173       =/= to add a positive or negative condition.  A condition
174       can be a TAG, or an effort estimate limit, see below.
176 **** It is now possible to filter for effort estimates
177      This means to filter the agenda for the value of the Effort
178      property.  For this you should best set up global allowed
179      values for effort estimates, with
181 #+begin_src emacs-lisp
182 (setq org-global-properties
183       '(("Effort_ALL" . "0 0:10 0:30 1:00 2:00 3:00 4:00")))
184 #+end_src
185       
186      You may then select effort limits with single keys in the
187      filter.  It works like this:  After =/= or =\=, first select
188      the operator which you want to use to compare effort
189      estimates:
191      : <   Select entries with effort smaller than or equal to the limit
192      : >   Select entries with effort larger than or equal to the limit
193      : =   Select entries with effort equal to the limit
195      After that, you can press a single digit number which is
196      used as an index to the allowed effort estimates.
198      If you do not use digits to fast-select tags, you can even
199      skip the operator, which will then default to
200      `org-agenda-filter-effort-default-operator', which is by
201      default =<=.
203      Thanks to Manish for the great idea to include fast effort
204      filtering into the agenda filtering process.
206 **** The mode line will show the active filter
207      For example, if there is a filter in place that does select
208      for HOME tags, against EMAIL tags, and for tasks with an
209      estimated effort smaller than 30 minutes, the mode-line with
210      show =+HOME-EMAIL+<0:30=
212 **** The filter now persists when the agenda view is refreshed
213      All normal refresh commands, including those that move the
214      weekly agenda from one week to the next, now keep the
215      current filter in place.
217      You need to press =/ /= to turn off the filter.  However,
218      when you run a new agenda command, for example going from
219      the weekly agenda to the TODO list, the filter will be
220      switched off.
221    
222 *** Setting tags has now its own binding, =C-c C-q=
224     You can still use =C-c C-c= on a headline, but the new
225     binding should be considered as the main binding for this
226     command.  The reasons for this change are:
228     - Using =C-c C-c= for tags is really out of line with other
229       uses of =C-c C-c=.
231     - I hate it in Remember buffers when I try to set tags and I
232       cannot, because =C-c C-c= exits the buffer :-(
234     - =C-c C-q= will also work when the cursor is somewhere down
235       in the entry, it does not have to be on the headline.
237 *** Todo state changes can trigger tag changes
239     The new option =org-todo-state-tags-triggers= can be used to
240     define automatic changes to tags when a TODO state changes.
241     For example, the setting
243     : (setq org-todo-state-tags-triggers
244     :       '((done ("Today" . nil) ("NEXT" . nil))
245     :         ("WAITING" ("Today" . t))))    
247     will make sure that any change to any of the DONE states will
248     remove tags "Today" and "NEXT", while switching to the
249     "WAITING" state will trigger the tag "Today" to be added.
251     I use this mostly to get rid of TODAY and NEXT tags which I
252     apply to select an entry for execution in the near future,
253     which I often prefer to specific time scheduling.
255 *** C-RET will now always insert a new headline, never an item.
256     The new headline is inserted after the current subtree.
258     Thanks to Peter Jones for patches to fine-tune this behavior.
260 *** Customize org-mouse.el feature set
261     There is a new variable =org-mouse-features= which gives you
262     some control about what features of org-mouse you want to
263     use.  Turning off some of the feature will free up the
264     corresponding mouse events, or will avoid activating special
265     regions for mouse clicks.  By default I have urned off the
266     feature to use drag mouse events to move or promote/demote
267     entries.  You can of course turn them back on if you wish.
269     This variable may still change in the future, allowing more
270     fine-grained control.
272 *** New commands for export to PDF
274     This is using LaTeX export, and then processes it to PDF
275     using pdflatex.
277     : C-c C-e p     process to PDF.
278     : C-c C-e d     process to PDF, and open the file.
280 *** LaTeX export
281     - \usepackage{graphicx} is now part of the standard class
282       definitions.
283     - Several bugs fixed, but definitely not all of them :-(
285 *** New option `org-log-state-notes-insert-after-drawers'
287     Set this to =t= if you want state change notes to be inserted
288     after any initial drawers, i.e drawers the immediately follow
289     the headline and the planning line (the one with
290     DEADLINE/SCHEDULED/CLOSED information).
292 * Version 6.09
293 ** Incompatible
294 *** =org-file-apps= now uses regular expressions, see [[*%20org%20file%20apps%20now%20uses%20regular%20repressions%20instead%20of%20extensions][below]]
296 ** Details
298 *** =org-file-apps= now uses regular repressions instead of extensions
299     Just like in =auto-mode-alist=, car's in the variable
300     =org-file-apps= that are strings are now interpreted as
301     regular expressions that are matched against a file name.  So
302     instead of "txt", you should now write "\\.txt\\'" to make
303     sure the matching is done correctly (even though "txt" will
304     be recognized and still be interpreted as an extension).
306     There is now a shortcut to get many file types visited by
307     Emacs.  If org-file-apps contains `(auto-mode . emacs)', then
308     any files that are matched by `auto-mode-alist' will be
309     visited in emacs.
311 *** Changes to the attachment system
313     - The default method to attach a file is now to copy it
314       instead of moving it.
315     - You can modify the default method using the variable
316       `org-attach-method'.  I believe that most Unix people want
317       to set it to `ln' to create hard links.
318     - The keys =c=, =m=, and =l= specifically select =copy=,
319       =move=, or =link=, respectively, as the attachment method
320       for a file, overruling  `org-attach-method'.
321     - To create a new attachment as an Emacs buffer, you have not
322       now use =n= instead of =c=.
323     - The file list is now always retrieved from the directory
324       itself, not from the "Attachments" property.  We still
325       keep this property by default, but you can turn it off, by
326       customizing the variable =org-attach-file-list-property=.
328 * Version 6.08
330 ** Incompatible changes
332    - Changes in the structure of IDs, see [[*The%20default%20structure%20of%20IDs%20has%20changed][here]] for details.
334    - C-c C-a has been redefined, see [[*%20C%20c%20C%20a%20no%20longer%20calls%20show%20all][here]] for details.
336 ** Details
338 *** The default structure of IDs has changed
340     IDs created by Org have changed a bit:
341     - By default, there is no prefix on the ID.  There used to be
342       an "Org" prefix, but I now think this is not necessary.
343     - IDs use only lower-case letters, no upper-case letters
344       anymore.  The reason for this is that IDs are now also used
345       as directory names for org-attach, and some systems do not
346       distinguish upper and lower case in the file system.
347     - The ID string derived from the current time is now
348       /reversed/ to become an ID.  This assures that the first
349       two letters of the ID change fast, so hat it makes sense to
350       split them off to create subdirectories to balance load.
351     - You can now set the `org-id-method' to `uuidgen' on systems
352       which support it.
354 *** =C-c C-a= no longer calls `show-all'
356     The reason for this is that =C-c C-a= is now used for the
357     attachment system.  On the rare occasions that this command
358     is needed, use =M-x show-all=, or =C-u C-u C-u TAB=.
360 *** New attachment system
362     You can now attach files to each node in the outline tree.
363     This works by creating special directories based on the ID of
364     an entry, and storing files in these directories.  Org can
365     keep track of changes to the attachments by automatically
366     committing changes to git.  See the manual for more
367     information.
369     Thanks to John Wiegley who contributed this fantastic new
370     concept and wrote org-attach.el to implement it.
372 *** New remember template escapes
374     : %^{prop}p   to insert a property
375     : %k          the heading of the item currently being clocked
376     : %K          a link to the heading of the item currently being clocked
378     Also, when you exit remember with =C-2 C-c C-c=, the item
379     will be filed as a child of the item currently being
380     clocked.  So the idea is, if you are working on something and
381     think of a new task related to this or a new note to be
382     added, you can use this to quickly add information to that
383     task.
385     Thanks to James TD Smith for a patch to this effect.
387 *** Clicking with mouse-2 on clock info in mode-line visits the clock.
388     
389     Thanks to James TD Smith for a patch to this effect.
391 *** New file in contrib: lisp/org-checklist.el
393     This module deals with repeated tasks that have checkbox
394     lists below them.
396     Thanks to James TD Smith for this contribution.
398 *** New in-buffer setting #+STYLE
400     It can be used to locally set the variable
401     `org-export-html-style-extra'.  Several such lines are
402     allowed-, they will all be concatenated.  For an example on
403     how to use it, see the [[http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.php][publishing tutorial]].
405 * Version 6.07
406 :PROPERTIES:
407 :VISIBILITY: content
408 :END:
410 ** Overview
412    - Filtering existing agenda views with respect to a tag
413    - Editing fixed-width regions with picture or artist mode
414    - /org-plot.el/ is now part of Org
415    - Tags can be used to select the export part of a document
416    - Prefix interpretation when storing remember notes
417    - Yanking inserts folded subtrees
418    - Column view capture tables can have formulas, plotting info
419    - In column view, date stamps can be changed with S-cursor keys
420    - The note buffer for clocking out now mentions the task
421    - Sorting entries alphabetically ignores TODO keyword and priority
422    - Agenda views can sort entries by TODO state
423    - New face =org-scheduled= for entries scheduled in the future.
424    - Remember templates for gnus links can use the :to escape.
425    - The file specification in a remember template may be a function
426    - Categories in iCalendar export include local tags
427    - It is possible to define filters for column view
428    - Disabling integer increment during table Field copy
429    - Capturing column view is on `C-c C-x i'
430    - And tons of bugs fixed.  
433 ** Incompatible changes
435 *** Prefix interpretation when storing remember notes has changed
437     The prefix argument to the `C-c C-c' command that finishes a
438     remember process is now interpreted differently:
440     : C-c C-c       Store the note to predefined file and headline
441     : C-u C-c C-c   Like C-c C-c, but immediately visit the note
442     :               in its new location.
443     : C-1 C-c C-c   Select the storage location interactively
444     : C-0 C-c C-c   Re-use the last used location
446     This was requested by John Wiegley.
448 *** Capturing column view is now on `C-c C-x i'
450     The reason for this change was that `C-c C-x r' is also used
451     as a tty key replacement.
453 *** Categories in iCalendar export now include local tags
455     The locally defined tags are now listed as categories when
456     exporting to iCalendar format.  Org's traditional file/tree
457     category is now the last category in this list.  Configure
458     the variable =org-icalendar-categories= to modify or revert
459     this behavior.
461     This was a request by Charles Philip Chan.
463 ** Details
465 *** Secondary filtering of agenda views.
467     You can now easily and interactively filter an existing
468     agenda view with respect to a tag.  This command is executed
469     with the =/= key in the agenda.  You will be prompted for a
470     tag selection key, and all entries that do not contain or
471     inherit the corresponding tag will be hidden.  With a prefix
472     argument, the opposite filter is applied: entries that
473     do have the tag will be hidden.
475     This operation only /hides/ lines in the agenda buffer, it
476     does not remove them.  Changing the secondary filtering does
477     not require a new search and is very fast.
479     If you press TAB at the tag selection prompt, you will be
480     switched to a completion interface to select a tag.  This is
481     useful when you want to select a tag that does not have a
482     direct access character.
484     A double =/ /= will restore the original agenda view by
485     unhiding any hidden lines.
487     This functionality was John Wiegley's idea.  It is a simpler
488     implementation of some of the query-editing features proposed
489     and implemented some time ago by Christopher League (see the
490     file contrib/lisp/org-interactive-query.el).
492 *** Editing fixed-width regions with picture or artist mode
494     The command @<code>C-c '@</code> (that is =C-c= followed by a
495     single quote) can now also be used to switch to a special
496     editing mode for fixed-width sections.  The default mode is
497     =artist-mode= which allows you to create ASCII drawings.
499     It works like this: Enter the editing mode with
500     @<code>C-c '@</code>.  An indirect buffer will be created and
501     narrowed to the fixed-width region.  Edit the drawing, and
502     press @<code>C-c '@</code> again to exit.
504     Lines in a fixed-width region should be preceded by a colon
505     followed by at least one space.  These will be removed during
506     editing, and then added back when you exit the editing mode.
508     Using the command in an empty line will create a new
509     fixed-width region.
511     This new feature arose from a discussion involving Scott
512     Otterson, Sebastian Rose and Will Henney.
514 *** /org-plot.el/ is now part of Org.
516     You can run it by simple calling org-plot/gnuplot.
517     Documentation is not yet included with Org, please refer to
518     http://github.com/eschulte/org-plot/tree/master until we have
519     moved the docs into Org or Worg.
521     Thanks to Eric Schulte for this great contribution.
523 *** Tags can be used to select the export part of a document
525     You may now use tags to select parts of a document for
526     inclusion into the export, and to exclude other parts.  This
527     behavior is governed by two new variables:
528     =org-export-select-tags= and =org-export-exclude-tags=.
529     These default to =("export")= and =("noexport")=, but can be
530     changed, even to include a list of several tags.
532     Org first checks if any of the /select/ tags is present in
533     the buffer.  If yes, all trees that do not carry one of these
534     tags will be excluded.  If a selected tree is a subtree, the
535     heading hierarchy above it will also be selected for export,
536     but not the text below those headings.  If none of the select
537     tags is found anywhere in the buffer, the whole buffer will
538     be selected for export.  Finally, all subtrees that are
539     marked by any of the /exclude/ tags will be removed from the
540     export buffer.
542     You may set these tags with in-buffer options
543     =EXPORT_SELECT_TAGS= and =EXPORT_EXCLUDE_TAGS=.
545     I love this feature.  Thanks to Richard G Riley for coming
546     up with the idea.
548 *** Prefix interpretation when storing remember notes
550     The prefix argument to the `C-c C-c' command that finishes a
551     remember process is now interpreted differently:
553     : C-c C-c       Store the note to predefined file and headline
554     : C-u C-c C-c   Like C-c C-c, but immediately visit the note
555     :               in its new location.
556     : C-1 C-c C-c   Select the storage location interactively
557     : C-0 C-c C-c   Re-use the last used location
559     This was requested by John Wiegley.
561 *** Yanking inserts folded subtrees
563     If the kill is a subtree or a sequence of subtrees, yanking
564     them with =C-y= will leave all the subtrees in a folded
565     state.  This basically means, that kill and yank are now
566     much more useful in moving stuff around in your outline.  If
567     you do not like this, customize the variable
568     =org-yank-folded-subtrees=.
570     Right now, I am only binding =C-y= to this new function,
571     should I modify all bindings of yank?  Do we need to amend
572     =yank-pop= as well?
574     This feature was requested by John Wiegley.
576 *** Column view capture tables can have formulas, plotting info
578     If you attach formulas and plotting instructions to a table
579     capturing column view, these extra lines will now survive an
580     update of the column view capture, and any formulas will be
581     re-applied to the captured table.  This works by keeping any
582     continuous block of comments before and after the actual
583     table.
585 *** In column view, date stamps can be changed with S-cursor keys
587     If a property value is a time stamp, S-left and S-right can
588     now be used to shift this date around while in column view.
590     This was a request by Chris Randle.
592 *** The note buffer for clocking out now mentions the task
593     
594     This was a request by Peter Frings.
596 *** Sorting entries alphabetically ignores TODO keyword and priority
598     Numerical and alphanumerical sorting now skips any TODO
599     keyword or priority cookie when constructing the comparison
600     string.  This was a request by Wanrong Lin.
602 *** Agenda views can sort entries by TODO state
604     You can now define a sorting strategy for agenda entries that
605     does look at the TODO state of the entries.  Sorting by TODO
606     entry does first separate the non-done from the done states.
607     Within each class, the entries are sorted not alphabetically,
608     but in definition order.  So if you have a sequence of TODO
609     entries defined, the entries will be sorted according to the
610     position of the keyword in this sequence.
612     This follows an idea and sample implementation by Christian
613     Egli.
615 *** New face =org-scheduled= for entries scheduled in the future.
617     This was a request by Richard G Riley.
619 *** Remember templates for gnus links can now use the :to escape.
621     Thanks to Tommy Lindgren for a patch to this effect.
622 *** The file specification in a remember template may now be a function
624     Thanks to Gregory Sullivan for a patch to this effect.
626 *** Categories in iCalendar export now include local tags
628     The locally defined tags are now listed as categories when
629     exporting to iCalendar format.  Org's traditional file/tree
630     category is now the last category in this list.  Configure
631     the variable =org-icalendar-categories= to modify or revert
632     this behavior.
634     This was a request by Charles Philip Chan.
636 *** It is now possible to define filters for column view
638     The filter can modify the value that will be displayed in a
639     column, for example it can cut out a part of a time stamp.
640     For more information, look at the variable
641     =org-columns-modify-value-for-display-function=.
643 *** Disabling integer increment during table field copy
645     Prefix arg 0 to S-RET does the trick.
647     This was a request by Chris Randle.
650 * Version 6.06
652 ** Overview
654    - New, more CSS-like setup for HTML style information
655    - Attributes in hyperlinks, for example alt and title for images
656    - Simplified way to specify file links
657    - Modified behavior of time stamps in iCalendar export
658    - New way to compare times during a property search
659    - New option `org-open-directory-means-index'
660    - New parameters :prefix and :prefix1 for include files
661    - New option :index-style for org-publish
662    - New structure for the timestamp directory for org-publish.
664 ** Incompatible changes
666 *** New structure for the timestamp directory for org-publish.
668     The timestamp directory now uses SHA1 hashed versions of the
669     path to each publishing file.  This should be a consistent
670     and system-independent way to handle things.  The change
671     means that your next publishing command will publish each and
672     every file again, but just once, until new time stamps are in
673     place.
675 ** Details
677 *** New setup for HTML style information
679     In order to create a more CSS-like setup of the HTML style
680     information, the following changes have been made:
681     - The default style has moved to a constant,
682       =org-export-html-style-default= and should not be changed
683       anymore.
684     - The default of the variable =org-export-html-style= is now
685       just the empty string.  This variable should receive
686       settings that are Org-wide.  When using org-publish, this
687       variable is associated with the =:style= property and can
688       be used to establish project-wide settings.
689     - There is a new variable =org-export-html-style-extra= that
690       should be used for file-local settings.  Org-publish can, if
691       necessary, access this variable with the =:style-extra=
692       property.
693     - When a file is published, the values of 
694       - org-export-html-style-default
695       - org-export-html-style
696       - org-export-html-style-extra
697       are all inserted into the HTML header, in the given
698       sequence.
700     This follows a proposal by Rustom Mody.
702 *** Attributes in hyperlinks
704     You can now set attributes in hyperlinks that will be used
705     when publishing to HTML.  For example, if you want to use the
706     ALT and TITLE attributes of an inlined image, here is who to
707     do this:
709     : [[./img/a.jpg{{alt="This is image A" title="Image with no action"}}]]
711     Thanks to Charles Chen for this idea.
713 *** Simplified way to specify file links
715     In a link, you can now leave out the "file:" prefix if you
716     write an absolute file name like =/Users/dominik/.emacs= or
717     =~/.emacs=, or if you write a relative file name by using
718     =./= or =../= to start the file path.  You cannot write a
719     plain file name, because plain text is interpreted as an
720     internal link.
722     So for example, a link to an image /A.jpg/ with a thumbnail
723     /B.jpg/ can now be written like
725 #+begin_src org
726 [[./A.jpg][./B.jpg] ]
727 #+end_src
729 *** Changes in iCalendar export
731     Deadline and scheduling time stamps are now treated
732     differently in iCalendar export.  The default behavior is now
733     the following:
735     - a DEADLINE that appears in an entry that is a TODO item is
736       used as the item's DUE date.  Therefore, such a deadline
737       will no longer show up in the calendar.
739     - a DEADLINE that appears in an item that is *not* a TODO
740       item is exported as an EVENT and will show up in the
741       calendar.
743     - a SCHEDULED timestamp in a TODO item will be used as the
744       items DTSTART.  Therefore, such a timestamp will not show
745       up in the calendar.
747     - a SCHEDULED timestamp in an item that is not a TODO has no
748       effect on iCalendar export at all.  It will be ignored.
750     Of course this would not be Emacs if you could not configure
751     exactly what you want.  Take a look at the variables
752     =org-icalendar-use-deadlines= and
753     =org-icalendar-use-scheduled= if you want to go back to the
754     old behavior or even do something completely different.
756     Thanks to Karen Cooke for triggering this change.
758 *** New way to compare times during a property search
760     If the comparison value in a property search is a string that
761     is enclosed in angular brackets, a time comparison will be
762     done.  For example
764     : +DEADLINE>="<2008-12-24 15:20>"
766     looks for entries with a deadline on or after that time.
767     Special allowed values are "<now>" (with time) and "<today>"
768     (date only).
770     This is based on a request by Manish.
772 *** New option `org-open-directory-means-index'
774     When set, a link pointing to a directory will actually open
775     the index.org file in that directory.  This is a good setting
776     inside a publishing project.  When not set, you get a
777     finder/explorer window for that directory, or dired,
778     depending on system and setup.
780     This follows a request by Richard Riley.
782 *** New parameters :prefix and :prefix1 for include files
784     These parameters specify prefixes for each line of included
785     text.  :prefix1 is only for the first line, :prefix for all
786     other lines.
788     This follows a proposal by Richard Riley.
790 *** New option :index-style for org-publish
792     This option can be used to switch the style of the index
793     produced by org-publish.  Can be `list' (index is just an
794     itemized list of the titles of the files involved) or `tree'
795     (the directory structure of the source files is reflected in
796     the index).  The default is `tree'.
798     Thanks to Manuel Hermenegildo for the patch.
800 *** In the Agenda, inclusion of archives can now be toggled
801     - Pressing =v= will toggle inclusion of trees with the
802       ARCHIVE tag, this includes obviously the archive sibling.
803     - Pressing `C-u v'  will include trees with ARCHIVE tag, and
804       will also include all archive files that are currently
805       associated with your agenda files.
807     This was triggered by a proposal by Manuel Hermenegildo.
809 * Version 6.05
811 If I were to name my releases, this one would be called "Adam".
812 Adam, you definitely owe me a beer :-).  And I owe you one, too -
813 thanks for all the great ideas.
815 ** Overview
817    - Use cursor position in agenda for remember, scheduling and deadlines
818    - New API for mapping a function over all or selected entries
819    - Remember templates can be filed to beginning/end of a file
820    - Visiting a filed remember buffer immediately
821    - BBDB anniversaries are now links
822    - Column view in the agenda now cleans the ITEM field
823    - The format of section numbers in exported files is configurable
824    - Direct, single key access to allowed values in column view
825    - New hook to hack exported iCalendar files
826    - Log mode in agenda now shows end time for CLOCK line
828 ** Incompatible changes
830 *** `C-c C-x C-k' now calls `org-mark-entry-for-agenda-action'
831     It used to call =org-cut-special=, but that is also at bound
832     to the key =C-c C-x C-w=.
833 ** Details
835 *** Making use of the cursor position in the agenda
837     The date at the cursor in the agenda (and also in the
838     calendar) can now be used to schedule entries, or to set the
839     date in a remember template correctly.  It is also designed
840     to make it easier to move an entry to a date picked in the
841     agenda.  Thanks to Thomas Baumann for starting the thread
842     that led to this development.
844 **** Calling remember with the cursor date in the agenda
846      If you want to use the date at the agenda cursor in a
847      remember template, start remember from the agenda with the
848      keys =k r=.  While the template is being filled in, the
849      default date for all time stamps, and also for all
850      interactive escapes like =%^t= is now the date at the cursor
851      in the agenda.  The exact same command can also be used from
852      the calendar if you prefer that.
854 **** Picking a date for scheduling/deadline in the agenda
856      You may now pick the date for scheduling an item or for
857      setting a deadline in the agenda, where you have the best
858      overview over free time slots.  This is a two step process.
859      
860      1. First you pick the entry that should be acted upon.  In
861         the agenda, you use the keys =k m=.  In an org-mode file,
862         this is on =C-c C-x C-k=.
864      2. Then you find the agenda date you want to apply.  When the
865         cursor is anywhere in the block belonging to that date,
866         press =k s= to schedule, or =k d= to put a deadline.  The
867         agenda is not updated immediately, press =r= if you want
868         it to show the affected entry in the right place.
870 *** New API for mapping a function over all or selected entries
872     Org has sophisticated mapping capabilities to find all
873     entries satisfying certain criteria.  Internally, this
874     functionality is used to produce agenda views, but there is
875     also an API that can be used to execute arbitrary functions
876     for each or selected entries.  The main entry point for this
877     API is:
879 #+begin_example
880 -- Function: org-map-entries func &optional match scope &rest skip
881      Call FUNC at each headline selected by MATCH in SCOPE.
883      FUNC is a function or a lisp form.  The function will be
884      called without arguments, with the cursor positioned at
885      the beginning of the headline.  The return values of all
886      calls to the function will be collected and returned as
887      a list.
889      MATCH is a tags/property/todo match as it is used in the
890      agenda tags view.  Only headlines that are matched by
891      this query will be considered during the iteration.
892      When MATCH is nil or t, all headlines will be visited by
893      the iteration.
895      SCOPE determines the scope of this command, it can
896      specify a file, all agenda files, the current tree and
897      much more.
899      The remaining args are treated as settings for the
900      skipping facilities of the scanner.
901 #+end_example
903 The function given to that mapping routine can really do anything
904 you like.  Here is a simple example that will turn all entries in
905 the current file with a tag =TOMORROW= into TODO entries with the
906 keyword =UPCOMING=.  Entries in comment trees and in archive
907 trees will be ignored.
909 #+begin_src emacs-lisp
910 (org-map-entries
911    '(org-todo "UPCOMING")
912    "+TOMORROW" 'file 'archive 'comment)
913 #+end_src
915    The following example counts the number of entries with TODO
916 keyword =WAITING=, in all agenda files.
918 #+begin_src emacs-lisp
919 (length (org-map-entries t "/+WAITING" nil 'agenda))
920 #+end_src
922 *** Changes in Remember templates
924 **** Remember templates can now use the cursor date in the agenda
925      Use =k r= to start remember from the agenda, with enforcing
926      the cursor date as default for any time stamps created by
927      the template.
929 **** Filing remember templates to the beginning or end of a file
930      You may now set the heading part of a remember template
931      definition to `top' or `bottom'.  The template will then be
932      filed as a level 1 entry to the beginning or end of the
933      target file, respectively.  Thanks to Adam Spiers for this
934      proposal.
936 **** You can jump to the location of a note immediately after filing it
937      Just include the =%&= escape anywhere in the template.  An
938      interesting combination now is to use =%!%&=, which will
939      immediately file and visit the note, which is equivalent to
940      generating the note directly in the target location.  Thanks
941      to Adam Spiers for this proposal.
943 *** BBDB anniversaries are now links.
944     If you are using =%%(bbdb-anniversaries)= to list
945     anniversaries in the agenda, you can now directly access the
946     entry that triggered a listed anniversary from the agenda.
947     Just click the anniversary - it is a link now.  Thanks to
948     Thomas Baumann for a patch to this effect.
950 *** Column view in the agenda now cleans the ITEM field
951     See the new variable
952     =org-agenda-columns-remove-prefix-from-item=.  Thanks to Adam
953     Spiers for this proposal.
955 *** The format of section number in exported files is configurable
957     See the new variable `org-export-section-number-format'.
958     Thanks to Adam Spiers for this proposal.
960 *** Direct access to allowed values in column view
962     In column view, if you press a key 1-9 or 0, the
963     corresponding values from the list of allowed values for that
964     field at point will be directly selected.  Thanks to Levin Du
965     for this proposal and a patch to this effect.
967 *** New hook to hack exported iCalendar files
968     The new hook `org-before-save-iCalendar-file-hook' runs just
969     before the buffer with a created iCalendar export is saved.
970     This is what I settled for after a long discussion with Adam
971     Spiers about doing some special filtering automatically.
973 *** Log mode in agenda now shows end time for CLOCK lines
974     When turning on log mode in the agenda with =l=, clock lines
975     will now also list the end time, not only the starting time.
976     Thanks to Tian Qiu for bringing this up again.
977 *** Fixes and additions for org-publish
978     - the :include and :index-title properties in org-publish
979       work now as advertized
980     - the #+TITLE of a page will be used in the index
981     - new :completion-function property can define a hook to be
982       run after publishing a file.
984     Thanks to Manuel Hermenegildo for a patch to this effect.
986 * Version 6.04
988 ** Overview
990 - Statistics cookies [/] and [%] for TODO entries
991 - Editing source code example in the proper mode
992 - iCalendar now defines proper UIDs for entries
993 - New properties for customizing subtree export
995 ** Incompatible changes
996   
997 - The default of the variable `org-tags-match-list-sublevels' is
998   now `t'.  The main reason for this is that it is easier to
999   explain in the manual and will lead to fewer surprises.
1001 - The former CONTRIB directory is now called "contrib".  This was
1002   already the case in the git distribution, but the tar and zip
1003   archives still did this wrong.
1005 ** Details
1007 *** Statistics for TODO entries
1009 The [/] and [%] cookies have already provided statistics for
1010 checkboxes.  Now they do the same also for TODO entries.  If a
1011 headline contains either cookie, changing the TODO state of any
1012 direct child will trigger an update of this cookie.  Children
1013 that are neither TODO nor DONE are ignored.
1015 There have already been requests to automatically switch the
1016 parent headline to DONE when all children are done.  I am not
1017 making this a default feature, because one needs to make many
1018 decisions about which keyword to use, etc.  Instead of a complex
1019 customization variable, I am providing a hook that can be used.
1020 This hook will be called each time a TODO statistics cookie is
1021 updated, with the cursor in the corresponding line.  Each
1022 function in the hook will receive two arguments, the number of
1023 done entries, and the number of not-done entries, and you can use
1024 the hook to change the state of the headline.  Here is an example
1025 implementation:
1027 #+begin_src emacs-lisp
1028 (defun org-summary-todo (n-done n-not-done)
1029   "Switch entry to DONE when all sub-entries are done, to TODO otherwise."
1030   (let (org-log-done org-log-states)   ; turn off logging
1031     (org-todo (if (= n-not-done 0) "DONE" "TODO"))))
1033 (add-hook 'org-after-todo-statistics-hook 'org-summary-todo)
1034 #+end_src
1036 *** Editing source code example in the proper mode
1038 If you are writing a document with source code examples, you can
1039 include these examples into a =#+BEGIN_SRC lang ... #+END_SRC= or
1040 (with the org-mtags module loaded) a =<src...= structure.  =lang=
1041 stands for the Emacs mode used for editing the language, this
1042 could be =emacs-lisp= for Emacs Lisp mode examples, or =org= for
1043 Org mode examples.  You can now use the key "C-c '" (that is C-c
1044 followed by the single quote) to edit the example in its native
1045 mode.  This works by creating an indirect buffer, narrowing it to
1046 the example and setting the appropriate mode.  You need to exit
1047 editing by pressing "C-c '" again.  This is important, because
1048 lines that have syntactic meaning in Org will be quoted by
1049 calling this command.
1051 "C-c '" also edits include files, the setupfile in a =#+setufile=
1052 line, and all those little foreign snippets like:
1054 #+begin_src org
1055 ,#+HTML: this code can be edited in html-mode
1057 ,#+BEGIN_HTML
1058 ,Same here
1059 ,#+BEGIN_HTML
1061 ,#+LaTeX: this code can be edited in latex-mode
1063 ,#+BEGIN_LaTeX
1064 ,Same here
1065 ,#+BEGIN_LaTeX
1067 ,#+BEGIN_SRC fortran
1068 ,Here we can edit in fortran-mode
1069 ,#+END_SRC
1070 #+end_src
1072 *** iCalendar now defines proper UIDs for entries
1074 This is necessary for synchronization services.  The UIDs are
1075 created using the the org-id.el module which is now part of the
1076 Org core.  If you set the variable
1078 : (setq org-icalendar-store-UID t)
1080 then all created UIDs will be stored in the entry as an =:ID:=
1081 property.  This is off by default because it creates lots of
1082 property drawers even if you only play with iCalendar export.
1083 But if you plan to use synchronization, you really need to turn
1084 this on.
1086 Diary sexp entries do not yet receive proper persistent UIDs,
1087 because they are transformed to iCalendar format by icalendar.el
1088 which creates fresh UIDs each time, based on the current time.
1090 An interesting aspect of Org is that a single outline node can
1091 give rise to multiple iCalendar entries (as a timestamp, a
1092 deadline, a scheduled item, and as a TODO item). Therefore, Org
1093 adds prefixes "TS-", "DL-" "CS-", and "TD-" to the UID during
1094 iCalendar export, depending on what triggered the inclusion of
1095 the entry.  In this way the UID remains unique, but a
1096 synchronization program can still figure out from which entry all
1097 the different instances originate.
1099 *** New properties for customizing subtree export.
1101 When exporting a subtree by selecting it before calling the
1102 export command, you can now use the properties =EXPORT_TITLE=,
1103 =EXPORT_TEXT=, and =EXPORT_OPTIONS= to overrule the global
1104 =#+TITLE=, =#+TEXT=, and =#+OPTIONS= settings.  You can also set
1105 an export file name with =EXPORT_FILE_NAME= that will overrule
1106 the file name derived from the buffer's file name.  As far as the
1107 options are concerned, the global =#+OPTIONS= will still be read,
1108 and only the options you give in the property will be
1109 overwritten.  For example:
1111 #+begin_src org
1112 ,#+OPTIONS: skip:nil
1113 ,* Computer Tricks
1114 ,  :PROPERTIES:
1115 ,  :EXPORT_FILE_NAME: ct.html
1116 ,  :EXPORT_TITLE: Steve's collected computer tricks
1117 ,  :EXPORT_OPTIONS: h:2 toc:nil
1118 ,  :END:
1119 #+end_src
1121 *** New way to define tags for an entire file.
1123     Tags that are defined in a line like
1124     : #+FILETAGS: work urgent
1125     are inherited by all entries in the file.
1127     Thanks to Manuel Hermenegildo for this proposal.
1129 * Version 6.03
1131 ** Overview
1133    - Description lists are now supported natively
1134    - Block quotes for export
1135    - Fontified code examples in HTML export
1136    - Include files for export
1137    - Text before the first headline is now exported by default
1138    - In-buffer options may now be collected in an external file
1139    - The in-buffer settings keywords may now be lower case
1140    - Completion of structure elements
1141    - Startup visibility can now be influenced by properties
1142    - Clock task history, moving entries with the running clock
1143    - BBDB anniversaries much faster
1144    - New contrib files: org-eval.el and org-mtags.el
1146 ** Incompatible changes
1148 - The text before the first headline is now exported by default
1150   Previously, the default was to not include text in an org-mode
1151   buffer before the first headline.  From now on, the default it to
1152   include it.  If you like the old default better, customize the
1153   variable =org-export-skip-text-before-1st-heading= or set the
1154   value on a per-file basis with
1156 #+begin_src org
1157 #+OPTIONS: skip:t
1158 #+end_src
1160 ** Details
1162 *** Description lists are now supported natively
1164     A plain list will be exported as a description list if the
1165     first item in the list has a /term/ and the /description/,
1166     separated by " :: ".  For example
1168     : Emacs software by Carsten Dominik
1169     : - RefTeX    :: Support for LaTeX Labels, References, Citations
1170     : - CDLaTeX   :: more LaTeX functionality for Emacs
1171     : - TeXmathp  :: checking LaTeX buffers for Math mode.
1172     : - ORG       :: An Emacs mode for notes and projet planning.
1173     : - CONSTANTS :: An Emacs package for inserting the definition of
1174     :                natural constants and units into a buffer.
1175     : - IDLWAVE   :: The Emacs modes for editing and
1176     :                running IDL and WAVE CL files.
1178     will be rendered as
1180     Emacs software by Carsten Dominik
1181      - RefTeX    :: Support for LaTeX Labels, References, Citations
1182      - CDLaTeX   :: more LaTeX functionality for Emacs
1183      - TeXmathp  :: checking LaTeX buffers for Math mode.
1184      - ORG       :: An Emacs mode for notes and projet planning.
1185      - CONSTANTS :: An Emacs package for inserting the definition of
1186                     natural constants and units into a buffer.
1187      - IDLWAVE   :: The Emacs modes for editing and
1188                     running IDL and WAVE CL files.
1190     This works now in the HTML exporter, we still need to supoort
1191     it with the LaTeX and ASCII exporters.
1193 *** Block quotes for export
1195     For quoting an entire paragraph as a citation, use
1197 #+begin_src org
1198 ,#+BEGIN_QUOTE
1199 Everything should be made as simple as possible,
1200 but not any simpler -- Albert Einstein
1201 ,#+BEGIN_QUOTE
1202 #+end_src
1204     which will render as
1206 #+BEGIN_QUOTE
1207 Everything should be made as simple as possible,
1208 but not any simpler -- Albert Einstein
1209 #+BEGIN_QUOTE
1211 *** Fontified code examples in HTML export
1213     You can now get code examples fontified like they would be
1214     fontified in an Emacs Buffer, and export the result to HTML.
1215     To do so, wrap the code examples into the following
1216     structure:
1218 #+begin_src org
1219 ,#+BEGIN_SRC emacs-lisp
1220 (defun org-xor (a b)
1221   "Exclusive or."
1222   (if a (not b) b))
1223 ,#+END_SRC
1224 #+end_src
1226     In the export, this will then look like this (if you are now
1227     looking at the ASCII export and do not see anything
1228     interesting, go and check out the HTML version at
1229     http://orgmode.org/Changes.html).
1231 #+BEGIN_SRC emacs-lisp
1232 (defun org-xor (a b)
1233   "Exclusive or."
1234   (if a (not b) b))
1235 #+END_SRC
1237     The string after the =BEGIN_SRC= is the name of the major emacs
1238     mode that should be used to fontify the code example, without the
1239     "-mode" at the end of the mode name.  For example, if you are
1240     writing an Org tutorial with Org examples included, you would use
1241     "org" as the language identifier - in fact, I have used just
1242     that in the example above.
1244     Currently this works only for HTML export, and requires the
1245     /htmlize.el/ package, version 1.34 or later.  For other
1246     backends, such structures are simply exported as EXAMPLE.
1248 *** Include files for export
1250     A line like
1252     : #+INCLUDE "file" markup lang
1254     will lead to the inclusion of the contents of FILE at the moment
1255     of publishing.  FILE should be surrounded by double quotes, this
1256     is obligatory if it contains space characters.  The parameters
1257     MARKUP and LANG are optional.  MARKUP can be "example", "quote",
1258     or "src".  If it is "src", LANG should be the name of the Emacs
1259     mode to be used for fontifying the code.  For example:
1261     : Here is my /.emacs/ file:
1262     : #+INCLUDE "~/.emacs" src emacs-lisp
1264 *** The text before the first headline is now exported by default
1266     Previously, the default was to not include text in an org-mode
1267     buffer before the first headline.  From now on, the default it to
1268     include it.  If you like the old default better, customize the
1269     variable =org-export-skip-text-before-1st-heading= or set the
1270     value on a per-file basis with
1272     : #+OPTIONS: skip:t
1275 *** In-buffer options may now be collected in an external file
1277     If you would like to share the Org setup between a number of
1278     files, you can now store in-buffer setup in a file and simply
1279     point to that file from each file that should read it.  If
1280     you write in a buffer
1282     : #+SETUPFILE: "path/to/setup.org"
1284     then this file will be scanned for in-buffer options like
1285     =#+STARTUP=, =#+TITLE=, or =#+OPTIONS=.
1287 *** The in-buffer settings keywords may now be upper or lower case
1288     
1289     From now on, it makes no difference is you write =#+STARTUP= or
1290     =#+startup=, to make these lines less imposing.  Similarly for all
1291     other in-buffer keywords.
1293 *** Completion of structure elements
1294     As a new experimental feature, Org now supports completion of
1295     structural elements like =#+BEGIN_EXAMPLE= in a special way.
1296     It work by typing, for example "<e" and then pressing TAB, on
1297     an otherwise empty line.  "<e" will expand into a complete
1298     EXAMPLE template, with the cursor positioned in the middle.
1299     Currently supported templates are:
1301     : <s   #+begin_src
1302     : <e   #+begin_example
1303     : <q   #+begin_quote
1304     : <v   #+begin_verse
1305     : <l   #+begin_latex
1306     : <L   #+latex:
1307     : <h   #+begin_html
1308     : <H   #+html:
1309     : <a   #+begin_ascii
1310     : <i   #+include
1312     This is an experimental feature, please comment!  See also
1313     below under /org-mtags.el/.
1315 *** Startup visibility can now be influenced by properties
1317     When Emacs opens an Org mode buffer, the outline visibility
1318     is set to a startup value that is taken from the variable
1319     =org-startup-folded=, or from a =#+STARTUP= setting in the
1320     buffer.  After this has happened, the buffer will now also be
1321     scanned for entries with a =VISIBILITY= property.  Wherever
1322     such a property is found, the corresponding subtree will get
1323     its visibility adjusted.  Allowed values for the property
1324     are:
1326     - folded   :: Fold the subtree
1327     - children :: Show the text after the headline, and the
1328       headlines of all direct children
1329     - content :: Show all headlines in the tree, but no text below any
1330       headline
1331     - all :: Show the entire subtree
1333     For example, I am using this for the huge /Changes.org/ file that
1334     is the source for the list of visible changes you are reading
1335     right now.  The top-most entry in this file always describes the
1336     changes in my current working version.  The start of this section
1337     currently looks like this:
1339 #+begin_src org
1340 ,* Version 6.03
1341 ,  :PROPERTIES:
1342 ,    :VISIBILITY: content
1343 ,  :END:
1344 ,** Overview
1345 #+end_src
1347     This was a proposal by Ben Alexander.
1349     The command =C-u C-u TAB= will switch back to the startup
1350     visibility of the buffer.
1352 *** Clock task history, and moving entries with the running clock
1354     Org now remembers the last 5 tasks that you clocked into, to
1355     make it easier to clock back into a task after interrupting
1356     it for another task.
1357     - =C-u C-u C-c C-x C-i= (or =C-u C-u I= from the agenda) will
1358       clock into that task and mark it as current default task.
1359     - =C-u C-c C-x C-i= (or =C-u I= from the agenda) will offer a
1360       list of recently clocked tasks, including the default task,
1361       for selection. =d= selects the default task, =i= selects
1362       the task that was interrupted by the task that is currently
1363       being clocked. =1=,... selects a recent task.  When you
1364       select a task, you will be clocked into it.
1365     - You can use =C-u C-c C-x C-j= to jump to any of these
1366       tasks.
1368     When moving an entry using structure editing commands,
1369     archiving commands, or the special subtree cut-and-paste
1370     commands =C-c C-x C-w= and =C-c C-x C-y=, the running clock
1371     marker and all clock history markers will be moved with the
1372     subtree.  Now you can start a clock in a remember buffer and
1373     keep the clock running while filing the note away.  See also
1374     the variable `org-remember-clock-out-on-exit'.
1376 *** BBDB anniversaries much faster
1378     =bbdb-anniversaries= is now much faster, thanks to a new
1379     approach using a hash for birthdays.  Thanks to Thomas
1380     Baumann for a patch to this effect.
1382 *** New files in the contrib directory
1384     Do people think any of these should become core?
1386     - org-eval.el :: This new module allows to include the result
1387          of the evaluation of Lisp code (and other scripting
1388          languages) into the buffer, similar to the =<lisp>= tag
1389          of [[http://mwolson.org/static/doc/emacs-wiki.html#Lisp-Tricks][Emacs Wiki]] and [[http://mwolson.org/static/doc/muse/Embedded-Lisp.html#Embedded-Lisp][Muse]].
1390     - org-mtags.el :: This new modules allows you to use
1391          Muse-like tags for some structure definitions in Org.
1392          For example, instead of 
1393          :#+BEGIN_EXAMPLE
1394          :...
1395          :#+END_EXAMPLE
1396          you can write
1397          :<example>
1398          :...
1399          :</example>
1400          In fact, I myself find these easier to type and to look
1401          at.  Also, it will allow you to more easily move text
1402          and files back and forth between Org and Muse.  For a
1403          list of supported structure elements, see the commentary
1404          in the file [[http://repo.or.cz/w/org-mode.git?a=blob_plain;f=contrib/lisp/org-mtags.el;hb=HEAD][commentary in the file org-mtags.el]].
1406          If you load this module and use the "<i" etc completion
1407          described above, the Muse form will automatically be
1408          inserted.
1410 *** Bug fixes
1411     Many bug fixes again.  Will this ever stop?
1413 * Version 6.02
1415 ** Overview
1417    - Column view (mostly) works now in XEmacs
1418    - Summaries for columns in the agenda
1419    - The special property Effort can be used for effort estimates
1420    - New operators for property searches
1421    - Search commands can now include archive files.
1422    - Clock tables can include the archive files
1423    - Orgtbl radio tables generalized.
1425 ** Details
1427 *** Column view works now in XEmacs
1429     I had already given up on this, but Greg Chernev (who
1430     implemented noutline.el for XEmacs and in this way kept Org
1431     alive on XEmacs) has done it again and provided the patches
1432     to make column view work under XEmacs.  There are still some
1433     problems, but the basics work and we will iron out the
1434     remaining issues, hopefully soon.
1436 *** Summaries for columns in the agenda
1438     If any of the columns has a summary type defined, turning on
1439     column view in the agenda will show summaries for these
1440     columns.  Org will first visit all relevant agenda files and
1441     make sure that the computations of this property are up to
1442     date.  This is also true for the special =CLOCKSUM= property.
1443     Org will then sum the values displayed in the agenda.  In the
1444     daily/weekly agenda, the sums will cover a single day, in all
1445     other views they cover the entire block.  It is vital to
1446     realize that the agenda may show the same entry multiple
1447     times (for example as scheduled and as a deadline), and it
1448     may show two entries from the same hierarchy (for example a
1449     /parent/ and it's /child/).  In these cases, the summation in
1450     the agenda will lead to incorrect results because some values
1451     will count double.
1453 *** The special property Effort can be used for effort estimates
1455     If you want to plan your work in a very detailed way, or if
1456     you need to produce offers with quotations of the estimated
1457     work effort, you may want to assign effort estimates to
1458     entries.  If you are also clocking your work, you may later
1459     want to compare the planned effort with the actual working
1460     time.  Effort estimates can now be stored in a special
1461     property =Effort=, displayed side-to-side with clock sums,
1462     and also be summed over a day, in order to show the planned
1463     work load of a day.  See the manual for more details.
1465 *** New operators for property searches
1467     Property searches can now choose a number of different
1468     operators for comparing values.  These operators are `=',
1469     `<>', `<', `<=', `>', and `>='.
1471     When the search term uses the operator with plain number like
1472     =+Effort>=2.7=, then the property value is converted to a
1473     number and a numerical comparison takes place.
1475     When the search term uses a string on the right hand side of
1476     the operator, a string comparison is done: =+PRIORITY<"C".=
1478     Finally, if the right hand side is enclosed in curly braces,
1479     a regexp match is done: =aaa={regexp}=.  In this case you
1480     should use only the `=' or `<>' operators, meaning "does
1481     match" or "does not match", respectively.
1483     This was a triggered with a request by Dan Davison.
1485 *** Search commands can now include archive files.
1487     If the value of the customization variable
1488     =org-agenda-text-search-extra-files= contains the symbol
1489     =agenda-archives= as the first element in the list, all
1490     archive files of all agenda files will be added to the list
1491     of files to search.  This is relevant for the search view
1492     =C-c a s=, as well as for the agenda files multi-occur
1493     command =C-c a /=.
1495 *** Clock tables can include the archive files
1497     There are new values for the =:scope= parameter of a clock
1498     table.  This can now be =file-with-archives= and
1499     =agenda-with-archives=, in order to collect information not
1500     only from the current file or all agenda files, but also from
1501     all archive files that are currently used by these files.
1503 *** Orgtbl radio tables generalized.
1505     The options available for radio tables using orgtbl-mode have
1506     been expanded.  You may use several reception points and
1507     formats for the same table, you may have special formatting
1508     in the last line of the table,  and many table parameters may
1509     be functions, so that more general transformations are
1510     possible.  Jason Riedy provided a patch for this, and he will
1511     hopefully come up with some examples.  Thanks!
1513 * Version 6.01
1515 This is a new major release, mostly because of structural changes
1516 in Org.  However, since this took a while, there is also a long
1517 list of small improvements and some new significant features.
1519 ** Overview
1521    - The Org distribution has a new structure
1522    - New system for selecting modules to load
1523    - New archiving mechanism: The Archive Sibling
1524    - Support for Sebastian Rose's JavaScript org-info.js.
1525    - Internal links work now better in HTML export
1526    - Export commands can be done in the background
1527    - Flexible setting of the time block shown by the clock table
1528    - Clock table can be included in the agenda
1529    - Support for ISO week dates (ISO 6801)
1530    - Tag inheritance can be limited to a subset of all tags
1531    - Entries can be sorted by TODO keyword
1532    - And some more small fixes and improvements
1534 ** Incompatible changes
1536 *** The Org distribution has a new structure
1538     In the distribution files as well as in the GIT repository,
1539     the lisp files are now located in a subdirectory "lisp", and
1540     the documentation files are located in a subdirectory "doc".
1541     If you are running Org directly from the unpacked
1542     distribution archive (zip or tar file, or GIT repository),
1543     you need to modify your settings for load-path accordingly.
1545 ** Details
1547 *** The Org distribution has a new structure
1549     In the distribution files as well as in the GIT repository,
1550     the lisp files are now located in a subdirectory "lisp", and
1551     the documentation files are located in a subdirectory "doc".
1552     If you are running Org directly from the unpacked
1553     distribution archive (zip or tar file, or GIT repository),
1554     you need to modify your settings for load-path accordingly.
1556 *** Loading modules
1558     Org-mode has now a system for loading modules by simply
1559     configuring an option that lists all the modules you want to
1560     use.  Customize the variable `org-modules'.  That variable
1561     lists both modules that are part of the Org-mode core (and in
1562     this way part of Emacs), and modules that are contributed
1563     packages.  Contributed modules will only be available when
1564     you have installed them properly (most likely by downloading
1565     the distribution and adding /path/to/orgdir/contrib/lisp to
1566     your load path).
1568 *** New archiving mechanism: The Archive Sibling
1570     There is a new method to archive entries in the current file:
1571     By moving it to a sibling called the /Archive Sibling/.  That
1572     sibling has the heading "Archive" and also carries the
1573     ARCHIVE tag.  This can be a great way to do archiving inside
1574     a project, to get parts of the project out of the way and to
1575     wait with true archiving (moving to another file) until the
1576     entire project is done.  Archiving to a sibling keeps much of
1577     the context, for example inherited tags and approximate tree
1578     position in tact.
1580     The key binding for the is "C-c C-x A", and from the agenda
1581     buffer you can simply use "A".
1583     Thanks to Ilya Shlyakhter for this rather clever idea.
1585 *** Support for Sebastian Rose's JavaScript org-info.js.
1587     This fascinating program allows a completely new viewing
1588     experience for web pages created from Org files.  The same
1589     document can be viewed in different ways, and switching
1590     between the views as well as navigation uses single-key
1591     commands.
1593     One of the view types is an /Info-like/ interface where you
1594     can jump through the sections of the document with the `n'
1595     and `p' keys (and others).  There is also a /folding/
1596     interface where you can fold the document much like you can
1597     fold it in org-mode in Emacs, and cycle through the
1598     visibility both locally and globally.
1600     To set this up, all you need to do is to make sure that
1601     org-infojs.el gets loaded (customize the variable org-modules
1602     to check).  Then add this line to the buffer:
1604     : #+INFOJS_OPT: view:info
1606     In that line, you can configure the initial view and other
1607     settings.  Available views are =info= for the info-like
1608     interface, and =overview=, =content=, and =showall= for the
1609     folding interface.  See the manual for more details.  The
1610     JavaScript program is served from
1611     http://orgmode.org/org-info.js, and your exported HTML files
1612     will automatically get it from there.  However, you may want
1613     to be independent of the existence and stability of
1614     orgmode.org and install a copy locally.  Then you need to
1615     change the path from which the script is loaded, either by
1616     using something like
1618     : #+INFOJS_OPT: view:info path:../scripts/org-info.js
1620     or by configuring the variable =org-infojs-options=.
1622     For details see the documentation provided by Sebastian Rose
1623     together with org-info.js.
1625 *** Export improvements
1627     - The export of internal links to HTML now works a lot
1628       better.  Most internal links that work while editing an Org
1629       file inside Emacs will now also work the the corresponding
1630       HTML file.
1632     - You can run many of the export commands in the background
1633       by using `C-c C-u C-c C-e' in order to start the process.
1634       RIght now this will only work if "emacs" is the right
1635       command to get to your Emacs executable - I hope to make
1636       this less system dependent in the future.
1638     Both these are based on requests by Ilya Shlyakhter.
1640 *** Improvements to clocktable
1642     - The clocktable is now much more flexible and user friendly
1643       when trying to specify the time block that should be
1644       considered when constructing the table.
1646       The =:block= parameter to the table can now look like any
1647       of these:
1648       
1649       | :block       | meaning               |
1650       |--------------+-----------------------|
1651       | 2008         | The entire year 2008  |
1652       | 2008-04      | The month April 2008  |
1653       | 2008-04-02   | The day April 2, 2008 |
1654       | 2008-W14     | ISO-Week 14 in 2008   |
1655       | today        | Today                 |
1656       | today-5      | The day five days ago |
1657       | thisweek     | The current week      |
1658       | thisweek-2   | Two weeks ago         |
1659       | thismonth    | The current month     |
1660       | thismonth-12 | Same month, last year |
1661       | lastmonth    | Same as thismonth-1   |
1664       What is more, you can now use the =S-left= and =S-right=
1665       keys to shift the time block around.  The cursor needs to
1666       be in the =#+BEGIN: clocktable= line for this to work.  If
1667       the current block is =today=, =S-left= with switch to
1668       yesterday.  If the current block is =2008-W14=, =S-right=
1669       will switch to the following week.
1671     - When the clocktable is collecting from several files, the
1672       total time for each file will now also be listed.  This was
1673       a request from Bernt Hansen.
1675     - If you turn on the new clock report mode with the "R" key in
1676       the agenda, a clock table will be attached to the agenda,
1677       showing the clock report for the file scope and time
1678       interval of the agenda view.  To turn this on permanently,
1679       configure the variable
1680       =org-agenda-start-with-clock report-mode=.  To modify the
1681       properties of the table, in particular the =:maxlevel=
1682       depth, configure =org-agenda-clockreport-parameter-plist=.
1684 *** Support for ISO week dates (ISO 6801)
1686     The agenda now shows the ISO week for the displayed dates, in
1687     the form =W08= for week 8.
1689     The keys =d=, =w=, =m=, and =y= in the agenda view now accept
1690     prefix arguments.  Remember that in the agenda, you can
1691     directly type a prefix argument by typing a number, no need
1692     to press =C-u= first.  The prefix argument may be used to
1693     jump directly to a specific day of the year, ISO week, month,
1694     or year, respectively.  For example, =32 d= jumps to February
1695     1st, =9 w= to ISO week number 9.  When setting day, week, or
1696     month view, a year may be encoded in the prefix argument as
1697     well.  For example, =200712 w= will jump to week 12 in the
1698     year 2007.  If such a year specification has only one or two
1699     digits, it will be mapped to the interval 1938-2037.
1701     When entering a date at the date prompt, you may now also
1702     specify an ISO week.  For example
1704     : w4              Monday of week 4
1705     : fri w4          Friday of week 4
1706     : w4-5            Same as above
1707     : 2012 w4 fri     Friday of week 4 in 2012.
1708     : 2012-W04-5      Same as above
1710     So far I have not implemented the effect of
1711     `org-read-date-prefer-future' on this functionality, because
1712     it seemed too magic for me.  I'd appreciate comments on this
1713     issue:  Should `org-read-date-prefer-future' also push dates
1714     into the next year if the week you are entering has already
1715     passed in the current year?  For consistency I guess this
1716     should be the case, but I cannot quite wrap my head around
1717     it.
1719     I hope but am not entirely convinced that this will behave
1720     sanely also during the first/last week of a year.  Please
1721     test extensively and report back.
1723     This was a request by Thomas Baumann.
1725 *** Improvements in Search View
1726     
1727     - Calling search view with a C-u prefix will make it match
1728       only in TODO entries.
1730     - The single quote is no longer considered a word character
1731       during search, so that searching for the word "Nasim" will
1732       also match in "Nasim's".
1735 *** Misc
1736     
1737     - Inheritance of tags can now be limited to a subset of all
1738       tags, using the variable =org-use-tag-inheritance=.  This
1739       variable may now be a regular expression or a list to
1740       select the inherited tags.  Thanks to Michael Ekstrand for
1741       this excellent proposal.
1742       
1743       The regexp option is also implemented for
1744       =org-use-property-inheritance=, so that you can now select
1745       properties for inheritance my name.
1747     - The INHERIT flag to the function =org-entry-get= can be set
1748       to the symbol =selective=.  If this is the case, then the
1749       value of the property will be retrieved using inheritance
1750       if and only if the setting in
1751       =org-use-property-inheritance= selects the property for
1752       inheritance.
1754     - There are now special faces for the date lines in the
1755       agenda/timeline buffers, and another special face for days
1756       that fall on a weekend: =org-agenda-date= and
1757       =org-agenda-date-weekend=.  Both these faces are initially
1758       similar to the =org-agenda-structure= face, but you can
1759       customize them freely.
1761     - When an entry already has a scheduling or deadline time
1762       stamp, calling `C-c C-s' or `C-c C-d', respectively, will
1763       now use that old date as the default, and you can can use
1764       the "++4d" syntax to invoke shifts relative to that default
1765       date.  Simply pressing RET at the prompt will keep the
1766       default date, not switch to today.
1767       
1768       This was an omission in the earlier implementation, spotted
1769       by Wanrong Lin.  Thanks!
1770       
1771     - File names in remember templates can be relative, if they
1772       are, they will be interpreted relative to =org-directory=.
1774     - The handling of the clipboard when inserting into remember
1775       templates is now much better, and gives more control on what
1776       should be inserted with new %-escapes:
1777       
1778       - =%c= - Now always insert the head of the kill ring, never
1779         the X clipboard.
1781       - =%x= - Insert the content of the X clipboard. This is the
1782         first non-empty value from the PRIMARY, SECONDARY and
1783         CLIPBOARD X clipboards. 
1784         
1785       - =%^C= - This allows the user to choose between any of the
1786         clipboard values available, the kill ring head, and the
1787         initial region if set.  
1788         
1789       - =%^L= - Like =%^C=, but this inserts an org link using the
1790         selected value.
1791         
1792       Thanks to James TD Smith for this patch.
1793         
1794     - Table export to an internal file can now use a format
1795       specification, similar to the formats that are used by
1796       orgtbl radio tables.  The default format is in the variable
1797       =org-table-export-default-format=.  You can use properties
1798       =TABLE_EXPORT_FILE= and =TABLE_EXPORT_FORMAT= to specify the
1799       file name to which the export should go, and a local
1800       format.  For example:
1801      
1802       : :PROPERTIES:
1803       : :TABLE_EXPORT_FILE: ~/xx.txt
1804       : :TABLE_EXPORT_FORMAT: orgtbl-to-generic :splice t :sep "\t"
1805       : :END:
1807       Thanks to James TD Smith for this patch.
1809     - Entries can be sorted by TODO keyword, and the order is given
1810       by the definition sequence of the TODO keywords in the
1811       variable =org-todo-keywords=, or in the =#+TODO= line.  Use
1812       the "o" key when sorting with =C-c ^=.
1813       
1814       Thanks to James TD Smith for this patch.
1817 * Version 5.23
1819 ** Overview
1821    - New keyword search agenda view
1823    - Many new extensions available in the CONTRIB directory
1825    - New remember template option: pre-selection contexts
1827    - Modifying list/headline status of a line
1829    - Granularity while editing time stamps
1831    - New repeaters mechanisms
1833    - New parameters for dynamic blocks ad the clock table
1835    - Limiting iCalendar export to fewer entries
1837    - =M-RET= splits lines again
1839    - New hooks
1841 ** Incompatible changes
1843    - The variable `org-time-stamp-rounding-minutes' is now a list
1844      of two values - if you have configured this variable before,
1845      please do it again.
1847 ** Details
1849 *** New keyword search agenda view
1851     `C-c a s' now invokes a special agenda view that can be used
1852     to search notes by keyword and regular expressions.  In
1853     particular, it does not require a single regular expression
1854     or string to search for, but it can search for a number
1855     keywords or regexps that can occur in arbitrary sequence in
1856     the entry.  The search knows the boundaries of an entry, can
1857     use simple Boolean logic and is reasonably fast.  For
1858     example, the search string
1860     : +computer +wifi -ethernet -{8\.11[bg]}
1862     will search for note entries that contain the keywords
1863     =computer= and =wifi=, but not the keyword =ethernet=, and
1864     which are also not matched by the regular expression
1865     "8\.11[bg]", meaning to exclude both 8.11b and 8.11g.  If the
1866     first character of the search string is an asterisk, the
1867     search will only look at headlines - otherwise it will look
1868     at the headine and the text below it, up to the next
1869     (possibly sub-) heading.
1871     The command searches all agenda files, and in addition the
1872     files listed in =org-agenda-text-search-extra-files=.
1873     
1874     I find it very useful to define a custom command to do such
1875     a search only in a limited number of files (my notes files),
1876     like this:
1878     : ("N" "Search notes" search ""
1879     :   ((org-agenda-files '("~/org/notes.org" "~/org/computer.org"))
1880     :    (org-agenda-text-search-extra-files nil)))
1882 *** Many new extensions available in the CONTRIB directory
1884     - Phil Jackson's /org-irc.el/ is now part of the Org-mode
1885       core, which means it will become part of Emacs soon.
1887     - The new development model already starts to pay off, a
1888       number of interesting extensions are now part of the
1889       distribution.  Check the file CONTRIB/README for a list.
1891     - There is a new variable `org-default-extensions'.
1892       Configuring this variable makes it *very* easy to load
1893       these default extensions - eventually this will be expanded
1894       to cover contributed extensions as well.
1896 *** New remember template option: pre-selection contexts
1898     - Remember template definitions now allow six elements.  The
1899       last element defines the contexts in which the template
1900       should be offered.  It can be a list of major modes, a
1901       function, =t= or =nil=.  If it is a list of major-mode, the
1902       template will be available only when =org-remember= is
1903       called from a buffer in one of these modes.  If it is a
1904       function, the template will be offered only if the function
1905       returns `t' when called in the current buffer.  A value of
1906       =t= or =nil= for this element means select this template in
1907       any context.
1909       One possible application for this would be to have several
1910       templates all using the same selection letter, and choosing
1911       the right one based on context.  For example, think of
1912       tasks describing a bug in a source code file.  With the
1913       following configuration we make sure that the bug reports
1914       are filed into the appropriate sections of the target file.
1915       
1916 : (setq org-remember-templates
1917 :  '(("Elisp" ?b "* %a\n\n%i%?" "~/bugs.org" "Elisp bugs" (emacs-lisp-mode))
1918 :    ("C Bugs" ?b "* %a\n\n%i%?" "~/bugs.org" "C bugs" (cc-mode))))
1919      
1920       See (info "(org)Remember templates") for details.
1922 *** Modifying list/headline status of a line
1924     - `C-c -' has now more functions:
1925       + In a table, add a hline as before
1926       + In an item list, cycle bullet type as before
1927       + In a normal line, turn it into an item
1928       + In a headline, turn it into an item
1929       + If there is an active region, turn each line into an item.
1930         But if the first region line is already an item, remove
1931         item markers from all lines.
1933       Based on proposals by Bastien.
1935     - `C-c *' has now more functions
1936       + in a table, recompute, as before
1937       + in a normal line, convert it to a sub heading.
1938       + at an item, convert it into a subheading
1939       + if there is an active region, convert all lines in the
1940         region to headlines.  However, if the first lie already is
1941         a heading, remove the stars from all lines int he region.
1943       Based on proposals by Bastien.
1945 *** Changes related to time stamps
1947     - The value variable =org-time-stamp-rounding-minutes= is now
1948       a list of two values.  The first applies when creating a new
1949       time stamp.  The second applies when modifying a timestamp
1950       with S-up/down.  The default for this new task is 5 minutes,
1951       but 15 may also be a very good value for many people.  If
1952       S-up/down is used on a time stamp where the minute part is
1953       not compatible with this granularity it will be made so.
1954       You can bypass this by using a prefix argument to exactly
1955       specify the number of minutes to shift.
1957       This was a proposal by Adam Spiers.
1959     - New repeaters that shift a date relative to today, or that
1960       make sure that the next date is in the future.  For example:
1962       :** TODO Call Father
1963       :   DEADLINE: <2008-02-10 Sun ++1w>
1964       :   Marking this DONE will shift the date by at least one week,
1965       :   but also by as many weeks as it takes to get this date into
1966       :   the future.  However, it stays on a Sunday, even if you called
1967       :   and marked it done on Saturday.
1968       :** TODO Check the batteries in the smoke detectors
1969       :   DEADLINE: <2005-11-01 Tue .+1m>
1970       :   Marking this DONE will shift the date to one month after
1971       :   today.
1973       Proposed by Wanrong Lin and Rainer Stengle.
1975 *** New parameters for dynamic blocks ad the clock table
1977     - There is a new =:link= parameter for the clocktable.  When
1978       set, the headlines listed in the table will be links to the
1979       original headlines.
1981     - There is a new =:content= parameter that is passed to the
1982       writer function of the dynamic block.  Use this parameter
1983       to pass the previous content of the block to the writer
1984       function, in case you want to make the outcome dependent on
1985       the previous content.
1987 *** Limiting iCalendar export to fewer entries
1989     - New way to limit iCalendar export to the entries captured in
1990       an agenda view.  This is done by "writing" the agenda view
1991       using `C-x C-w' to a file with extension .ics.
1993       This was a request by Kyle Sexton.
1995 *** Misc
1997    - Due to a popular revolt shortly after the 5.22 release,
1998      =M-RET= can again be used to split a line so that the rest
1999      of the line becomes the new heading.  However, if you do
2000      this in a heading containing tags, the tags will stay in the
2001      old line.
2003      Customize the variable =org-M-RET-may-split-line= if you
2004      don't want this command to split a line in the middle.  The
2005      same variable also influences line splitting in items and in
2006      tables.
2008    - There are three new hooks:
2010      =org-follow-link-hook=: runs after following a link
2011      =org-publish-before-export-hook=: runs before export
2012      =org-publish-after-export-hook=: runs after export
2013      
2014 * Version 5.22
2016 ** Incompatible changes
2018    - The variable `org-log-done' is now less complex.
2019    - The in-buffer settings for logging have changed.  Some
2020      options no longer exists, some new ones have been added.
2022 ** Details
2024 *** Changes to logging progress
2026     There is now more control over which state changes are being
2027     logged in what way.  Please read carefully the corresponding
2028     sections in the manual.  Basically: 
2030     - The variable `org-log-done' has been simplified, it no
2031       longer influences logging state changes and clocking out.
2032     - There is a new variable for triggering note-taking when
2033       clocking out an item: `org-log-note-clock-out'.
2034     - Logging of state changes now has to be configured on a
2035       pre-keyword basis, either in `org-todo-keywords' or in the
2036       #+TODO in-buffer setting.
2037     - These per-keyword settings allow more control.  For example
2039       : WAIT(w@)    Record a note when entering this state.
2040       : WAIT(w!)    Record a timestamp when entering this state.
2041       : WAIT(w@/!)  Recore a note when entering and timestamp
2042       :             when leaving this state.  This is great for
2043       :             getting a record when switching *back* from
2044       :              WAIT to TODO.
2045       : WAIT(/!)    Record a timestamp when leaving this state.
2046       :             Here we not even define a fast access
2047       :             character, but just the logging stuff.
2049     This was triggered by requests from Wanrong Lin and Bernt Hansen.
2051 *** Other
2053    - M-RET no longer brakes a line in the middle, it will make a
2054      new line after the current or (if cursor is at the beginning
2055      of the line) before the current line.
2057    - RET, when executed in a headline after the main text and
2058      before the tags will leave the tags in the current line and
2059      create a new line below the current one.
2061 * Version 5.21
2063   Bug fixes, in particular the long-hunted bug about wrong window
2064   positions after pressing SPACE in the agenda.  Hopefully this
2065   is really fixed.
2067 * Version 5.20
2069 ** Overview
2071 *** Remember/Refile/Goto
2073     - The use of prefix arguments for the commands `org-remember'
2074       and `org-refile' has been normalized.
2076     - The clock can now safely be used in a remember buffer.
2077       
2078     - The variable `org-remember-use-refile-when-interactive'
2079       introduced only in 5.19 is already obsolete.  Please use
2080       `org-remember-interactive-interface' instead.
2082     - It is no longer necessary to update the refiling targets.
2084     - Automatic isearch in `org-goto'.
2086     - Outline-path-completion as alternative org-goto interface.
2088 *** Misc
2090     - Checkboxes now work hierarchically.
2092     - `C-k' can now behave specially in headlines.
2094     - Repeater for tasks in plain timestamps.
2096     - All clock intervals of an item show in agenda/timeline.
2097       
2098     - New parameter =:step= for clocktable, to get daily reports.
2100     - Never loose a repeaded scheduled item from the agenda.
2102     - Archiving a subtree now stores the outline path in a property.
2104     - Links to messages in Apple Mail.
2106     - Bug fixes.
2108 ** Incompatible Changes
2109    
2110    - The variable `org-remember-use-refile-when-interactive'
2111      introduced only in 5.19 is already obsolete.  Please use
2112      `org-remember-interactive-interface' instead.
2114 ** Details
2116 *** Remember/Refile/Goto
2118     - The use of prefix arguments for the commands `org-remember'
2119       and `org-refile' has been normalized:
2121       + when called without prefix argument, the command does its
2122         normal job, starting a remember note or refiling a tree.
2124       + when called with a single C-u prefix, these commands can be
2125         used to select a target location and to jump there.  In
2126         the case of `org-remember', you will be prompted for a
2127         template and then Emacs jumps to the default target
2128         location or this template.  In the case of `org-refile',
2129         you select a location from the refile target list and jump
2130         there.
2132       + when called with two prefixes (`C-u C-u'), the command
2133         jumps to the location last used for storing a note or a
2134         moved tree.
2136     - When the clock is running inside an remember buffer, storing
2137       the remember buffer with `C-c C-c' will automatically clock
2138       out.  This was inspired by a request by Rainer Stengle. 
2139       
2140     - The variable `org-remember-use-refile-when-interactive'
2141       introduced only in 5.19 is already obsolete.  Please use
2142       `org-remember-interactive-interface' instead.  This new
2143       variable does select the interface that is used to select
2144       the target for a remember note in an interactive way.
2145       Possible values are:
2147       + `outline': Use an outline of the document to select a
2148         location.  
2149       + `outline-path-completion': Use completion of an outline
2150         path to select a location.
2151       + `refile': Offer the `org-refile-targets' as possible
2152         targets.
2154     - It is no longer necessary to update the refiling targets -
2155       they are always current.
2157     - In `org-goto', typing characters now automatically starts
2158       isearch from the beginning of the buffer.  The isearch is
2159       special also because it only matches in headline.  This
2160       goes some way toward saving org-goto from being removed
2161       from Org-mode.  Thanks to Piotr Zielinski for the code, and
2162       sorry that it took me so long to put it in.  If you prefer
2163       to use single letters n,p,f,b,u,q for navigation as before,
2164       configure the variable `org-goto-auto-isearch'.
2166     - Outline-path-completion is now available as an alternative
2167       interface in the command `org-goto'.  Please select the
2168       default interface you'd like to use with the new variable
2169       `org-goto-interface'.  You can then select the alternative
2170       interface with a prefix argument to `C-c C-j' (org-goto).  I
2171       am considering to make outline-path-completion the default
2172       interface.  Comments?
2175 *** Misc
2177     - Checkboxes now work hierarchically.  When a plain-list item
2178       with a checkbox has children with checkboxes, the status of
2179       the item's checkbox is calculated from the children, each
2180       time a checkbox is toggled with C-c C-c.  Thanks to Miguel
2181       A. Figueroa-Villanueva for a patch to this effect.
2183     - There is a new variable `org-special-ctrl-k'.  When set,
2184       `C-k' will behave specially in headlines:
2186       + When the cursor is at the beginning of a headline, kill
2187         the entire line and possible the folded subtree below the
2188         line.
2189       + When in the middle of the headline text, kill the
2190         headline up to the tags.
2191       + When after the headline text, kill the tags.
2193       This is following a proposal by Piotr Zielinski.
2195     - You can now also have a plain (as opposed to deadline or
2196       scheduled) repeater timestamp in a task.  Switching the task
2197       to DONE will now also shift a plain time stamp.  This was a
2198       request by Austin Frank.
2200     - If an entry is clocked multiple times, it will now show up
2201       several times in the agenda and timeline buffers, when
2202       log-mode is on.  This was a proposal by Jurgen Defurne.
2203       
2204     - The clock table accepts a new parameter =:step=.  This
2205       parameter can be `day' or `week' and will result in separate
2206       tables for each day or week in the requested time interval.
2207       This was triggered by a proposal by Sacha Chua in her [[http://sachachua.com/wp/2007/12/30/clocking-time-with-emacs-org/][blog]].
2209     - A time-stamp with a repeater now no longer refers to the
2210       date *closest* to the current day.  Instead, it means either
2211       today or the most recent match.  This change makes sure that
2212       overdue scheduled or deadline items never disappear from the
2213       agenda.  With the previous convention, an overdue scheduled
2214       item would disappear.  For example, a weekly item scheduled
2215       for Sunday would appear as overdue until Wednesday, and the
2216       suddenly disappear until next Sunday.  Now the item will
2217       show up as "Sched 7x" on Saturday.  From Sunday on it will
2218       be in the list as "Scheduled", i.e. old sins will be
2219       forgiven.  This follows a request by Warong, Dennis and
2220       Bernt.
2222     - Archiving a subtree now creates an additional property,
2223       =ARCHIVE_OLPATH=.  This property contains the "path" in the
2224       outline tree to the archived entry, as it was in the
2225       original file.  For example, archiving =Fix the door= in the
2226       following hierarchy
2227       
2228       : * Tasks
2229       : ** HOME
2230       : *** Garage
2231       : **** Fix the door
2232       
2233       will file is with the following property
2234       
2235       : :ARCHIVE_PATH: Task/HOME/Garage
2236       
2237       Note that you can configure (i.e. limit) the information
2238       that gets stored upon archiving with the variable
2239       `org-archive-save-context-info'.
2241     - New file `org-mac-message.el' by John Wiegley to create
2242       links for messages in Apple Mail, and to follow these
2243       links.
2245     - Bug fixes.
2247 * Version 5.19
2249 ** Overview
2251    - Column view can list the clocked times of a subtree.
2253    - Storing remember notes can use the `org-refile' interface.
2255    - Storing remember notes no longer produced empty lines.
2257    - Moving subtrees now folds all siblings of the subtree.
2259    - New variable `org-agenda-todo-keyword-format'.
2261    - Hack to allow brackets in link descriptions.
2263    - Clocking into an entry can enforce a specific TODO state.
2265    - EXPORT_FILE_NAME may be an absolute file name with "~".
2267    - Bug fixes, lots of them.
2269 ** Details
2271    - A new special column definition lists the sum of all CLOCK
2272      entries in a subtree.  For example
2274      : #+COLUMNS: %20ITEM %10Time_Estimate{:} %CLOCKSUM
2276      will allow you to compare estimated times (as given in the
2277      Time_Estimate property) with the clocked times.  This was a
2278      request by Bernt Hansen.
2280    - Storing remember notes can now use the `org-refile'
2281      interface instead of the `org-goto' interface (see the
2282      variable `org-remember-use-refile-when-interactive').
2283      Nothing will change if the note is stored immediately after
2284      pressing `C-c C-c' in the =*Remember*= buffer.  But if you
2285      have chosen (e.g. by pressing `C-u C-c C-c') to
2286      interactively select the filing location (file and
2287      headline), the refile interface will be used instead.  I am
2288      excited about this change, because the `org-goto' interface
2289      is basically a failure, at least for this application.  Note
2290      that in any case the refile interface has to be configured
2291      first by customizing `org-refile-targets'.
2293    - Notes inserted with remember now remove any whitespace
2294      before and after the note before being pasted, so that there
2295      will be no empty lines inserted together with the note.  We
2296      could invent special syntax in remember templates to allow
2297      creating empty lines before a note - is there anyone who'd
2298      want this?
2300    - Moving subtrees now folds all siblings of the subtree.  This
2301      is the only reasonably simple way I could find to avoid the
2302      reported inconsistencies in the folding state of the outline
2303      tree after moving entries.  There are reasons to like this
2304      new behavior, because it easily visualizes where the tree is
2305      located after the move.  Still, not everyone might be happy
2306      with this.  Massive complaining would be needed to make me
2307      fix this.
2309    - New variable `org-agenda-todo-keyword-format' to specify the
2310      width of the TODO keyword field in the agenda display.  Use
2311      it to get things to line up better.  This was a proposal by
2312      Rainer Stengele.
2314    - If a link description inserted with `C-c C-l' contains
2315      brackets, the brackets will now be converted into curly
2316      braces.  This looks similar enough.  Supporting brackets in
2317      link descriptions is, for technical reasons too long to
2318      explain here, complex.
2320    - The new option `org-clock-in-switch-to-state' can be set to
2321      a TODO state that will be enforced when the clock is started
2322      on an entry.  This follows an idea by Sacha Chua.
2324    - The EXPORT_FILE_NAME property may now also be an absolute
2325      file name, and it may contain abbreviations like "~" for the
2326      users home directory.  This was requested by Adam Spiers.
2328    - Bug fixes, lots of them.
2330 * Version 5.18
2332   Minor fixes.
2334 * Version 5.17
2336 ** Details
2338 *** Whitespace
2340     - When cutting, pasting, or moving subtrees and items, the
2341       empty lines *before* the subtree/item now belong to the
2342       part and will be moved with it.  There is one exception to
2343       this rule: If the first child is moved down (or,
2344       equivalently, the second is moved up), the amount of empty
2345       lines *above* the first child to be moved along with it is
2346       limited by the number of empty lines *below* it.  This
2347       sounds complicated, but it allows to have extra empty space
2348       before the first child and still have good behavior of the
2349       subtree motion commands.
2351     - Plain lists items work the same.
2353     I believe we have finally nailed this one.  Thanks to Daniel
2354     Pittman for bring this up again and to Eric Schulte for
2355     pointing out that it is the empty lines *before* an entry
2356     that really count.
2358     This change was non-trivial, please give it a good test and
2359     let me know about any problems.
2361 *** Remember
2363     - The new command `org-remember-goto-last-stored' will jump
2364       to the location of the remember note stored most recently.
2365       If you have `org-remember' on a key like `C-c r', then you
2366       can go to the location with a double prefix arg: `C-u C-u
2367       C-c r'.  This was a proposal by Rainer Stengele.
2369     - Template items that are being prompted for can now specify
2370       a default value and a completion table.  Furthermore,
2371       previous inputs at a specific prompt are captured in a
2372       history variable.  For example:
2374       : %^{Author|Roald Dahl|Thomas Mann|Larry Niven}
2376       will prompt for an author name.  Pressing RET without
2377       typing anything will select "Roald Dahl".  Completion will
2378       give you any of the three names.  And a history will be
2379       kept, so you can use the arrow keys to get to previous
2380       input.  The history is tied to the prompt.  By using the
2381       same prompt in different templates, you can build a history
2382       across templates.  The ideas for this came from proposals
2383       by Bastien and Adam.
2385     - When a remember template contains the string `%!', the note
2386       will be stored immediately after all template parts have
2387       been filled in, so you don't even have to press `C-c
2388       C-c'. The was a proposal by Adam Spiers.
2390 *** Refile
2392     - `org-refile-targets' has a new parameter to specify a
2393       maximum level for target selection.  Thanks to Wanrong Lin
2394       for this proposal.
2396     - When the new option `org-refile-use-outline-path' is set,
2397       refile targets will be presented like a file path to the
2398       completion interface: "level 1/level 2/level 3".  This
2399       may be the fastest interface yet to get to a certain
2400       outline entry.  Do we need to use this interface in other
2401       places?  Thanks to Jose Ruiz for this proposal.
2403 * Version 5.16
2405 ** Details
2407 *** Restriction lock on agenda scope
2409     You can now permanently lock the agenda construction to a
2410     certain scope, like a file or a subtree.  So instead of
2411     pressing "<" for each command in the agenda dispatcher, you
2412     only once select a restriction scope.  All subsequent agenda
2413     commands will than respect this restriction.  For example,
2414     you can use this at work, to limit agendas to your work file
2415     or tree, and at home to limit to the home file or tree.  Or
2416     you can use it during the day in order to focus in on certain
2417     projects.
2419     You select a scope with the command `C-c C-x <', which
2420     restricts to the current subtree.  When called with a `C-u'
2421     prefix, the restriction is to the current file.  You can also
2422     make restrictions from the speedbar frame, see below.
2424     When making a new restriction and an agenda window is
2425     currently visible, it will immediately be updated to reflect
2426     the new scope.  If you like you can display an agenda view
2427     and then watch it change in various scopes.
2429     To get rid of the restriction, use the command "C-c C-x >".
2430     Or press ">" in the agenda dispatcher.  Also, and use of "<"
2431     in the dispatcher will disable the restriction lock and
2432     select a new restriction.
2434     Thanks to Rick Moynihan for triggering this development. 
2436 *** Imenu and Speedbar support
2438     - Org-mode now supports Imenu.  For example, with the setting
2440       : (add-hook 'org-mode-hook 
2441       :    (lambda () 'imenu-add-to-menubar "Imenu"))
2443       a menu will be created in each Org-mode buffer that
2444       provides access to all level 1 and level 2 headings.  The
2445       depth of the menu can be set with the variable
2446       `org-imenu-depth'.
2448     - org-mode now supports Speedbar.  This means that you can
2449       drill into the first and second level headlines of an
2450       Org-mode file right from the speedbar frame.
2452     - You can set a restriction lock for the Org-mode agenda to a
2453       file or a subtree directly from the speedbar frame.  Just
2454       press "<" with the cursor on an Org-mode file or subtree to
2455       set the lock and immediately update the agenda if it is
2456       visible.  Use ">" to get rid of the lock again.
2458 * Version 5.15
2460 ** Details
2462    - There are new special properties TIMESTAMP and TIMESTAMP_IA.
2463      These can be used to access the first keyword-less active
2464      and inactive timestamp in an entry, respectively.
2466    - New variable `org-clock-heading-function'.  It can be set to
2467      a function that creates the string shown in the mode line
2468      when a clock is running.  Thanks to Tom Weissmann for this
2469      idea.
2471    - Bug fixes.
2473 * Version 5.14
2475 ** Overview
2477    + Remember and related stuff
2478      - New command `org-refile' to quickly move a note.
2479      - Easy way to jump to the target location of remember template.
2480      - New %-escapes in remember templates: %c %(...) and %[...]
2481      - `org-remember-insinuate' simplifies remember setup
2483    + Emphasis and Font-lock stuff
2484      - Stacked emphasis is no longer allowed.
2485      - You may finally emphasize a single character like ~*a*~.
2486      - Font-lock now can hide the emphasis markers
2487      - Text in the "=" emphasis is exported verbatim
2488      - There is a new emphasis marker "~" for verbatim text
2489      - Constructs treated specially by the exporters can be highlighted
2491    + Properties and Column view
2492      - More control over which properties use inheritance
2493      - CATEGORY="work" can now be used in a tags/property search
2494      - the {+} summary type can specify a printf-style output format
2495      - New currency summary type {$}
2497    + The date/time prompt
2498      - While entering data, watch live the current interpretation.
2499      - The date prompt now prefers to select the future
2500      - Easier modification of time in an existing time stamp.
2502    + Export
2503      - You can now export some special strings in HTML, like "..."
2504      - #+EMAIL: may contain several email addresses
2506    + Agenda
2507      - In the agenda, a few keys have changed: `g', `G', and `e'.
2509    + Miscellaneous
2510      - Class-dependent sectioning structures in LaTeX export.
2511      - Radio-lists modeled after the radio tables.
2512      - The default for `org-ellipsis' is back to nil
2513      - Support for pabbrev-mode
2514      - New variable `org-show-entry-below'.
2516 ** Incompatible changes
2518    - If you have customized the variable `org-emphasis-alist' or
2519      org-export-emphasis-alist', you need to do it again by first
2520      canceling your customization and then adding it again.
2522    - I know that some people have defined their own private helper
2523      functions to select a specific remember template, without being
2524      prompted, like this:
2526      : (defun my-remember-template-n ()
2527      :    (interactive)
2528      :    (org-remember ?n))
2530      You need to modify this.  The character selecting the template
2531      must now be the /second/ argument to `org-remember':
2533      : (defun my-remember-template-n ()
2534      :    (interactive)
2535      :    (org-remember nil ?n))
2537    - `C-c C-w' now refiles an entry.  To get a sparse tree of
2538      deadlines, use `C-c / d' instead.
2540 ** Details
2542 *** Remember and related stuff
2544     - New command `org-refile' to quickly move a note to a
2545       different place.  It is bound to `C-c C-w'.  The foremost
2546       application might be to put a note or task captured with
2547       `remember' into the proper list or project.  The command
2548       offers a list of possible refiling targets for completion.
2549       These are headings under which the entry will be inserted
2550       as a subitem.  By default, this will offer all top-level
2551       headings in the current buffer, but you can configure the
2552       variable `org-refile-targets' to get more complex
2553       definitions.  For example:
2555       : (setq org-refile-targets '((nil . (:level . 2))))
2557       selects all level 2 headlines in the current buffer as
2558       targets.  And
2560       : (setq org-refile-targets
2561       :      '((org-agenda-files . (:tag . "refile"))))
2563       searches all agenda files and selects headlines that are
2564       explicitly marked with the tag :refile: .  Note that the
2565       list of targets is built upon first use only, to rebuilt
2566       it, call the command `C-c C-w' with a double prefix
2567       argument.
2569       This is based on an idea and example implementation by Max
2570       Mikhanosha.  Many thanks Max.
2572     - You can now use a C-u prefix on `org-remember' to jump to
2573       the location where a specific templates stores its notes.
2574       For example, if you have `org-remember' bound to `C-c r',
2575       then `C-u C-c r n' will get you to the file and headline
2576       given in the template associated with the letter "n".
2578       This was proposed by someone, but I have lost track who.
2579       Sorry, and thanks anyway.
2581     - New %-escapes in remember templates:
2583       : %c     insert the current clipboard, like C-y would do
2584       : %(..)  evaluate Lisp expression and insert the result
2585       : %[..]  include file
2587       Thanks to Adam Spiers and Tim O'Callaghan.
2589     - New function `org-remember-insinuate' that makes is easier
2590       to set Org-mode specific values for remember variables.
2591       Thanks to Michael Olson for this proposal.  It is
2592       equivalent to:
2594       : (require 'remember)
2595       : (setq remember-annotation-functions '(org-remember-annotation))
2596       : (setq remember-handler-functions '(org-remember-handler))
2597       : (add-hook 'remember-mode-hook 'org-remember-apply-template))
2599       You might still want to set `org-default-notes-file' to
2600       provide a default for templates without a file, and
2601       `org-directory' to show where to find other org files.
2603 *** Emphasis and Font-lock stuff
2605     - Stacked emphasis like ~*/bold italic/*~ is no longer allowed.
2607     - You may finally emphasize a single character like ~*a*~.
2609     - Font-lock now can hide the emphasis markers, just like Muse
2610       does.  Configure the variable `org-hide-emphasis-markers'
2611       if you want this.  Showing the characters continues to be
2612       the default in Org-mode.
2614     - Text in the "=" emphasis is now exported verbatim, i.e. no
2615       further parsing and interpretation of this text takes place.  So
2616       you can write ~=quoted *xxx* a_x = b=~.  This and the following
2617       point implement a request by Daniel Clemente.
2619     - There is a new emphasis marker "~" which marks text to be
2620       exported verbatim, without special formatting.  Inside an
2621       org-mode file, this text is highlighted with the org-verbatim
2622       face.  I am not happy with the face yet (currently is is like
2623       org-code, but underlined), please suggest a better one.
2625     - Whether an emphasis environment is verbatim or not is now an
2626       extra flag in the variable `org-emphasis-alist'.  If you have
2627       configured this variable, do it again by first canceling your
2628       customization to revert to the default, and then adding it
2629       again.
2631     - New variable `org-highlight-latex-fragments-and-specials'.
2632       When turned on, Org-mode will highlight all strings that
2633       are treated in a special way by the exporters.  This is
2634       great for export-oriented writing, but maybe a bit noisy
2635       for note taking, so this feature is off by default.
2637 *** Properties and Column view
2639     - `org-use-property-inheritance' may now also be a list of
2640       property names that should be treated with inheritance
2641       during searches.
2643     - CATEGORY="work" can now be used in a tags/property search,
2644       even if the category is not specified as a property in the
2645       entry, but rather is inherited or derived from #+CATEGORY.
2646       Thanks to Adam, Tim, and Bastien for an interesting
2647       discussion around this issue.
2649     - Summary type improvements in column view.
2650       * The {+} summary type can specify a printf-style output
2651         format for computed values like this: {+;%5.2f}
2652         This was triggered by a report by Levin.
2653       * New currency summary type {$}, which so far is just a
2654         shorthand for {+;%.2f}.  Do we need to have a currency
2655         symbol in front of each value.  Scott Jaderholm asked for
2656         this, but I am not sure if this is already what he meant.
2658 *** The date/time prompt
2660     There have been several small but *very* useful additions to
2661     the date prompt.
2663     - While entering data at the date prompt, the current
2664       interpretation of your input is shown next to your input in
2665       the minibuffer.  I find this great to understand how the
2666       input works.  If you find the extra stuff in the minibuffer
2667       annoying, turn it off with `org-read-date-display-live'.
2669     - The date prompt now prefers to select the future.  If you
2670       enter a date without a month, and the day number is before
2671       today (for example, on the 16th of the month you enter
2672       "9"), Org-mode will assume next month.  Similarly, if you
2673       enter a month and no year, next year will be assumed if the
2674       entered month is before the current, for example if you
2675       enter "May" in September.  Thanks to John Rakestraw for
2676       this great suggestion.  If you find it confusing, turn it
2677       off with `org-read-date-prefer-future'.
2679     - When modifying an existing date using `C-c .' at the stamp,
2680       the time or time range in the stamp are now offered as
2681       default input at the prompt.  This goes a long way to
2682       simplifying the modification of an existing date.  Thanks
2683       to Adam Spiers for this proposal.
2685 *** Export (all implemented by Bastien...)
2687     - You can now export special strings in HTML.  Here is the
2688       list of newly performed conversions:
2690       | Org | Description                        | HTML     |
2691       |-----+------------------------------------+----------|
2692       | ~\\-~ | double backslash followed by minus | &shy;    |
2693       | ~--~  | two dashes (minuses)               | &ndash;  |
2694       | ~---~ | three dashes (minuses)             | &mdash;  |
2695       | ~...~ | three dots                         | &hellip; |
2697       You can turn this globally on or off with
2698       `org-export-with-special-strings' or locally with "-:t" or
2699       "-:nil" in the #+OPTIONS line.  Thanks to Adam Spiers for
2700       starting the discussion, and thanks to Daniel Clemente and
2701       William Henney for relevant inputs.
2703     - Comma-separated emails in #+EMAIL: are correctly exported.
2704       Thanks to Raman for pointing out this omission.
2706 *** Agenda
2708     - In the agenda, a few keys have changed
2709       : g  does now the same a "r", refresh current display,
2710       :    because "g" is the Emacs standard for "refresh"
2711       : G  toggle the time grid, used to be "g"
2712       : e  Execute another agenda command, pretty much the same as
2713       :    `C-c a', but shorter and keep the same agenda window.
2715 *** Miscellaneous (much of it from Bastien)
2717     - You can now select the sectioning structure of your LaTeX
2718       export by setting it either globally
2719       (`org-export-latex-default-class') or locally in each Org
2720       file (with #+LaTeX_CLASS: myclass).  You can also customize
2721       the list of available classes and their sectioning
2722       structures through the new `org-export-latex-classes'
2723       option.  Thanks to Daniel for discussions and suggestion on
2724       this issue.
2726     - You can send and receive radio lists in HTML,
2727       LaTeX or TeXInfo, just as you send and receive radio
2728       tables.  Check the documentation for details and examples.
2730     - The default for `org-ellipsis' is back to nil, some people
2731       seem to have had problems with the face as a default.
2733     - Support for pabbrev-mode, needs pabbrev version 1.1.  Thanks
2734       to Phillip Lord for adapting his package to make this
2735       possible.
2737     - New variable `org-show-entry-below' to force context-showing
2738       commands to expose the body of a headline that is being
2739       shown.  Thanks to Harald Weis for pointing out this omission.
2742 * Version 5.13i
2744 ** Details
2746    - On the date/time prompt, you can now also answer with
2747      something like +2tue to pick the second tuesday from today.
2748      This was a proposal by Sacha Chua.
2750    - When interpopating into Lisp formulas in the spreadsheet,
2751      the values of constants and properties are no longer
2752      enclosed into parenthesis.  When interpolating for calc,
2753      this still happens in order to allow expressions in
2754      constants.  This problem was reported by Eddward DeVilla.
2756    - When a directory is listed in `org-agenda-files', all files
2757      with extension matched by the new variable
2758      `org-agenda-file-regexp' in that directory will be agenda
2759      files.
2761    - Bug fixes.
2763 * Version 5.13
2765 ** Overview
2767    - Bug fixes and improvements in column view
2768      + All known bugs fixed.
2769      + A Column view can be captured into a dynamic block.
2770      + The ITEM column is formatted core compactly.
2771      + Also ITEM can be edited with `e'
2773    - The agenda dispatcher
2774      + `<' cycles through restriction states.
2775      + Multi-character access codes to commands (= sub-keymaps).
2777    - Sorting improvements
2778      + User-defined sorting keys.
2779      + Sorting by properties.
2780      + Sorting of plain lists.
2782    - HTML <div> structure
2784    - Other stuff
2785      + New variables, several of them.
2786      + Drawers can be set on a per-file basis.
2787      + Better control over priority fontification in agenda.
2788      + M-up and M-down now move the current line up and down.
2789      + Abort remember template selection with C-g.
2791 ** Details
2793 *** Bug fixes and improvements in column view
2795     - All the bugs described by Scott Jaderholm have been fixed
2796       (at least I hope so...).
2798     - You can now capture a column view into a dynamic block, for
2799       exporting or printing it.  The column view can be
2801       + global, i.e. for the entire file
2802       + local, i.e. for the subtree where the dynamic block is
2803       + from an entry with a specific :ID: property.
2805       You can identify the entry whose column view you want to
2806       capture by assigning an :ID: property, and use that property
2807       in the dynamic block definition.  For example:
2809       : * Planning
2810       :   :PROPERTIES:
2811       :     :ID: planning-overview
2812       :   :END:
2813       :
2814       : [...]
2815       :
2816       : * The column view
2817       : #+BEGIN: columnview :hlines 1 :id "planning-overview"
2818       :
2819       : #+END:
2821       Use `C-c C-x r' to insert such a dynamic block, and you will
2822       be prompted for the ID.
2824     - When the current column format displays TODO keyword,
2825       priority or tags, these parts are stripped from the content
2826       of the ITEM column, making for more compact and readable
2827       entries.  When any of these "properties" are not listed in
2828       the current column format, they are instead retained in the
2829       ITEM column.
2831     - You can now also edit the ITEM column with `e'.
2833 *** The agenda dispatcher
2835     - Instead of pressing `1' to restrict an agenda command to
2836       the current buffer, or `0' to restrict it to the current
2837       subtree or region, you can now also press `<' once or
2838       twice, respectively.  This frees up `1' and `0' for user
2839       commands, a request by Bastien.  In fact, "<" cycles
2840       through different restriction states.  "1" and "0" are
2841       still available for backward compatibility, until you bind
2842       them to custom commands.
2844     - The access code to custom agenda commands can now contain
2845       several characters, effectively allowing to bundle several
2846       similar commands into a sub-keymap.  This follows an
2847       excellent proposal by Adam Spiers.  For example:
2849       : (setq org-agenda-custom-commands
2850       :   '(("h" . "HOME + Name tag searches") ; describe prefix "h"
2851       :     ("hl" tags "+HOME+Lisa")
2852       :     ("hp" tags "+HOME+Peter")
2853       :     ("hk" tags "+HOME+Kim")))
2855     - The user function option in org-agenda-custom-commands may
2856       now also be a lambda expression, following a request by
2857       Adam Spiers.
2859 *** Sorting improvements
2861     We are using a new routine for sorting entries, courtesy of
2862     John Wiegley.  Many thanks to John.
2864     - You can define your own function to extract a sorting key
2865       and in this way sort entries by anything you like.
2867     - Entries can now be sorted according to the value of a
2868       property.
2870     - Plain lists can be sorted.
2872 *** HTML <div> structure
2874     There is now a <div>-based structure in exported HTML.
2876     - The table of context is wrapped into a div with a class
2877       "table-of-contents".
2879     - The outline structure is embedded in <div> elements with
2880       classes "outline-1", "outline-2" etc.
2882     - The postamble, containing the author information and the
2883       date is wrapped into a div with class "postamble".
2885     I am not sure if the class names are the best choice, let me
2886     know if there are more "canonical" choices.
2888     Thanks to Mike Newman and Cezar for input, and in particular
2889     to Mike for his clearly formulated specification.
2891 *** Other stuff
2893     - New variable `org-agenda-window-frame-fractions' to
2894       customize the size limits of the agenda window in the case
2895       that you display the agenda window by reorganizing the
2896       frame.
2898     - Drawers can be set on a per-file basis using
2900       : #+DRAWERS: HIDDEN STATE PROPERTIES
2902       This will define the drawers :HIDDEN: and :STATE:.
2903       The :PROPERTY: drawer should always be part of this list, or
2904       your properties will not be folded away.
2905       Thanks to Richard G. Riley for this proposal.
2907     - `org-agenda-fontify-priorities' may now also be an
2908       association list of priorities and faces, to specify the
2909       faces of priorities in the agenda individually.
2911     - The variable `org-export-with-property-drawer' no longer
2912       exists, please use `org-export-with-drawers' instead.  Also,
2913       the corresponding switch in the #+OPTIONS line has changed
2914       from "p" to "d".  Thanks to Bastien for pointing out that we
2915       needed to handle not only the property drawer.
2917     - M-up and M-down now move the current line up and down (if
2918       not at a headline, item or table).  Among other things you
2919       can use this to re-order properties in the drawer.  This was
2920       a proposal by Bastien.
2922     - New variable `org-agenda-todo-ignore-with-date', based on a
2923       request by Wanrong Lin.
2925     - Aborting remember template selection with C-g now kills the
2926       remember buffer and restores the old window configuration.
2927       This was a request by Nuutti Kotivuori.
2929 * Version 5.12
2931 ** Overview
2933    - Remember templates can now have name.
2934    - `C-c C-k' will abort taking a note (remember of log)
2935    - `C-c C-x C-w' and `C-c C-x M-w' now accept a prefix arg.
2936    - Lines in the agenda can be fontified according to priority.
2937    - New variable `org-scheduled-past-days'.
2938    - New variables `org-agenda-deadline-leaders' and
2939      `org-agenda-scheduled-leaders'.
2940    - New sparse tree function `org-sparse-tree'.
2941    - The variable `org-ellipsis' now defaults to `org-link'.
2942    - The #+OPTIONS line has a new option "tags".
2943    - New variable `org-use-property-inheritance'.
2945 ** Incompatible Changes
2947    - `C-c /' now calls `org-sparse-tree'.
2949 ** Details
2951    - Remember templates can now have a template name as the first
2952      element.  The name will be listed along with the selection
2953      character when prompting for a template.  It is best to have
2954      the name start with the selection character, for example if
2955      you use ("Note" "n"), you will be prompted like "[n]ote".
2956      Thanks to Matiyam for this proposal.
2958    - `C-c C-k' will abort taking a note.  You can use this in remember
2959      buffers and when taking a logging note (e.g. for a state
2960      change).  Thanks to Bastien.
2962    - `C-c C-x C-w' and `C-c C-x M-w' now accept a prefix arg to
2963      cut N sequential subtrees.  This was a proposal by John.
2965    - Lines in the agenda are now bold if they have priority A and
2966      italic if they have priority C.  You can turn this off using
2967      the variable `org-agenda-fontify-priorities'.  Thanks to
2968      John Wiegley for the idea and code.
2970    - New variable `org-scheduled-past-days' to set the number a
2971      scheduled item will be listed after its date has passed.
2972      Default is 10000, i.e. indefinitely.
2974    - New variables `org-agenda-deadline-leaders' and
2975      `org-agenda-scheduled-leaders' to adjust the leading text o
2976      scheduled items and deadline in the agenda.  Thanks to John
2977      Wiegley for a patch.
2979    - New sparse tree function `org-sparse-tree'.  This is now the
2980      default binding for `C-c /'.  It requires one additional
2981      keypress to select a command, but in return is provides a
2982      single interface to all the different sparse tree commands,
2983      with full completion support.
2985    - The variable `org-ellipsis' now defaults to the face
2986      `org-link' because the visibility of the dots is really bad
2987      and I have found this change very useful indeed.
2989    - The #+OPTIONS line has a new option "tags" which can be used
2990      to set `org-export-with-tags'.  Thanks to Wanrong Lin for
2991      this proposal.
2993    - New variable `org-use-property-inheritance'.  Configure it
2994      to `t' if you want that searching for entries with certain
2995      properties always should assume inheritance.  This is not
2996      well tested yet, please check it out.
2998    - Bug fixes
3000 * Version 5.11
3002 ** Overview
3004    - SUMMARY, DESCRIPTION, LOCATION properties for iCalendar
3005    - Command to jump to the running clock
3006    - Clock entries can now have their own drawer
3007    - `C-c C-x C-r' only updates a clocktable at point
3008    - New way to assign a remember template to a single key
3009    - `C-n' and `C-p' are back to their default binding
3010    - `C-x C-s' in agenda buffer saves all org-mode buffers
3011    - Schedule/deadline leaves note in agenda buffer
3012    - Prefix argument for `C-c C-d/s' will remove date
3013    - New variable to make block aranda more compact
3014    - Better tag alignment in agenda
3016 ** Incompatible changes
3018    - If you have customized `org-drawers', you need to add
3019      "CLOCK" to the list of drawers.
3021    - The variable `org-agenda-align-tags-to-column' has been
3022      renamed to `org-agenda-tags-column'.  The old name is still
3023      an alias, in Emacs 22 and in XEmacs, but not in Emacs 21.
3025    - The default value for both `org-tags-column' and
3026      `org-agenda-tags-column' is now -80.
3028    - The variable
3029      `org-insert-labeled-timestamps-before-properties-drawer'
3030      is now obsolete.
3032 ** Details
3034    - The LOGGING property allows to modify the settings for
3035      progress logging for a single entry.  For example:
3037      : :PROPERTIES:
3038      :   :LOGGING: nologging nologrepeat
3039      : :END:
3041      turns off all progress logging for the current entry and its
3042      children.
3044    - The properties SUMMARY, DESCRIPTION and LOCATION have
3045      special meaning during iCalendar export, when they translate
3046      to the corresponding VEVENT and VTODO fields.  If not given,
3047      Org-ode continues to use cleaned-up version of the headline
3048      and body as the summary and the description, respectively.
3050    - New function to go to the entry with the currently running
3051      clock.  Bound to `C-c C-x C-j', in agenda also to "J".  If
3052      you use this often, you might even want to assign a global
3053      key.  Thanks to Bernt and Bastien.
3055    - Clock entries can now have their own drawer, the :CLOCK:
3056      drawer.  Check out the variable `org-clock-into-drawer' for
3057      configuration of this feature.  The default is to create a
3058      drawer when the second clocking line gets added to an entry.
3059      Note that "CLOCK" has been added to the default value of
3060      `org-drawers', but if you have configured that variable, you
3061      must go back and add "CLOCK" yourself to get this drawer
3062      folded away.  Thanks to Tom Weissman for pointing out that
3063      too many clock entries are visually annoying.
3065    - `C-c C-x C-r' no longer tries to find the first clocktable
3066      in a buffer and then updates it.  Instead, it will update
3067      the clocktable at point if there is one (same as C-c C-c
3068      will do if the cursor is in the "#+BEGIN" line of the
3069      table).  If there is none at point, a new one will be
3070      inserted.  This change was necessary because the new :scope
3071      parameter allows to have several clocktables in a buffer.
3072      Thanks to Bastien for pointing this out.
3073      To update all dynamic blocks in a file, use `C-u C-c C-x C-u'.
3075    - The function `org-remember' can now be called with a
3076      template selection key as argument.  This helps to make key
3077      bindings that go directly to a specific template without
3078      being prompted for a template, like this:
3080      : (global-set-key [f5] (lambda () (interactive) (org-remember "j")))
3082      Thanks to Richard G Riley for bringing this up.
3084    - `C-n' and `C-p' are back to their default binding
3085      (next/previous line) in the agenda buffer.  Enough people,
3086      including recently Denis Bueno, have complained about this,
3087      and I agree it is not good to break habits like that.
3089    - `C-x C-s' in an agenda buffer now saves all org-mode buffers
3090      (also `s' does this).
3092    - Setting schedule or deadline dates from the agenda now
3093      produces a note in the agenda, similarly to what happens
3094      with S-left/right.
3096    - Using a prefix argument for `C-c C-d' or `C-c C-s' will
3097      remove the deadline or scheduling date from an item.  Thanks
3098      to Wanrong Lin for this proposal.
3100    - New variable `org-agenda-compact-blocks'.  When set, the
3101      space between blocks in a block agenda is reduced as much as
3102      possible, to show more items on a single screen.
3104    - The variable `org-agenda-tags-column' (renamed from
3105      `org-agenda-align-tags-to-column') can now also be negative,
3106      to mean alignment to the left.  The new default is -80, just
3107      like it is now for `org-tags-column'.
3109    - Bug fixes
3111 * Version 5.10
3113 ** Overview
3115    - Category and the archive location can be properties.
3116    - The clocktable has a new =:scope= parameter.
3117    - CSV support when importing a table.
3118    - Better defaults when modifying a time stamp.
3119    - New way to specify the duration of an appointment.
3120    - More aggressive version of orgstruct-mode improved wrapping.
3121    - Modifications to priority cycling.
3122    - Modifications to computations in column view.
3123    - New command `org-occur-in-agenda-files'.
3124    - Bug fixes.
3126 ** Details
3128    - Both the category and the archive location in a (sub)tree of
3129      the buffer can now be specified using a property, for
3130      example:
3132      : * Tree with special properties
3133      :   :PROPERTIES:
3134      :     :CATEGORY: Examples
3135      :     :ARCHIVE:  /some/special/file::
3136      :   :END:
3138      This is a much cleaner way of dealing with multiple
3139      categories and archives in a single file.  The preferred use
3140      of the =#+CATEGORY= and =#+ARCHIVE= lines is now to set a
3141      *single* default for the file which is then locally
3142      overruled by properties.  This was a proposal from Bastien
3143      if I remember correctly.  Multiple =#+= lines still work
3144      and I don't plan to remove this support soon, but I
3145      encourage you to stop using them.
3147    - The clocktable has a new =:scope= parameter that determines
3148      the range in the file from which clock entries should be
3149      taken.  This can be anything from the local subtree to the
3150      entire buffer to even the full list of agenda files.  Legal
3151      values are:
3153      | value   | scope                                           |
3154      |---------+-------------------------------------------------|
3155      | nil     | the current buffer or narrowed region           |
3156      | file    | the full current buffer                         |
3157      | subtree | the subtree where the clocktable is located     |
3158      | treeN   | the surrounding level N tree, for example tree3 |
3159      | tree    | the surrounding level 1 tree                    |
3160      | agenda  | all agenda files                                |
3162      Thanks to Jason F. McBrayer and Bernt Hansen for
3163      inspiration.  Thanks to cranreuch (what is you full name?)
3164      for mentioning, at the right moment, that the clocktable is
3165      not so bad - that remark made it seem worthwhile to add
3166      features.
3168    - The commands to import a table and to convert a region to a
3169      table can now handle comma-separated values (CSV).  The
3170      algorithm does not yet treat quoting correctly, but for
3171      basic input it works.
3173    - When modifying an existing time stamp, or when entering the
3174      second stamp of a range, the date prompt will now
3175      consistently default to the date/time in the existing stamp.
3176      This was triggered by Nuutti Kotivuori's request.
3178    - At the date/time prompt, there is a new way to specify a
3179      range of hours, by using "+DURATION" after the time.  For
3180      example:
3182      :  14:00+2  means 14:00-16:00
3183      :  2pm+2:30 means 14:00-16:30
3185      Again, Nuutti Kotivuori's request.
3187    - When you use the function `turn-on-orgstruct++' to turn on
3188      orgstruct-mode, the special org-mode settings for
3189      auto-filling, indentation and paragraphs are exported into
3190      the buffer, so that typing list items with indentation works
3191      better.  This was Bastien's idea and request.
3193    - New variable `org-priority-start-cycle-with-default'.  When
3194      t (the default), priority cycling will initially set the
3195      default priority and then increase or decrease.  When nil,
3196      the first priority set by cycling is already 1 different
3197      from the default priority.  This was mostly driven by
3198      Bastien.
3200    - In column view: When an entry has a property for a summary
3201      column defined, its value is normally overwritten by the sum
3202      of all the children's values each time you enter column
3203      view.  Now there is an exception to this rule: If none of
3204      the children has that particular property defined, the
3205      parent's value stays.  In this way you can still place TODO
3206      items under such an entry without getting the property value
3207      changed.  Thanks to Russel Adams for pointing out that this
3208      is a better way of doing things.
3210    - In column view, computed values are now bold face, and
3211      trying to edit them is an error.  I think this works, but
3212      testing is appreciated.
3214    - New command `org-occur-in-agenda-files', this is basically
3215      the quick command John Wiegley proposed the other day, but
3216      it also works when the agenda files are not yet in buffers.
3217      The key is `C-c C-x /', any better proposals?
3219    - Links containing a space will now be handled correctly when
3220      calling the browser.  Note that you need to enclose such
3221      links in square or angular brackets.
3223    - Bug fixes.
3225 * Version 5.09
3227 ** Overview
3229    - Taking a note upon TODO state changes can be restricted to
3230      selected states.
3232    - The format in which dates are shown in the daily/weekly
3233      agenda can be configured.
3235    - The default for `org-remember-store-without-prompt' is now t.
3237    - `org-goto' has been made into a general lookup command.
3239    - Priority cycling goes back to the nil state.
3241    - You can store a remember note to the *last used* location.
3243    - On Emacs 23, the headline faces for org-mode are now
3244      inherited from the outline faces.
3246 ** Incompatible Changes
3248    - The default for `org-remember-store-without-prompt' is now
3249      t, in order to better match the original intent of
3250      remember.el (storing a note with minimum interruption of
3251      work flow).  I expect that many people will be hit by this
3252      incompatible change - nevertheless I believe it is the right
3253      thing to do.
3255 ** Details
3257    - You can now select specific states for recording a note when
3258      switching to that state.  With the setting
3260      : #+SEQ_TODO: TODO(t) ORDERED(o@) INVOICE(i@) PAYED(p) | RECEIVED(r)
3261      : #+STARTUP: lognotestate
3263      only the states ORDERED and INVOICE will record a timestamp
3264      and a note.
3266    - You can now set the format of the string for each day in the
3267      agenda and timeline buffers.  You can use a format string
3268      interpreted by `format-time-string', or you can write your
3269      own function.  Configure the new variable
3270      `org-agenda-format-date'.  Thanks to Levin for triggering
3271      this development with a patch.
3273    - The default for `org-remember-store-without-prompt' is now
3274      t, in order to better match the original intent of
3275      remember.el (storing a note with minimum interruption of
3276      work flow).  Since we can assign files and headlines to
3277      templates, I guess this takes care of selecting a filing
3278      location in most cases.  For interactive filing, you now
3279      need a prefix command when exiting `remember'.
3281    - `org-goto' (bound to `C-c C-j') now uses an indirect buffer
3282      and has additional commands enabled: Org-occur with `C-c /'
3283      or even faster with `/', and the commands needed to select
3284      and copy a region.  This make `org-goto' a more general
3285      lookup command instead of only a jumping command.  Remember
3286      that you can exit with `Q' to go back to the original
3287      location.  Thanks to William Henney for this idea.
3289    - Setting the priority with S-up/down now cycles back to a
3290      state where no priority is specified.  This was requested by
3291      Rick Moynihan.
3293    - You can store a remember note to the *last used* location.
3294      So if you select a location interactively once, you can
3295      re-use it without having to find it again.  For this, exit
3296      the remember buffer with `C-u C-u C-c C-c'.  The leading
3297      comment in the remember buffer will tell exactly where the
3298      note goes if you exit with a particular command.
3299      Thanks to Maxim Loginov for this idea.
3301    - On Emacs 23, the headline faces for org-mode are now
3302      inherited from the outline faces.  This is just a
3303      convenience, so that you only have to configure one set of
3304      faces, and that will then be outline-1 .. outline-8.  You
3305      will actually not see any difference in org-mode, because
3306      Stefan Monnier has made the outline faces in Emacs 23 to
3307      match the current org-mode faces.
3309      This change does not effect XEmacs, nor Emacs 21 and 22.
3311 * Version 5.08
3313 ** Incompatible changes
3315    - The default for `org-deadline-warning-days' is now 14.
3317 ** Details
3319    - There is now a separate interface for fast and directly
3320      setting a TODO keyword.  This interface kicks in when you
3321      have configured keys for TODO keywords like
3323      : #+SEQ_TODO: TODO(t) WAITING(w) | DONE(d) CANCELED(c)
3325      C-c C-t still does the cycling thing, you need to use a
3326      prefix argument to get to the fast interface.  Or configure
3327      the variable `org-use-fast-todo-selection' to t, then this
3328      will be the default and the prefix argument will make the
3329      command fall back to cycling.
3331      The tag selection no longer does include TODO keywords -
3332      Leo's arguments have convinced me that this is not a good
3333      idea.  If you'd like to see the TODO keywords in the tags
3334      interface anyway, set the variable
3335      `org-fast-tag-selection-include-todo'.  Thanks to Leo and
3336      others for input on this issue.
3338    - New variable `org-edit-timestamp-down-means-later'.  When
3339      set, `S-down' on a timestamp will change the timestamp to
3340      later.  Thanks to Raman for this idea.
3342    - Property names can now contain non-ascii word characters.
3343      This follows a request from Daniel Clemente.
3345    - For export, the date that should be given in the exported
3346      file can now be set to a specific value with a line like
3348      : #+DATE: 15 November 2003
3350      If you want to use the date/time when the file was created,
3351      use a format string that will be interpreted by
3352      `format-time-string', for example:
3354      : #+DATE: %Y/%m/%d %X
3356    - The default of `org-deadline-warning-days' has changed to 14
3357      days.  30 was really too much, I suspect most people (me
3358      included) have changed this.
3360    - When a deadline has an individual lead time, this lead time
3361      obviously overrules `org-deadline-warning-days'.  However,
3362      if you bind `org-deadline-warning-days' to a number <=0, for
3363      example during a custom agenda command, then the absolute
3364      value of this number will be enforced also when a different
3365      lead time has been specified.  This is useful to get a list
3366      of all deadlines coming up in the next N days.
3368 * Version 5.07
3370 ** Overview
3372    - Different faces for different TODO keywords.
3374    - Setting TODO states through the TAG setting interface.
3376    - Context information is stored when moving a tree to the archive.
3378    - Sorting can be done by priority.
3380    - `Org-ellipsis' can now also be a face.
3382    - Scheduling info is no longer removed entry is marked CLOSED.
3384    - Unavailable files in `org-agenda-files' can be skipped.
3386 ** Incompatible changes
3388    - The time of archiving is now stored as a property.
3389      ARCHIVED is no longer a special time keyword.
3391    - Scheduling info is no longer removed entry is marked CLOSED.
3393 ** Details
3395    - You can now define different faces for different TODO
3396      keywords.  This request has come up frequently, so here it
3397      is: Use the variable `org-todo-keyword-faces'.
3399      A Here is a configuration example:
3401      : (setq org-todo-keyword-faces
3402      :   '(("TODO"      . org-warning)
3403      :     ("DEFERRED"  . shadow)
3404      :     ("CANCELED"  . (:foreground "blue" :weight bold
3405      :                    :underline t))))
3407      Org-mode continue still use `org-todo' and `org-done' for
3408      keywords that have no specific face assigned.
3410    - Some People use TODO states more like tags.  For them the
3411      TODO keywords mark special states and they like to quickly
3412      switch between states in arbitrary sequence.  The standard
3413      TODO interface is not perfect for this, because it assumes
3414      that the states are reached in sequence.  However, the fast
3415      tag setting interface is in fact perfect for this.  You can
3416      now "misuse" the TAG selection interface to also set TODO
3417      states.  All you need to do is to assign keys to the TODO
3418      states, just like you also do for tags.
3420      : #+SEQ_TODO: TODO(t) WAITING(w) | CANCELED(c) DONE(d)
3421      : #+TAGS: @HOME(h) @OFFICE(o) @SHOP(s)
3423      Next time you try to set tags with C-c C-c, the todo states
3424      will be offered as well, and the corresponding key will
3425      switch the entry to that state.
3427    - New variable `org-archive-save-context-info' governs if
3428      information that would be lost by moving a subtree to the
3429      archive file, should be stored as special properties.  For
3430      example,
3432      : (setq org-archive-save-context-info '(itags category))
3434      will store the inherited tags and the category in properties
3435      ARCHIVE_ITAGS and ARCHIVE_CATEGORY, respectively.  The
3436      default setting for this variable is to save everything that
3437      could be lost.  This was a proposal by John Wiegley.
3439    - Sorting (`C-c ^') can use the use the priority to sort.  Use
3440      the "p" and "P" keys at the prompt.  John Wiegley, again.
3442    - `Org-ellipsis' can now also be a face to make the folding
3443      ellipsis more visible.  This is based on a post by Tassilo
3444      Horn.  Since `org-ellipsis' only works in Org-mode, you
3445      might want to use Tassilo Horn's hack directly in order to
3446      affect the folding ellipsis globally.
3448    - Scheduling info is no longer removed when an entry is marked
3449      CLOSED.  This was a request by Brian van den Broek.  Let me
3450      know if this breaks anything for you - then it will become
3451      an option.
3453    - New option `org-agenda-skip-unavailable-files'.  Currently,
3454      if a file does not exist, it will be removed from
3455      `org-agenda-files' after a query.  When this option is set,
3456      the file will simply be skipped.
3458    - Bug fixes.
3460 * Version 5.06
3462 ** Overview
3464 ** Details
3466    - When exporting only a region and this region is a single
3467      (sub)tree (for example selected with `C-c @'), the title for
3468      the exported document is taken to be the heading of the
3469      subtree.  The sublevels become top-level entries in the
3470      export.  Furthermore, if the head entry of the tree has or
3471      inherits an EXPORT_FILE_NAME property, that file name (with
3472      appropriately substituted extension) will be used for the
3473      exported tree.  Thanks to Patrick Drechsler and Jost Burkart
3474      for these ideas.
3476    - org-special-ctrl-a/e has a third allowed value, `reversed'.
3477      When it is set to this value, the first C-a or C-e command
3478      behaves normally, i.e. it goes to the true beginning or end
3479      of the line.  Only when you press C-a or C-e immediately
3480      again, the the "special" position will be found.  Additional
3481      presses of the same key jump between the two positions.  I
3482      like this a lot better than the `t' setting, because now the
3483      keys behave more predictable and still give easy access to
3484      the special locations.
3486    - New command to set or remove a tag from all headlines in a
3487      region.
3489    - When Org-mode visits a file, it will initially hide all
3490      drawers.
3492    - The default of the variable `org-cycle-global-at-bob' is now
3493      nil, meaning that TAB no longer does global visibility
3494      cycling at the beginning of the buffer.
3496    - Bug fixes, in particular the problems with scheduling and
3497      deadlines introduced in 5.05.  Please check carefully if
3498      this works correctly again, and complain if not.
3500 * Version 5.05
3502 ** Overview
3504    - LaTeX export, finally, thanks to Bastien.
3506    - Extension mechanism for the hyperlink system.
3508    - Global access to commands inserting and following links.
3510    - Individual lead-times for deadlines.
3512    - Option to show only the next instance of repeating timestamp.
3514    - Store remember notes with only 2 keys: C-c C-c
3516    - Appointment reminders from Org-mode.
3518    - Global values for selected properties.
3520    - Bug fixes.
3523 ** Details
3525    - Bastien's `org-export-latex.el' is now part of the org-mode
3526      distribution.  You can export an Org-mode document to a
3527      LaTeX file with `C-c C-e l'.  For more options, see the
3528      manual, and the commentary in the Lisp file.  Kudos to
3529      Bastien for contributing this frequently requested feature.
3530      I am sure this has been tough because of the many different
3531      ways I have been allowing LaTeX snippets and environments to
3532      be incorporated in lazy free-format ways.
3534    - Org-mode has now an extension mechanism for the hyperlink
3535      system.  This should clear the road for all those mairix and
3536      other ideas that have been floating around.  Now it is on
3537      *you* to write and share new link types for Org-mode.  The
3538      interface for adding a new link type is described in the
3539      appendix of the manual, section A2.  The unsolved problem is
3540      currently how to handle the new link types for
3541      export/publishing.
3543    - New *global* commands `org-open-at-point-global' and
3544      `org-insert-link-global'.  You can bind these commands to
3545      global keys and use them to insert and follow Org-mode-like
3546      links anywhere in Emacs.  Thanks to Adam Spiers for this
3547      excellent idea.
3549    - Each deadline timestamp may now specify its own interval of
3550      lead-time display, given in days, weeks, months or years.
3551      The syntax is like this
3553      : DEADLINE: <2007-08-13 Mon -5d>
3555      When combined with a repeater, the repeater has to come
3556      first:
3558      : DEADLINE: <2007-08-13 Mon +2w -5d>
3560      You may now also customize the faces that are used in the
3561      agenda to indicate the distance of an approaching deadline.
3562      See the new option `org-agenda-deadline-faces'.
3564      Thanks to Pavel Chalmoviansky and John Wiegley proposals in
3565      this direction.
3567    - New option `org-agenda-repeating-timestamp-show-all'.  When
3568      set to nil, repeating time stamps will only show up once in
3569      the agenda, either today or in the near future.  Other
3570      matches will be ignored.  Thanks to John Wiegley for this
3571      proposal.
3573    - New variable `org-remember-store-without-prompt'.  When set,
3574      exiting the remember buffer with C-c C-c will store the note
3575      without further prompts to the default location, and `C-u
3576      C-c C-c' will get the prompts for file and location.  So
3577      this variable reverses the prefix-argument functionality for
3578      storing remember notes.  This follows a request from John
3579      Wiegley.
3581    - A new function `org-agenda-to-appt' activates all
3582      appointments for the current day so that Emacs will display
3583      reminders.  This uses appt.el.  Thanks to Bastien for this
3584      function.
3586    - You can now set default values for properties that can be
3587      inherited by all entries in a buffer, or by all entries
3588      globally.  Global properties are set in the variable
3589      `org-global-properties', like this:
3591        (setq org-global-properties '(("NAME" "This is the value")))
3593      Buffer-local values are set like this:
3595        #+PROPERTY: NAME This is the value
3597      When using org-entry-get to get the value of a property with
3598      the `inherit' flag and the hierarchy above the entry does
3599      not contain this property, the buffer-local and global lists
3600      are checked as well.  This is mostly useful (I think) to set
3601      the list of allowed values for a property.  Thanks to Bernt
3602      Hansen and Bastien for these ideas.
3604    - Bug fixes.
3606 * Version 5.04
3608 ** Details
3610    - New variables `org-export-author-info' and
3611      `org-export-time-stamp-file' to turn off inclusion of author
3612      and time information into exported files.  Thank to Patrick
3613      Drechsler for pointing out that this would be useful.
3615    - New variable to avoid moving DEADLINE and SCHEDULED info
3616      into the property drawer.  The default is now to not move
3617      this stuff into the drawer.
3618      `org-insert-labeled-timestamps-before-properties-drawer'
3620    - `org-archive-mark-done' can be a string now, to select a
3621      specific keyword that should be used for archived entries.
3623    - New command "j" in agenda to jump to an arbitrary date.
3624      Thanks to Bernt Hansen for the patch.
3626    - Lots of minor fixes.
3628 * Version 5.03
3630 ** Incompatible Changes
3632    - The variable `org-special-ctrl-a' has been renamed to
3633      `org-special-ctrl-a/e'.  The old one is still an alias (but
3634      not on Emacs 21 where variable aliases cannot be defined).
3636 ** Details
3638   - When the variable `org-special-ctrl-a/e' is set, C-e in a
3639     headline first goes to the end of the headline ignoring the
3640     tags.  A second C-e then goes to after the tags.
3642   - Typing and removing single characters in a headline now
3643     keeps the tags in the headline aligned.  This could have a
3644     little impact on performance while deleting stuff - let me
3645     know if we need to make this customizable.
3647   - New option `org-n-level-faces' can be used to set the number
3648     of different faces that are used for headlines.  Default is
3649     all 8 faces Org-mode defines for this purpose, level 9 uses
3650     again the level-1 face.  However, you can use fewer, and then
3651     the level-1 face will be reused already for level N+1, etc.
3653   - Column View and hidestars now work together.
3655   - Bug fixes.
3658 * Version 5.02
3660 ** Overview
3662    - The interfaces for properties and column view are finished
3663      now and work well.
3665    - Properties can be summaries, i.e. the parent nodes can
3666      compute their value from the children's values.
3668    - Headlines finally require a space ofter the star(s).  The
3669      conflict with bold text at the beginning of the line is no
3670      longer there.
3672 ** Incompatible Changes
3674    - Bad news.  It looks like it is going to be really hard to
3675      make column view work on XEmacs and on Emacs 21.  Emacs 22
3676      is currently the only Emacs where this works.  If you are
3677      using Emacs 21 or XEmacs, you can still use properties, but
3678      not column view.
3680 ** Details
3682    - Improvements for properties:
3684      + There are interactive commands to insert and delete
3685        properties.  Read the manual chapter 7 for details.
3687      + You can define /allowed values/ for a property.  When
3688        these are defined, you can change the value of a property
3689        with S-left and S-right.  And you may use completion when
3690        inserting the property.  This goes a long way to prevent
3691        typos when entering properties.
3693    - Improvements for column view.
3695      + In column view, you may use the keys S-left/right (and
3696        also the keys `n' and `p') to switch from one allowed
3697        value to the next.
3699      + You can define summaries for columns.  For example,
3700        parents can contain the sum of all children values of a
3701        property, or the parent node can have a check box property
3702        that is automatically checked when all children's boxes are
3703        checked.
3705      + There are interactive commands to add and remove columns,
3706        and to change the attributes of a column like the summary
3707        type.
3709      These additions lead to the exciting fact that the example
3710      from [[http://www.omnigroup.com/images/applications/omnioutliner/features/multicolumn.jpg][omni outliner]] posted by Scott Jaderholm can now be
3711      accurately [[file:omni-org.jpg][reproduced by Org-mode]].
3713    - The space after the stars is now required in a headline, in
3714      order to remove the conflict with bold words at the
3715      beginning of a line.  So
3717      :    * This is a level 1 headline
3718      :    *this is bold text*
3720    - S-up and S-down to navigate plain item lists are now also
3721      available in orgstruct-mode.
3723 * Version 5.01
3725 ** Overview
3727    - A new minor mode, orgstruct-mode, exports the Org-mode
3728      structure editing commands into any other mode.
3730    - DRAWERS are a new level off folding for special sections
3731      that should stay closed during visibility cycling and only
3732      open if explicitly asked.
3734    - Entries can now have PROPERTIES.
3736    - A COLUMN VIEW implementation allows to easily view and edit
3737      the properties of a hierarchy of entries (Emacs only, for
3738      now).
3740    - Formula evaluation in the spreadsheet is more consistent
3741      now.  Properties and per-file constants can be used during
3742      evaluation.
3744    - Bug fixes and minor changes.
3746 ** Incompatible changes
3748    - When using LEVEL=N in a tags search, things have changed if
3749      you are also using `org-odd-levels-only'.  If you are using
3750      only odd levels (i.e. 1 or 3 or 5... stars), LEVEL=2 will
3751      now refer to 3 stars, LEVEL=3 to 5 stars etc.  Many thanks
3752      to Leo (or blame on him if you must) who has convinced me
3753      that this is the better convention.
3755 ** Details
3757 *** Orgstruct minor mode
3759     There is a new minor mode, orgstruct-mode.  This modes works
3760     in a similar way as Orgtbl-mode.  It can be used to export
3761     the Org-mode structure-editing commands into arbitrary major
3762     modes in Emacs.  For example, you can use it in Mail-mode to
3763     easily create lists.
3765     The functionality in Orgstruct mode is only active, if the
3766     cursor is in a line that looks either like a headline, or
3767     like the first line of a plain list item.  Then the commands
3768     `TAB', `M-cursor', `M-S-cursor', `M-RET', `M-S-RET', `C-c ^',
3769     `C-c C-c', and `C-c -' will do structure-related editing just
3770     like in Org-mode.  If the cursor is not in such a line, all
3771     these keys will do whatever the major mode or other active
3772     minor modes have assigned to them.
3774     Orgstruct-mode is the result of a proposal by Raman, quite
3775     some time ago.  It has taken a long time, but here is finally
3776     the promised implementation.
3778 *** Drawers
3780     The new concept of /drawers/ allows to create sections
3781     that remain folded during visibility cycling.  Drawers need
3782     to be configured using the variable `org-drawers'.  A drawer
3783     starts with a line containing only the name of the drawer
3784     bracketed by colons. It ends with :END:.  For example,
3785     after setting
3787     :   (setq org-drawers '("PROPERTIES" "HIDDEN"))
3789     you can then create drawers like this:
3791     :   :HIDDEN:
3792     :     here is some stuff that remains hidden
3793     :     unless TAB is pressed directly in that line
3794     :   :END:
3796     The PROPERTIES drawer has special meaning for ORG-mode, it
3797     contains properties of an entry (see below).
3799 *** Properties and Column View
3801     - Entries in Org-mode can now have arbitrary /properties/
3802       associated with them.  Org-mode handles some default
3803       properties like the TODO state, the priority, the local
3804       tags, and planning information like DEADLINE and SCHEDULED.
3805       In addition, you can assign arbitrary properties by creating
3806       a property drawer and inserting a line like
3808       :   :PROPNAME: This is the value of the property
3810       Org-mode has an API for properties, if you want to write a
3811       program using properties, use the functions
3812       `org-entry-properties', `org-entry-get', `org-entry-put',
3813       and `org-entry-delete'.
3815     - Planning information like DEADLINE can be hidden in the
3816       properties drawer.
3818       If the PROPERTIES drawer starts in the first line after a
3819       headline, also the DEADLINE, SCHEDULED and CLOCK information
3820       will be inserted inside the drawer.  If no PROPERTIES drawer
3821       is present, or if it does not start in the line right after
3822       the headline, this information remains in the lines directly
3823       after the headline, outside the drawer.
3825     - TAGS searches can now also query properties.  For example,
3826       the search
3828       :   LEVEL=3+BOSS+ASSIGNED="Hans"/WAITING
3830       will find entries that
3831       - are level 3
3832       - have the tag BOSS
3833       - have an ASSIGNED property with the value "Hans"
3834       - are TODO status WAITING.
3836         So here is an entry that will match:
3838         :   *** WAITING Clean up the factory     :BOSS:
3839         :       :PROPERTIES:
3840         :       :ASSIGNED: Hans
3841         :       :END:
3843         You may also use a regular expression to match against a
3844         property value.  For example, to find stuff assigned to Hans
3845         or Sarah, use
3847         :   ASSIGNED={^\(Hans\|Sarah\)$}
3849     - Column View is a special way to look at property values in
3850       tabular form.  Column View can be used in any org-mode
3851       file, and also in any agenda buffer.  It works by placing
3852       an overlay over each headline (or agenda line) that shows a
3853       table of selected properties.  You can look at and edit
3854       properties from this view.  Which properties are shown in
3855       the table must be set up using the COLUMNS property.  You
3856       can set up different property columns on different levels
3857       of an outline tree.  For example:
3859       :   * People
3860       :     :PROPERTIES:
3861       :     :COLUMNS: %25ITEM %Name
3862       :     :END:
3863       :   ** Family
3864       :      :PROPERTIES:
3865       :      :COLUMNS: %25ITEM %Name %3Age
3866       :      :END:
3867       :   *** Sam
3868       :       Info about Sam, including a property list with Name and Age.
3869       :   *** Sarah
3870       :       Info about Sarah, including a property list with Name and Age.
3871       :   ** Office
3872       :      :PROPERTIES:
3873       :      :COLUMNS: %25ITEM %Name %Function %Salary
3874       :      :END:
3875       :   *** Boss
3876       :       Info about the Boss, including a property list with Name,
3877       :       Function and Salary (if only we knew....).
3879       Now we have defined three different sets of columns.  If
3880       you switch to column view in the /Family/ section, you
3881       will get a different table than if you do it in the
3882       /Office/ section.  However, if you switch to column
3883       view with the cursor on the /People/ section, the
3884       table will cover all entries, but contain only the
3885       /Name/.
3887       Column view does, for the time being, only work on Emacs.
3888       The XEmacs implementation needs a bit of work.
3890     - Properties can be used in table formulas.  To access the
3891       value of the property :XYZ:, use $PROP_XYZ.  The property
3892       needs to be defined in the hierarchy above the table, not
3893       necessarily in the same entry as the table.  This was a
3894       request by Eddward.  File-wide constants can be defined with
3895       #+CONSTANTS, see below.
3897     - Things that still need to be sorted out about drawers,
3898       properties and column view - comments and suggestions
3899       welcome!
3901       + How to deal with drawers and properties in HTML and ASCII
3902         export?
3903       + What key could be used to insert an empty property drawer
3904         into an entry?
3905       + Right now column view is invoked through the command C-c
3906         C-x C-c.  It is too easy to type C-x C-c by mistake, and
3907         that causes Emacs to quit.  Suggestions for a different
3908         key?
3909       + Fontification of drawers and properties is not good yet.
3910         Any suggestions for better defaults?
3911       + Mouse support for editing properties in column view would
3912         be nice - maybe Piotr is interested to add this to
3913         org-mouse.el?
3915 *** Spreadsheet
3917     - In the spreadsheet, the evaluation of formulas has changed.
3918       Previously, first the column formulas would be evaluated
3919       everywhere, and then the field formulas would kick in, and
3920       in some cases overwrite the results of column formulas in
3921       the appropriate fields.  This had the side effect that some
3922       formulas might always use the wrong, intermediate content of
3923       a field that is computed both by a column and a field
3924       formula.
3926       From now on, column formulas will no longer temporarily
3927       overwrite field formulas.  This gives much more consistent
3928       results.  For example you can now finally have a column of
3929       increasing numbers by setting the first field to a fixed
3930       number, and let the rest follow from a column formula.
3932       Here is an example
3934       :   | 1 |
3935       :   | 2 |
3936       :   | 3 |
3937       :   #+TBLFM: $1=@-1+1::@1$1=1
3939     - Constants for formulas in spreadsheets are globally defined
3940       with the variable `org-table-formula-constants'.  File-local
3941       constants can now be set with a line like:
3943       :   #+CONSTANTS: c=299792458.  pi=3.14  eps=2.4e-6
3945 *** Minor changes
3947     - When entries are archived, a timestamp for the moment of
3948       archiving is added to the line with planning information.
3949       It looks like this:
3951       : ARCHIVED: [2007-07-02 Mon 11:34]
3953       Thanks to J. David Boyd for constructive comments.
3955     - Bug fixes
3957       Many bugs are fixed, as usually all the ones where I replied
3958       "fixed" on emacs-orgmode.  If you reported one of these
3959       bugs, please check if it really has disappeared in the new
3960       version, and complain if not.  Thanks!
3963 * Version 4.79
3965 ** Details
3967    - We are back to a single file org.el that works both on Emacs
3968      and on XEmacs.  Merging comes at a speed penalty for you as
3969      an XEmacs user, but *only if you do not compile* org.el.
3970      Compilation completely removes the penalty.
3972    - New L flag for literal interpolation in Lisp formulas.
3973      See manual section 3.5.3.
3975    - New options for turning off footnotes.
3976      This was a request from Ignotus.
3977      See the option `org-export-with-footnotes'.
3979    - Default length for Agenda entries, but this is off by
3980      default.  This was a request from Micheal.
3981      See the option `org-agenda-default-appointment-duration'.
3983    - Bug fixes:
3985      + org-agenda-date-later (Juraj Kubelka)
3986      + letters off margin in orgcard.ps (Charles Cave)
3987      + TODO export problems on XEmacs (ignotus@freemail.hu)
3988      + args-out-of-range with table formulas (Cecil Westerhof)
3989      + problem with org-file without a heading (Tim O'Callaghan)
3991 * Version 4.78
3993 ** Overview
3995    - Time stamps with a time range *included*, like
3996      : <2007-06-18 Mon 17:33-18:23>
3998    - Clock times without clocking in/out: CLOCK: => 2:00
4000    - Language-specific characters allowed in TAGS (Emacs only).
4002    - Promotion and demotion of items gets the indentation right.
4004    - Indenting lines with TAB is more intelligent.
4006 ** Incompatible changes
4008    - There is now a special version of `org.el' for XEmacs.
4009      Before installation, as an XEmacs user you must rename the
4010      file org_xemacs.el to org.el, i.e. you must overwrite org.el
4011      with the xemacs version.  For example:
4013      : mv org_xemacs.el org.el
4015      This is necessary so that I can make use of some features
4016      that would be cumbersome to support in a single file.  The
4017      XEmacs version is derived from the Emacs version with a
4018      program, so no reason to fear that I might be dropping
4019      XEmacs support any time soon.  Sorry for the trouble.
4021 ** Details
4023    - A time stamp may now contain a range of times.  So you no
4024      longer need to use two separate stamps to indicate a time
4025      interval on a single day.  For example
4027      : <2007-06-18 Mon 17:30-18:20>
4029      This is now fully supported, including changing the time
4030      with S-up/down while the cursor is on the end time.  Also,
4031      da the date/time prompt, you can simply write your time like
4032      12:00-14:00 and the range will be inserted.
4034      This was proposed by Leo some time ago, and recently by
4035      Michael.
4037    - You may specify clocking times by hand (i.e. without
4038      clocking in and out) using this syntax.
4040      : CLOCK: => 2:00
4042      Thanks to Scott Jaderholm for this proposal.
4044    - TAGS may now contain language-specific word characters, as
4045      long as they are matched by the "[:alnum:]" regexp syntax.
4046      This is for Emacs only, the XEmacs version continues to use
4047      the character class "a-zA-Z0-9_@" for tag names.  Thanks to
4048      David Smith for a patch to this effect (a modified version
4049      of that patch was applied).  I am considering to make the
4050      same change for TODO keywords, but not yet.  Note that files
4051      using localization features may not work correctly in the
4052      Emacs configuration of another user, so if you are sharing
4053      org-mode files with other users, it might still be best to
4054      stick to the ASCII characters.
4056    - Promotion and demotion of plain list items (commands M-left,
4057      M-right) no longer changes the indentation by just one
4058      space.  Instead, it uses intelligence gathered from the
4059      surrounding list structure to do the right thing.  Thanks to
4060      William Henney for starting the discussion about this.
4062    - TAB does now a better job of indenting lines.
4064      + After tables and code segments (lines starting with ":"),
4065        indentation goes back to what it was before (thanks to
4066        William Henney for suggesting this behavior).
4068      + When plain lists items are involved, we had a long
4069        discussion on emacs-orgmode where I tried to show that a
4070        too-sophisticated implementation will still be easily
4071        fooled.   Here is what I have implemented now - lets see
4072        if we can agree on this:
4074        Indentation will flatten lists with the same bullet type,
4075        but indent another bullet type further.  The time when
4076        this fails is in a nested list, when you want to get back
4077        out to a previous level.  For example
4079        : - item 1
4080        : - item 2
4081        : + item 2a
4082        : + item 2b
4083        : - item 3
4085        When using TAB on every line in this list, the structure
4086        will change to
4088        : - item 1
4089        : - item 2
4090        :   + item 2a
4091        :   + item 2b
4092        :     - item 3
4094        So you need to change the level of the last line by hand,
4095        using promotion and demotion functions.
4097 * Version 4.77
4099 ** Overview
4101    - Vertical lines in exported tables.
4102    - New default for `org-show-following-heading'.
4104 ** Incompatible changes
4106    - The default for `org-show-following-heading' is now nil.
4108 ** Details
4110    - You can now specify column groups in tables, to the effect
4111      that the groups will be separated by vertical lines in HTML
4112      and ASCII output.  Column groups are specified by the
4113      characters "<" and ">" in a special table row.  "<" starts a
4114      group, ">" ends a group (in each case including the the
4115      column where the character is specified).  You may also use
4116      "<>" to make a group a single column wide.  For example:
4118 : |   |  N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N) |
4119 : |---+----+-----+-----+-----+---------+------------|
4120 : | / | <> |   < |     |   > |       < |          > |
4121 : | # |  1 |   1 |   1 |   1 |       1 |          1 |
4122 : | # |  2 |   4 |   8 |  16 |  1.4142 |     1.1892 |
4123 : | # |  3 |   9 |  27 |  81 |  1.7321 |     1.3161 |
4124 : #+TBLFM: $3=$2^2::$4=$2^3::$5=$2^4::$6=sqrt($2)::$7=sqrt(sqrt(($2))
4126      A table row with with nothing but "/" in the first field is
4127      never exported, but can be used to place column group
4128      information into the table.  In this table, we create a
4129      group for column 2, one for columns 3-5 and one for columns
4130      6-7.  HTML export will render a vertical line between these
4131      groups.
4133      Because HTML does not require closing <colgroup> tags with
4134      </colgroup>), you can also simply start a new column
4135      wherever you want a vertical line:
4137 : | N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N0 |
4138 : |---+-----+-----+-----+---------+------------|
4139 : | / | <   | <   |     | <       |            |
4141    - Vertical lines are now also omitted in ASCII export, unless
4142      grouping explicitly requests these lines.
4144    - The default for `org-show-following-heading' is now nil,
4145      meaning that sparse trees will be more compact.  This has
4146      become possible due to in important remark by Jason Dunsmore
4147      who pointed out that TAB should behave differently in the
4148      inconsistent trees produced by the sparse tree commands.
4149      TAB does now make sure that the heading after a freshly
4150      unfolded tree is made visible at all, removing the confusing
4151      behavior we had before.
4153    - Several bugs fixed.  In particular:
4155      + Strings produced by agenda batch processing with
4156        `org-batch-agenda' and `org-batch-agenda-csv' are now
4157        properly encoded, so that you should be able to use
4158        special characters in other languages as along as your
4159        post-processing program handles them correctly.  At least
4160        for Emacs this should work now, but have not yet figured
4161        out how to do this in XEmacs.
4163 * Version 4.76
4165 ** Overview
4167    - Exporting Footnotes to HTML
4169 ** Details
4171    - Footnotes like[1] are now exported to HTML
4173         [1]This is a footnote
4175      Thanks to Scott Jaderholm for this proposal and a detailed
4176      HTML example on how the exported text should look like.
4178    - Special version of the reference card, for letter paper.
4180    - Switching to OVERVIEW with S-TAB no loner moves the cursor,
4181      so after three `S-TAB' commands, you will be back where you
4182      started.
4184    - Bug fixes, lots of them again.
4186 * Version 4.75
4188 ** Overview
4190    - Cyclic time stamps that repeat after an interval.
4191    - Special timestamps for appointments like "every 2nd Thursday
4192      in a month".
4193    - Completion of link abbreviation prefixes inside `C-c C-l'.
4194    - Replacing a region of org-mode syntax with HTML.
4195    - iCalendar export now honors ARCHIVE etc.
4196    - New command to add/change emphasis markers.
4198 ** Incompatible Changes
4200    - The REPEAT(...) cookie is no longer supported, the repeater
4201      interval now goes directly into the time stamp.
4203 ** Details
4205    - Time stamps can contain a repeater code, like +1w for once
4206      every week, +2d for every two days, etc.  For example,
4208           <2007-05-16 Wed 12:30 +1w>
4210      will apply to every Wednesday, starting from the date given.
4211      I believe this syntax was actually suggested by someone on
4212      the mailing list, but I cannot find the email back.  To
4213      collect your credit, let me know!
4215    - You can use an sexp diary entry (with the syntax used by the
4216      Emacs calendar/diary) in a time stamp, like this:
4218        *** The nerd club meets on 2nd Thursday of every month
4219            <%%(diary-float t 4 2)>
4221    - You can put diary-style sexp entries directly into an
4222      org-mode file, where they will be interpreted just like they
4223      would in the diary.  For example
4225        * Birthdays and similar stuff
4226        #+CATEGORY: Holiday
4227        %%(org-calendar-holiday) ; special function for holiday names
4228        #+CATEGORY: Ann
4229        %%(diary-anniversary 14  5 1956) Artur Dent %d is years old
4230        %%(diary-anniversary  2 10 1869) Mahatma Gandhi
4232      These entries must start at column 0 to be evaluated.
4234      It turns out that evaluating the entries in an org-mode file
4235      is actually faster than in the diary itself, because using
4236      the diary has some overhead (creating fancy diary display,
4237      then reading and re-interpreting the entries).  I have moved
4238      all the sexp entries from my diary into an org-mode file,
4239      put in a few categories, and then turned off
4240      `org-agenda-include-diary'.  This has led to a noticeably
4241      faster agenda display.
4243    - New command `org-replace-region-by-html' that converts the
4244      current region from org-mode syntax into HTML.  For example,
4245      you might write an itemized list in plain text in an HTML
4246      buffer, and then invoke this command to convert it.  Thanks
4247      to Raman for this idea.
4249    - When inserting a link with `C-c C-l', completion will now
4250      fill in all valid link prefixes, like http or ftp, but also
4251      link abbreviation prefixes.  This is based on an idea by
4252      Bastien.
4254    - Highest, lowest, and default priority can be set on a
4255      per-file basis with #+PRIORITIES: H L D
4256      For example, to use priorities from 1 to 9, you could use
4258        #+PRIORITIES: 1 9 9
4260      Thanks to Dmitri Minaev for a patch to this effect.
4262    - iCalendar export now honors (i.e. skips) subtrees marked as
4263      ARCHIVE, COMMENT, or QUOTE.
4265    - There is a new command to add or change the emphasis (like
4266      bold or italic) of a piece of text.  For lack of better
4267      available keys the command is at `C-c C-x C-f', but you may
4268      well want to choose a more convenient key like `C-c f' in
4269      your private setup:
4271      (add-hook 'org-load-hook
4272       (lambda () (define-key org-mode-map "\C-cf" 'org-emphasize)))
4274      The command will prompt for an emphasis type, and you may
4275      reply either with the marker that triggers the emphasis, or
4276      with the first letter of the corresponding HTML tag.  For
4277      example, to select italic, press either "/" or "i".
4279      If there is an active region, the emphasis of this region
4280      will be set or changed.  If there is no region, only the
4281      emphasis markers will be inserted and the cursor positioned
4282      between them.  Thanks to Bastien for proposing this feature.
4284    - Bug fixes, everything where I have replied "fixed" on the
4285      mailing list.  Thanks to all of you for keeping these reports
4286      coming.
4288 * Version 4.74
4290 ** Overview
4292    This release is about exporting agenda views, to HTML, to
4293    postscript for printing, and to a special format (CSV) for
4294    further processing in scripts.
4296 ** Incompatible Changes
4298    - The variable `org-agenda-remove-tags-when-in-prefix' has
4299      been renamed to `org-agenda-remove-tags'.
4301 ** Details
4303    - Agenda views can be exported as plain text, as HTML, and as
4304      Postscript(R).  This can simply be done from the agenda
4305      buffer with `C-x C-w' and then specifying a filename like
4306      `myagenda.html' or `myagenda.ps'.  See section 8.6.4 of the
4307      manual.
4309    - Each custom agenda view can specify a list of associated
4310      files names.  The command `C-c a e' then creates all views
4311      that have associated file names and exports the views to
4312      these files.  This is great for producing paper versions of
4313      your views, to take with you when you don't have your
4314      computer.  The manual has an example on how to do this, and
4315      in particular on how to customize the format of the printed
4316      version.  See section 8.6.4 of the manual.
4318    - You can produce a CSV format of agenda information with an
4319      Emacs batch command.  This is greate for further processing
4320      in scipts.  Thanks to Jason F. McBrayer for this idea.
4321      See section 8.6.5 of the manual.
4323    - New variable `org-agenda-skip-deadline-if-done'.  When set,
4324      a deadline associated with a DONE item will not be shown in
4325      the agenda.  This is based upon a report by Denis Bueno.
4327    - Quite a few bug fixes.
4329 * Version 4.73
4331   Minor bug fixes.
4333 * Version 4.72
4335 ** Overview
4337    - Control over blank lines between trees in collapsed view.
4339    - Info about the running clock is shown in the modeline.
4341    - C-a can behave specially in headlines.
4343    - Better color and scaling defaults for LaTeX fragments.
4345    - Customizable list of keys in org-mode to be replaced.
4347    - Stuck project descriptions have been extended.
4349    - Emphasis code has been modified to fix some issues.
4351    - Bug fixes.
4353 ** Incompatible changes
4355    - The option `org-format-latex-options' has changed.  If you
4356      have customized it, please revert to default and then redo
4357      your customization.
4359    - `org-CUA-compatible' no longer modifies S-RET by default,
4360      because newer versions of CUA don't use this key anymore.
4361      If you need this replacement, customize the variable
4362      `org-disputed-keys'.
4364    - The variable `org-CUA-compatible' is obsolete, please use
4365      `org-replace-disputed-keys' instead.  `org-CUA-compatible'
4366      is still an alias for this new variable, though.
4368 ** Details
4370    - Better control over blank lines between trees in collapsed
4371      view.  This has come up several times in the past and most
4372      recently by Scott Jaderholm.  There is now a new variable
4373      `org-cycle-separator-lines' with default value 2.  It says
4374      how many empty lines there need to be after the end of a
4375      subtree to get an empty line in collapsed view.  So with the
4376      default, if you leave only one empty line it will disappear
4377      in collapsed view.  If you leave two, one empty line will
4378      remain so that you can use double empty lines to structure
4379      the collapsed views of a file.  I love it, so many thanks to
4380      Scott fro bringing this up again.
4382      One property of the new setup is that you will never get
4383      more than one blank line in collapsed view.  We could do
4384      something special to allow *several* empty lines in
4385      collapsed view, but I think this is counter-productive.
4387      In Emacs 22, if you want to make full use of this, make sure
4388      that you have not set `outline-blank-line'.
4390    - When the clock is running, Org-mode will put info about it
4391      into the modeline.  The info consists of the elapsed time
4392      and the heading of the clocked item.  This was a proposal
4393      from Bastien who got the idea from Muse.
4395    - C-a can behave specially in headlines when you set the
4396      variable `org-special-ctrl-a'.  It will bring the cursor
4397      first back only to the beginning of the headline *text*,
4398      i.e. after the stars and the TODO keyword, if any.  A second
4399      C-a will then move the cursor to the beginning of the line.
4400      If the cursor is already at the beginning of the line, C-a
4401      will spring *forward* to the headline text.  This was a
4402      proposal from Leo, based on a request from Scott Jaderholm.
4404      I have not turned this turned this on by default, should I?
4406    - When LaTeX fragments are processed into images, there is now
4407      more control and (hopefully) betters defaults for colors and
4408      scaling.  Special values can be set for HTML export, so that
4409      these values can differ from what is used for display in an
4410      emacs buffer.  The default foreground and background colors
4411      for images embedded in emacs are now taken from the default
4412      emacs face.  Thanks to Xiao-Yong Jin for proposing these
4413      changes.
4415    - There is now a much better mechanism to change some keys in
4416      org-mode if these keys clash with other modes you use.  Turn
4417      this on by setting `org-replace-disputed-keys' (aliased to
4418      `org-CUA-compatible').  The list of keys to replace is now
4419      fully customizable, see the option `org-disputed-keys'.
4420      Many thanks to Meciej Katafiasz for a patch implementing
4421      this.
4423    - Stuck project descriptions have been extended.  You can now
4424      use "*" as a TODO keyword or tag to say that *any* TODO
4425      keyword or TAG marks a project as non-stuck.  You also can
4426      give an arbitrary regular expression that, if it matches,
4427      indicates a non-stuck project.
4429    - The code for emphasis like bold, italic etc has been
4430      modified - I might have broken something in the process,
4431      please let me know if you find problems.
4433    - A number of bugs have been fixed - those where I have
4434      replied "Fixed" on the mailing list.
4436 * Version 4.71
4438 ** Overview
4440 ** Incompatible changes
4442 ** Details
4444   - New variables to customize the header and data tags in
4445     exported HTML.  These are the variables
4446     `org-export-table-header-tags' and
4447     `org-export-table-data-tags'.  This follows a request from
4448     Scott Otterson.
4450   - New option `org-format-latex-header' for customizing the
4451     header of the LaTeX file used to convert embedded LaTeX to
4452     images.  Thanks to `Matthieu Lemerre' for the suggestion.
4454   - The prefix version of `org-todo-list' works again.  This
4455     means that `C-1 C-c a t' produces the list of TODO entries
4456     for the first TODO keyword.  If you use different TODO setups
4457     in different agenda files, be careful:  This number now
4458     refers to the list of *all* todo keywords used in files
4459     that are scanned for the agenda.
4461   - Many bug fixes.
4463 * Version 4.70
4465 ** Overview
4467    - Dust settles after revamp of TODO keyword system.
4468    - The export title can be taken from the first text line.
4469    - TTY replacement keys have changed.
4471 ** Incompatible changes
4473    - Some TTY replacement keys are changed, see below.
4475 ** Details
4477   - Further development concerning TODO keywords.
4479     + You can now have several DONE states in a sequence, like
4481       #+SEQ_TODO: TODO VERIFY | DONE DELEGATED
4483       The difference to the proposal discussed on the mailing
4484       list (and which is also works!)
4486         #+SEQ_TODO: TODO VERIFY | DONE
4487         #+SEQ_TODO: | CANCELED
4489       is that in the first case, the extra DONE states will be
4490       reached with `C-c C-t' (or with `t' from the agenda), while
4491       in the second case you need S-<right> to get to the special
4492       states.  I guess both ideas can be useful - I am leaning
4493       toward using the latter.
4495     + Setting up TODO keywords in Lisp previously used two
4496       separate variables: `org-todo-keywords' and
4497       `org-todo-interpretation'.  The preferred way is now to use
4498       only `org-todo-keywords', with a new structure:
4500        (setq org-todo-keywords
4501          '((sequence "TODO" "|" "DONE")
4502            (sequence "BUG" "KNOWNCAUSE" "|" "FIXED" "IGNORED")
4503            (type "Fred" "Lisa" "Peter" "|" "DONE")
4504            (sequence "CANCELED")    ; for things we decide to not do.
4505            ))
4507       If your setting has this new structure,
4508       `org-todo-interpretation' will be ignored.  This change
4509       does not break backward compatibility.  The old way of
4510       using a flat list in `org-todo-keywords' and taking the
4511       interpretation from the other variable still works.
4513     + When listing *specific* TODO entries via a sparse tree
4514       (`C-u C-c C-v') or via the agenda (`C-c a T' or `C-u C-c a
4515       t'), you can now specify several keywords to be selected,
4516       like "TODO|VERIFY|WAITING".  This also works for custom
4517       agenda commands.  Thanks to Jason F. McBrayer for pointing
4518       out this omission.
4520   - If you have configured Org-mode to export also the text
4521     before the first headline (this is done by setting the
4522     variable `org-export-skip-text-before-1st-heading' to nil),
4523     then the first normal text line in the buffer becomes the
4524     title of the exported document.  A title set with #+TITLE
4525     overules this default, and the first line then belongs to the
4526     normal text.  Thanks to David House for this proposal.
4528   - TTY replacement keys.  Some of the key bindings used by
4529     Org-mode do not work on a tty, so replacement key sequences
4530     are provided on ttys.  In version 4.70, there are some
4531     changes in the tty replacements.  Thanks to Jason F. McBrayer
4532     for coming up with the idea to use C-c <cursor> keys.
4534     | Command           |           | Old TTY       | New TTY       |
4535     | org-.....         | Main Key  | Replacement   | Replacement   |
4536     |-------------------+-----------+---------------+---------------|
4537     | shiftleft         | S-left    | C-c C-x left  | C-c left      |
4538     | shiftright        | S-right   | C-c C-x right | C-c right     |
4539     | shiftup           | S-up      | C-c C-x up    | C-c up        |
4540     | shiftdown         | S-down    | C-c C-x down  | C-c down      |
4541     | shiftcontrolleft  | C-S-left  |               | C-c C-x left  |
4542     | shiftcontrolright | C-s-right |               | C-c C-x right |
4545 * Version 4.69
4547 ** Overview
4549    This time the changes affect the following areas:
4551    - TODO keywords:  Multiple sequences in a single file.
4552    - Export: More control over text before the first heading.
4553    - Export: More control over sub/superscript interpretation.
4554    - Plain lists:  Option to let empty lines terminate lists.
4555    - Tables: New command to insert hline and move into line below.
4556    - REPEATing items:  Turn of note taking.
4557    - Bug fixes.
4559 ** Incompatible changes
4561    - It used to be possible to spread the list of TODO keywords
4562      over several lines, like
4564      #+SEQ_TODO: TODO
4565      #+SEQ_TODO: PROGRESS
4566      #+SEQ_TODO: DONE
4568      This is no longer possible.  Each such line now specifies an
4569      independent set of TODO keywords, with its own DONE state.
4570      See below for details.
4572    - The #+TEXT construct has been used to insert unchanged HTML
4573      into an exported file.  This is no longer possible, the TEXT
4574      lines will be processed like any other lines.  However,
4575      there are now much better ways of getting quoted HTML into
4576      the exported file.
4578 ** Details
4580    - You can now use multiple sets of TODO keywords in the same
4581      buffer.  For example, you may put the following three lines
4582      into a file:
4584        #+SEQ_TODO: TODO DONE
4585        #+SEQ_TODO: REPORT BUG KNOWNCAUSE RESOLVED
4586        #+TYP_TODO: Fred Laura Peter Me OK
4588      Each sub-sequence has its own DONE state.  It is best to use
4589      different keywords in all sequences, to make sure Org-mode
4590      does not loose track in which specific sequence it is
4591      working.  You could use the same word for all DONE states,
4592      but then cycling through to a TODO state might not bring you
4593      where you want to be.
4595      After initially setting a keyword, `C-c C-t' cycles through
4596      a sublist, i.e. is cycles from TODO to DONE or from
4597      KNOWNCAUSE to RESOLVED and further to (nothing) and back to
4598      REPORT.
4600      S-right and S-left allow to select any keyword, so they move
4601      from DONE to REPORT and from RESOLVED to Fred.
4603      C-S-right and C-S-left jump from one sub-sequence to the
4604      next, for example from TODO or DONE to REPORT to Fred.
4606      Thanks to Rick Moynihan for triggering this development.
4608    - Text before the first headline can now be exported if you
4609      configure Org-mode accordingly.  Either set the variable
4610      `org-export-skip-text-before-1st-heading' to nil, or use the
4611      new in-buffer option
4613      #+OPTION: skip:nil
4615    - Export content specified via the #+TEXT construct is now
4616      fully processed, i.e. links, emphasis etc. are all
4617      interpreted.  #+TEXT lines may include
4618      #+BEGIN_HTML...#+END_HTML sections to embed literal HTML.
4620    - During HTML export, you can request to have a_{b}
4621      interpreted as a subscript, but to leave a_b as it is.  This
4622      can be done by setting the variable
4623      org-export-sub-superscript to the symbol `{}' with
4625           (setq org-export-sub-superscript '{})
4627      or by using
4629            #+OPTIONS: ^:{}
4631      Thanks to Eddward DeVilla for this idea.
4633    - New variable `org-empty-line-terminates-plain-lists'.
4634      Default is nil, meaning that empty lines are part of the
4635      previous list item, and that you can have several paragraphs
4636      in one such item.  Set this to t if you want an empty line
4637      terminate all levels of plain list items.
4639      Thanks to Mike Newman for triggering this development.
4641    - C-c RET does insert a horizontal separator line and move the
4642      cursor into the table line below it.  Thanks to Bastien for
4643      this proposal.
4645    - Org-mode always offers you to record a note when a TODO item
4646      automatically repeats, even if you are not logging state
4647      changes.  The new variable `org-log-repeat' allows to turn
4648      this off, so that notes are really only been taken if you
4649      are logging all state changes.
4651    - Various Bug fixes, thanks to everyone who reported.
4653 * Version 4.68
4655 ** Overview
4656    - Priority handling in the tags view
4657    - Date/time prompt follows the popup calender, and accepts AM/PM times.
4658    - Standard references like B4 in the spreadsheet.
4659    - Improvements to the formula editor.
4660    - C-j does better indentation.
4661    - Bug fixes
4663 ** Details
4664    - Priority handling in the tags view
4666      + Agenda lists selected by tag are now sorted by priority.
4667        Thanks to Andrew Korty for reporting this omission.
4669    - Improvements to the date/time prompt.
4671      + When you move (using S-cursor keys) the cursor in the pop-up
4672        calendar window while responding to a date/time prompt, the
4673        prompt is updated with the new default date (Emacs only).
4675      + You can now enter AM/PM times at this prompt.
4677    - Changes in the spreadsheet
4679      + You can now also write B4 instead of @4$2 as a reference in
4680        formulas.  The column references without specified row can be
4681        written as C& instead of $3.  Such references make formulas
4682        easier to read and are now the default way how references are
4683        shown when you edit existing formulas.  To get the old behavior
4684        back (i.e. only @row$col references), set the variable
4685        `org-table-use-standard-references' to nil.
4687        Relative references like @-3$-2 or @II..III continue to use the
4688        internal format.
4690    - Changes in the formula editor (the one you get with "C-c '")
4692      + The formulas are organized in a more logical way.
4694      + There is now a menu with commands.
4696      + When starting the formula editor with "C-c '", the cursor
4697        immediately moves to the formula for the current field.
4699      + With the cursor on a reference in the formula, you can use
4700        S-cursor keys to change the field being referenced.
4702    - C-j indents the following line correctly whe used in a headline
4703      or in aplain list item.  Thanks to Leo for this suggestion.
4705    - Bug fixes
4707      + Flyspell now knows about special org-mode commands.
4708        Thanks to Vinod Valsalam for reporting this problem, and to
4709        Andrew Korty for showing how to fix it.
4711      + Most other bugs discussed recently on emacs-orgmode@gnu.org
4712        should be fixed, except the problem with non-ASCII characters
4713        in tags....
4715 * Version 4.67
4717    - Expert mode for fast tag selection.
4718      When org-fast-tag-selection-single-key is `expert', not even
4719      the selection window is shown, only the prompt.  One more C-c
4720      gets you the window, another one goes to multiple selection mode.
4722    - Synchronized with Emacs once more:  Emacs CVS has now org-mode
4723      4.67.  At least until it causes a problem, then the Emacs people
4724      will switch back to 4.56.  Lets hope there will be no problem.
4726    - Code cleanup
4728    - Bug fixes
4730 * Version 4.66
4732 ** Overview
4734    - Sorting of top-level entries works now if the region contains
4735      top-level entries, or if the cursor is before the first headline.
4736      Thanks to "redblue" for reporting this bug.
4738    - When entering date and time at the prompt, you can now mix
4739      entering text and selecting something in the calendar.  For
4740      example, enter 22:15 at the prompt without pressing RET, and then
4741      click on a date in the calendar.  Both pieces of information will
4742      be included in the resulting time stamp.  You can also use
4743      S-curser to move the cursor in the calendar to the desired date
4744      and then enter 22:15 and press RET at the prompt.
4746    - When setting a deadline or a schedule, entering a time now
4747      automatically selects the time stamp format that includes the
4748      time. Bug report (by means of a question) from Bastre.
4750    - C-c C-l can be used to convert a plain link into a bracket link.
4752    - Internal links now match inside (the visible part of) other
4753      links.  Thanks to Scott Otterson for reporting this bug.
4755    - iCalendar export of TODO items fixed, see also the variable
4756      `org-icalendar-include-todo'.  Thanks to Philipp Raschdorf.
4758    - The number of levels in the table of contents of an exported
4759      document can now be set independently of the number of headline
4760      levels.  For example:
4762         #+OPTIONS: H:4 toc:2
4764    - The command `C-c }' toggles the display of row and column numbers
4765      the the current table, to aid constructing formulas.  To try it,
4766      move the cursor to a table and press `C-c }', or use the menu
4767      entry.
4769    - Orgtbl translation functions (introduced in 4.65) have been
4770      simplified using a generic function `orgtbl-to-generic' that can
4771      be used for very general languanges.  Writing your own translator
4772      should be very easy now.  More info in the manual.
4774    - CONTENTS visibility can be limited to a certain level.  The
4775      command `C-3 S-TAB' will switch to CONTENTS view and show the
4776      first 3 levels.
4778    - Bug fixes.
4780 * Version 4.65
4782 ** Overview
4784    - Orgtbl can be used to maintain tables in LaTeX, and in any other mode
4785    - Editing Lisp formulas for tables improved.
4786    - Better structure for HTML exported tables.
4787    - New "calculation" marker "/" to mark lines that should not be exported.
4789 ** Detailed description of changes
4791    - You can use orgtbl mode to maintain a LaTeX table, or pretty much
4792      any table in any mode.
4794      This does *not* work by making Orgtbl aware of LaTeX syntax.  That
4795      would be a box of Pandora I am not willing to open.  Instead, you
4796      use a normal Orgtbl-mode table, and a converter program to
4797      automatically place a LaTeX version of the table into the correct
4798      spot in the LaTeX file.  The orgtbl-mode table can be maintained
4799      inside the same file, in a block comment.
4801      I am providing translators for LaTeX, HTML, and TeXInfo.  For
4802      other applications, you need to write one yourself - but that is
4803      not hard if you start from the LaTeX version and just modify it.
4804      Thanks to Thomas Baumann for triggering this development through
4805      a request for a table-to-LaTeX converter.
4807    - In the special buffer to edit the formulas of a table (created
4808      with "C-c '"), there is now better support for editing Lisp
4809      formulas.  TAB and M-TAB work like in an Emacs Lisp buffer,
4810      indenting lines and completing lisp symbols.  With the cursor on
4811      a line defining a complex Lisp formula, a first press on TAB will
4812      convert the formula into a pretty-printed version with proper
4813      linebreaks and indentation.  A second TAB folds the line back to
4814      the compact form.
4816    - Tables in HTML export have now additional structure elements
4817      defined.  The header (before the first hline) is wrapped into
4818      <thead>..</thead>, and each part of the body (as separated in
4819      org-mode by hlines) is wrapped into <tbody>..</tbody> tags.  I
4820      have also changed the CSS style for <td> fields and the value of
4821      `org-export-html-table-tag' to get cleaner tables. Basically,
4822      tables now have horizontal lines only where needed, and no
4823      vertical lines at all, as generally recommended for tables in
4824      printed text.  I like the new look, but I am not sure if this
4825      change will find general approval, please throw in your view if
4826      you like.  Thanks to Scott for driving this, and to goud-H for
4827      pointing me to the row grouping in tables.
4829    - In a table with calculation markers in the first column, you can
4830      now also put "/" into the first column.  It indicates that this
4831      line should not be exported.  The foremost application for this
4832      are lines containing only "<N>" markers for narrowing columns.
4834 * Version 4.64
4836 ** Overview
4838    - Email links get better, configurable descriptions
4839    - When inserting a link, selected text becomes the description
4840    - Easier access to the list of stored links.
4841    - Horizontal lines in HTML export.
4842    - Remember templates and storing of notes improved.
4844 ** Detailed description of changes
4846    - The descriptive part of links to email messages can be configured
4847      using the variable `org-email-link-description-format'.  The new
4848      default is "Email %c: %.30s" and leads to
4850         Email from NAME: SUBJECT
4852      If you configure the variable `org-from-is-user-regexp'
4853      correctly, then for email you *sent* this will actually change to
4855         Email to NAME: SUBJECT
4857      The subject is limited to 30 characters.  If you have become
4858      attached to the previous default (look twice, the new one is
4859      better), use "%f on: %s" as your format.
4861    - Selecting text before entering a new link with C-c C-l now really
4862      works, the selected text becomes the description part of the
4863      link.  Requested by Scott, buggy 4.62 implementation is now fixed.
4865    - Stored links are part of the history list for C-c C-l, so to
4866      reach them, you can use up/down rather than completion.  Thanks
4867      to Raman for this excellent idea.
4869    - A line consisting only of "-", and at least 5 of them, is
4870      exported into HTML as <hr/>, as proposed by Giovanni Ridolfi.
4872    - Several changes to org <-> remember integration
4874        - You can use `org-remember' as your default command to start
4875          remember.  It will automatically detect if there is an active
4876          region and use it as initial content (we will probably make
4877          remember.el work like this as well).
4878          Also, when calling `org-remember' in a remember buffer that
4879          was created with a template, you will again be asked to
4880          select a template.  The buffer is then re-created with the
4881          new template, but the old context information.  This is
4882          useful if you change your mind about the template to use
4883          (Leo's idea).
4885        - Besides specifying a default *target* file for a note, you
4886          can also give a default *heading* of which the note should
4887          become a subitem.  In many cases this avoids or speeds up
4888          navigating to the right location.  Both file and heading can
4889          be different for each template.  Both are non-binding, you
4890          can change them while storing the note.  However, when you
4891          exit remember with C-u C-c C-c, these defaults will be used
4892          without interaction.
4894        - Templates can specify interactive fields.  During expansion
4895          of the template, you will be prompted for the information in
4896          that field.  For example %^t will pop up a calendar and ask
4897          you to select a date. This new feature follows a proposal
4898          from Leo, who in the mean time has said he does not need it
4899          anymore.  But I liked it, so here it is :-)
4901        - Templates can access information specific to the link type
4902          created, for example the author and subject of an email.
4903          Syntax is %:fromname, %:fromaddress, %:subject etc, details
4904          in the manual.  Proposed by Peder O. Klingenberg.
4906        - I have been considering to move, at some stage, the template
4907          functionality into remember.el itself - which would of course
4908          require consent of the remember.el maintainers.  I am not
4909          sure how well this would work though, since some things like
4910          the interactive time stamps are org.el specific, so treating
4911          them would require special hooks.  Comments?
4913 * Version 4.63
4914    - Bug fixes
4916 * Version 4.62
4917    - Many changes to the spreadsheet functions in the table editor.
4918      For details, please re-read the manual section 3.4.
4919      + New Features
4920        - It is much easier to assign formulas to individual fields.
4921        - References to arbitrary fields and ranges.
4922        - Absolute references are modified in row-editing commands.
4923        - Formula editor that highlights referenced fields.
4924      + Incompatible changes
4925        - Empty fields are excluded in range references, see "E" mode flag.
4926        - &... ranges no longer supported, use new @... ranges.
4927        - Variable insertion into Lisp formulas work differently.
4928    - Selected text becomes the default description for C-c C-l links.(Scott)
4929    - The date format in the agenda/timeline views is now customizable.
4930      See the new option `org-agenda-date-format'. (request by Victor)
4931    - Link abbreviations no longer need a double colon, single colon is fine.
4932    - Bug fixes.
4934 * Version 4.61
4935    - Avoiding keybinding clashes with flyspell
4936      - Archiving is now also on `C-C C-x C-s' (was just `C-c $')
4937      - Cycling through agenda files is now also on "C-'" (was just "C-,")
4938    - Colon is considered part of number, to align times in clock tables.
4939    - Fixed bug for list of stuck projects.
4940    - Fixed several bugs/problems concerning linking to gnus.
4941    - Block agendas can contain the list of stuck projects.
4942    - #+ARCHIVE may now appear several times in the buffer.
4943    - More bug fixes.
4945 * Version 4.60
4946    - HTML export: inlining images, clickable images (manual 10.2.4).
4947    - Incremental search now shows proper context when exiting.
4948    - Tables calculation and Calc package.
4949      - Calc is no longer needed when using only elisp formulas.
4950      - Proper error messages when calc is needed and not available.
4951    - Tracking TODO state changes with time stamps and notes.
4952    - Empty entries go full circle.
4953    - Links in iCalendar export cleaned up.
4954    - Bug fixes.
4957 * Version 4.59
4958    - Cleanup code, bug fixes.
4960 * Version 4.58
4961    - Full undo support in the agenda buffer.
4962    - Listing stuck GTD projects (projects without any NEXT ACTIONS).
4963      Configure `org-stuck-projects' before using it.
4964    - C-c C-x b shows the current subtree in an indirect buffer, in
4965      another, dedicated frame.
4966    - Custom agenda commands take precedence over builtin commands.
4967    - auto-fill for comments works on the Emacs side, XEmacs not yet.
4969 * Version 4.57
4970    - Sorting of outline items on same level.
4971    - Sorting tables automatically selects line range between hlines.
4972    - Changes in Agenda buffer
4973      - `C-c C-o' follows a link in the current line.
4974      - `C-c $' archives the subtree corresponding to the line.
4975      - Changing dates with S-left and S-right show new date in agenda,
4976        but still do not move the entry to the new date.
4977      - new option `org-agenda-skip-scheduled-if-done'.
4978    - Agenda and sparse tree construction using tag matches can now
4979      use regular expressions.
4980    - When prompted for a date/time, entering "+7" indicates a date
4981      7 days from now - but only this is the only thing you give.
4982    - Custom time formats also apply to exported html and ascii.
4983    - Bug fixes.
4985 * Version 4.56
4986    - `C-k' in agenda kills current line and corresponding subtree in file.
4987    - XEmacs compatibility issues fixed, in particular tag alignment.
4988    - M-left/right now in/outdents plain list items, no Shift needed.
4989    - Bug fixes.
4991 * Version 4.55
4992    - Bug fixes.
4994 * Version 4.54
4995    - Improvements to fast tag selection
4996      + show status also in target line.
4997      + option to auto-exit after first change to tags list (see manual).
4998    - Tags sparse trees now also respect the settings in
4999      `org-show-hierarchy-above' and `org-show-following-heading'.
5000    - Bug fixes.
5002 * Version 4.53
5003    - Custom time formats can be overlayed over time stamps.
5004    - New option `org-agenda-todo-ignore-deadlines'.
5005    - Work-around for flyspell bug (CVS Emacs has this fixed in flyspell.el).
5006    - Work-around for session.el problem with circular data structures.
5007    - Bug fixes.
5009 * Version 4.52
5010    - TAG matches can also specify conditions on TODO keywords.
5011    - The fast tag interface allows setting tags that are not in the
5012      predefined list.
5013    - Bug fixes.
5015 * Version 4.51
5016    - Link abbreviations (manual section 4.5).
5017    - More control over how agenda is displayed.  See the new variables
5018      `org-agenda-window-setup', `org-agenda-restore-windows-after-quit'.
5019    - Bug fixes.
5021 * Version 4.50
5022    - Closing a TODO item can record an additional note.
5023      See variables `org-log-done' and `org-log-note-headings'.
5024    - Inserting headlines and bullets can leave an extra blank line.
5025      See variable `org-blank-before-new-entry'. (Ed Hirgelt patch)
5026    - [[bracket links]] in the agenda are active just as in org-mode buffers.
5027    - C-c C-o on a date range displays the agenda for exactly this range.
5028    - The default for `org-cycle-include-plain-lists' is back to nil.
5029    - Calls to `org-occur' can be stacked by using a prefix argument.
5030    - The options `org-show-hierarchy-above' and `org-show-following-heading'
5031      now always default to `t', but can be customized differently for
5032      different types of sparse trees or jump commands.
5033    - Bug fixes.
5036 * Version 4.49
5037    - Agenda views can be made in batch mode from the command line.
5038    - `org-store-link' does the right thing in dired-mode.
5039    - File links can contain environment variables.
5040    - Full Emacs 21 compatibility has been restored.
5041    - Bug fixes.
5043 * Version 4.47
5044    - Custom commands may produce an agenda which contains several blocks,
5045      each block created by a different agenda command.
5046    - Agenda commands can be restricted to the current file, region, subtree.
5047    - The timeline command must now be called through the agenda
5048      dispatcher (C-c a L).  `C-c C-r' no longer works.
5049    - Agenda items can be sorted by tag.  The *last* tag is used for this.
5050    - The prefix and the sorting strategy for agenda items can depend
5051      upon the agenda type.
5052    - The handling of `mailto:' links can be customized, see the new
5053      variable `org-link-mailto-program'.
5054    - `mailto' links can specify a subject after a double colon,
5055      like [[mailto:carsten@orgmode.org::Org-mode is buggy]].
5056    - In the #+STARTUP line, M-TAB completes valid keywords.
5057    - In the #+TAGS: line, M-TAB after ":" inserts all currently used tags.
5058    - Again full Emacs 21 support:  Checkboxes and publishing are fixed.
5059    - More minor bug fixes.
5061 * Version 4.45
5062    - Checkbox lists can show statistics about checked items.
5063    - C-TAB will cycle the visibility of archived subtrees.
5064    - Documentation about checkboxes has been moved to chapter 5.
5065    - Bux fixes.
5067 * Version 4.44
5068    - Clock table can be done for a limited time interval.
5069    - Obsolete support for the old outline mode has been removed.
5070    - Bug fixes and code cleaning.
5072 * Version 4.43
5073    - Bug fixes
5074    - `s' key in the agenda saves all org-mode buffers.
5076 * Version 4.41
5077    - Shift-curser keys can modify inactive time stamps (inactive time
5078      stamps are the ones in [...] brackets.
5079    - Toggle all checkboxes in a region/below a headline.
5080    - Bug fixes.
5082 * Version 4.40
5083    - Bug fixes.
5086 * Version 4.39
5087    - Special tag ARCHIVE keeps a subtree closed and away from agenda lists.
5088    - LaTeX code in Org-mode files can be converted to images for HTML.
5089    - Bug fixes.
5090    - CDLaTeX-mode features can be used in Org-mode to help inserting
5091      LaTeX environment and math.
5093 * Version 4.38
5094    - noutline.el is now required (important for XEmacs users only).
5095    - Dynamic blocks.
5096    - Archiving of all level 1 trees without open TODO items.
5097    - Clock reports can be inserted into the file in a special section.
5098    - FAQ removed from the manual, now only on the web.
5099    - Bug fixes.
5101 * Version 4.37
5102    - Clock-feature for measuring time spent on specific items.
5103    - Improved emphasizing allows configuration and stacking.
5105 * Version 4.36
5106    - Improved indentation of ASCII export, when headlines become items.
5107    - Handling of 12am and 12pm fixed.  Times beyond 24:00 can be used
5108      and will not lead to conflicts.
5109    - Support for mutually exclusive TAGS with the fast tags interface.
5110    - Bug fixes.
5112 * Version 4.35
5113    - HTML export is now valid XHTML.
5114    - Timeline can also show dates without entries.  See new option
5115      `org-timeline-show-empty-dates'.
5116    - The bullets created by the ASCII exporter can now be configured.
5117      See the new option `org-export-ascii-bullets'.
5118    - New face `org-upcoming-deadline' (was `org-scheduled-previously').
5119    - New function `org-context' to allow testing for local context.
5121 * Version 4.34
5122    - Bug fixes.
5124 * Version 4.33
5125    - New commands to move through plain lists: S-up and S-down.
5126    - Bug fixes and documentation update.
5128 * Version 4.32
5129    - Fast (single-key-per-tag) interface for setting TAGS.
5130    - The list of legal tags can be configured globally and locally.
5131    - Elisp and Info links (thanks to Todd Neal).
5132    - `org-export-publishing-directory' can be an alist, with different
5133      directories for different export types.
5134    - All context-sensitive commands use `call-interactively' to dispatch.
5135    - `org-confirm-shell-links' renamed to `org-confirm-shell-link-function'.
5136    - Bug fixes.
5138 * Version 4.31
5139    - Bug fixes.
5141 * Version 4.30
5142    - Modified installation: Autoloads have been collected in org-install.el.
5143    - Logging (org-log-done) is now a #+STARTUP option.
5144    - Checkboxes in plain list items, following up on Frank Ruell's idea.
5145    - File links inserted with C-c C-l will use relative paths if the linked
5146      file is in the current directory or a subdirectory of it.
5147    - New variable `org-link-file-path-type' to specify preference for
5148      relative and absolute paths.
5149    - New CSS classes for tags, timestamps, timestamp keywords.
5150    - Bug and typo fixes.
5153 * Version 4.29
5154    - Inlining images in HTML export now depends on wheather the link
5155      contains a description or not.
5156    - TODO items can be scheduled from the global TODO list using C-c C-s.
5157    - TODO items already scheduled can be made to disappear from the global
5158      todo list, see `org-agenda-todo-ignore-scheduled'.
5159    - In Tables, formulas may also be Lisp forms.
5160    - Exporting the visible part of an outline with `C-c C-x v' works now
5161      for all available exporters.
5162    - Bug fixes, lots of them :-(
5164 * Version 4.28
5165    - Bug fixes.
5167 * Version 4.27
5168    - HTML exporter generalized to receive external options.
5169      As part of the process, author, email and date have been moved to the
5170      end of the HTML file.
5171    - Support for customizable file search in file links.
5172    - BibTeX database links as first application of the above.
5173    - New option `org-agenda-todo-list-sublevels' to turn off listing TODO
5174      entries that are sublevels of another TODO entry.
5176 * Version 4.26
5177    - Bug fixes.
5179 * Version 4.25
5180    - Revision of the font-lock faces section, with better tty support.
5181    - TODO keywords in Agenda buffer are fontified.
5182    - Export converts links between .org files to links between .html files.
5183    - Better support for bold/italic/underline emphasis.
5185 * Version 4.24
5186    - Bug fixes.
5188 * Version 4.23
5189    - Bug fixes.
5191 * Version 4.22
5192    - Bug fixes.
5193    - In agenda buffer, mouse-1 no longer follows link.
5194      See `org-agenda-mouse-1-follows-link' and `org-mouse-1-follows-link'.
5196 * Version 4.20
5197    - Links use now the [[link][description]] format by default.
5198      When inserting links, the user is prompted for a description.
5199    - If a link has a description, only the description is displayed
5200      the link part is hidden.  Use C-c C-l to edit the link part.
5201    - TAGS are now bold, but in the same color as the headline.
5202    - The width of a table column can be limited by using a field "<N>".
5203    - New structure for the customization tree.
5204    - Bug fixes.
5207 * Version 4.13
5208    - The list of agenda files can be maintainted in an external file.
5209    - Bug fixes.
5211 * Version 4.12
5212    - Templates for remember buffer.  Note that the remember setup changes.
5213      To set up templates, see `org-remember-templates'.
5214    - The time in new time stamps can be rounded, see new option
5215      `org-time-stamp-rounding-minutes'.
5216    - Bug fixes (there are *always* more bugs).
5218 [...]
5220 Version 4.00
5221    - Headlines can contain TAGS, and Org-mode can produced a list
5222      of matching headlines based on a TAG search expression.
5223    - `org-agenda' has now become a dispatcher that will produce the agenda
5224      and other views on org-mode data with an additional keypress.
5227 * Version 3.24
5228    - Switching and item to DONE records a time stamp when the variable
5229      `org-log-done' is turned on.  Default is off.
5231 * Version 3.23
5232    - M-RET makes new items as well as new headings.
5233    - Various small bug fixes
5235 * Version 3.22
5236    - CamelCase words link to other locations in the same file.
5237    - File links accept search options, to link to specific locations.
5238    - Plain list items can be folded with `org-cycle'.  See new option
5239      `org-cycle-include-plain-lists'.
5240    - Sparse trees for specific TODO keywords through numeric prefix
5241      argument to `C-c C-v'.
5242    - Global TODO list, also for specific keywords.
5243    - Matches in sparse trees are highlighted (highlights disappear with
5244      next buffer change due to editing).
5246 * Version 3.21
5247    - Improved CSS support for the HTML export.  Thanks to Christian Egli.
5248    - Editing support for hand-formatted lists
5249      - M-S-cursor keys handle plain list items
5250      - C-c C-c renumbers ordered plain lists
5252 * Version 3.20
5253    - There is finally an option to make TAB jump over horizontal lines
5254      in tables instead of creating a new line before that line.
5255      The option is `org-table-tab-jumps-over-hlines', default nil.
5256    - New command for sorting tables, on `C-c ^'.
5257    - Changes to the HTML exporter
5258      - hand-formatted lists are exported correctly, similar to
5259        markdown lists.  Nested lists are possible.  See the docstring
5260        of the variable `org-export-plain-list-max-depth'.
5261      - cleaned up to produce valid HTML 4.0 (transitional).
5262      - support for cascading style sheets.
5263    - New command to cycle through all agenda files, on C-,
5264    - C-c [ can now also be used to change the sequence of agenda files.
5267 * Version 3.19
5268    - Bug fixes
5270 * Version 3.18
5271    - Export of calendar information in the standard iCalendar format.
5272    - Some bug fixes.
5274 * Version 3.17
5275    - HTML export specifies character set depending on coding-system.
5277 * Version 3.16
5278    - In tables, directly after the field motion commands like TAB and RET,
5279      typing a character will blank the field.  Can be turned off with
5280      variable `org-table-auto-blank-field'.
5281    - Inactive timestamps with `C-c !'.  These do not trigger the agenda
5282      and are not linked to the calendar.
5283    - Additional key bindings to allow Org-mode to function on a tty emacs.
5284    - `C-c C-h' prefix key replaced by `C-c C-x', and `C-c C-x C-h' replaced
5285      by `C-c C-x b' (b=Browser).  This was necessary to recover the
5286      standard meaning of C-h after a prefix key (show prefix bindings).
5288 * Version 3.15
5289    - QUOTE keyword at the beginning of an entry causes fixed-width export
5290      of unmodified entry text. `C-c :' toggles this keyword.
5291    - New face `org-special-keyword' which is used for COMMENT, QUOTE,
5292      DEADLINE and SCHEDULED, and priority cookies.  Default is only a weak
5293      color, to reduce the amount of aggressive color in the buffer.
5295 * Version 3.14
5296    - Formulas for individual fields in table.
5297    - Automatic recalculation in calculating tables.
5298    - Named fields and columns in tables.
5299    - Fixed bug with calling `org-archive' several times in a row.
5301 * Version 3.13
5302    - Efficiency improvements:  Fewer table re-alignments needed.
5303    - New special lines in tables, for defining names for individual cells.
5305 * Version 3.12
5306    - Tables can store formulas (one per column) and compute fields.
5307      Not quite like a full spreadsheet, but very powerful.
5308    - table.el keybinding is now `C-c ~'.
5309    - Numeric argument to org-cycle does `show-subtree' above on level ARG.
5310    - Small changes to keys in agenda buffer.  Affected keys:
5311      [w] weekly view; [d] daily view; [D] toggle diary inclusion.
5312    - Bug fixes.
5314 * Version 3.11
5315    - Links inserted with C-c C-l are now by default enclosed in angle
5316      brackets.  See the new variable `org-link-format'.
5317    - ">" terminates a link, this is a way to have several links in a line.
5318      Both "<" and ">" are no longer allowed as characters in a link.
5319    - Archiving of finished tasks.
5320    - C-<up>/<down> bindings removed, to allow access to paragraph commands.
5321    - Compatibility with CUA-mode (see variable `org-CUA-compatible').
5322    - Compatibility problems with viper-mode fixed.
5323    - Improved html export of tables.
5324    - Various clean-up changes.
5326 * Version 3.10
5327    - Using `define-derived-mode' to derive `org-mode' from `outline-mode'.
5330 * Version 3.09
5331    - Time-of-day specifications in agenda are extracted and placed
5332      into the prefix.  Timed entries can be placed into a time grid for
5333      day.
5335 * Version 3.08
5336    - "|" no longer allowed as part of a link, to allow links in tables.
5337    - The prefix of items in the agenda buffer can be configured.
5338    - Cleanup.
5340 * Version 3.07
5341    - Some folding inconsistencies removed.
5342    - BBDB links to company-only entries.
5343    - Bug fixes and global cleanup.
5345 * Version 3.06
5346    - M-S-RET inserts a new TODO heading.
5347    - New startup option `content'.
5348    - Better visual response when TODO items in agenda change status.
5349    - Window positioning after visibility state changes optimized and made
5350      configurable.  See `org-cycle-hook' and `org-occur-hook'.
5352 * Version 3.05
5353    - Agenda entries from the diary are linked to the diary file, so
5354      adding and editing diary entries can be done directly from the agenda.
5355    - Many calendar/diary commands available directly from agenda.
5356    - Field copying in tables with S-RET does increment.
5357    - C-c C-x C-v extracts the visible part of the buffer for printing.
5358    - Moving subtrees up and down preserves the whitespace at the tree end.
5360 * Version 3.04
5361    - Table editor optimized to need fewer realignments, and to keep
5362      table shape when typing in fields.
5363    - A new minor mode, orgtbl-mode, introduces the Org-mode table editor
5364      into arbitrary major modes.
5365    - Fixed bug with realignment in XEmacs.
5366    - Startup options can be set with special #+STARTUP line.
5367    - Heading following a match in org-occur can be suppressed.
5369 * Version 3.03
5370    - Copyright transfer to the FSF.
5371    - Effect of C-u and C-u C-u in org-timeline swapped.
5372    - Timeline now always contains today, and `.' jumps to it.
5373    - Table editor:
5374      - cut and paste of rectangular regions in tables
5375      - command to convert org-mode table to table.el table and back
5376      - command to treat several cells like a paragraph and fill it
5377      - command to convert a buffer region to a table
5378      - import/export tables as tab-separated files (exchange with Excel)
5379    - Agenda:
5380      - Sorting mechanism for agenda items rewritten from scratch.
5381      - Sorting fully configurable.
5382      - Entries specifying a time are sorted together.
5383    - Completion also covers option keywords after `#-'.
5384    - Bug fixes.
5386 * Version 3.01
5387    - New reference card, thanks to Philip Rooke for creating it.
5388    - Single file agenda renamed to "Timeline".  It no longer shows
5389      warnings about upcoming deadlines/overdue scheduled items.
5390      That functionality is now limited to the (multifile) agenda.
5391    - When reading a date, the calendar can be manipulated with keys.
5392    - Link support for RMAIL and Wanderlust (from planner.el, untested).
5393    - Minor bug fixes and documentation improvements.
5395 * Version 3.00
5396    - Multifile Agenda shows current entries from many different files.
5397    - TeXInfo documentation (thanks to Christian Egli for the conversion).
5398    - Additional applications for TODO keywords, see documentation.
5399      Different files may have different TODO keywords etc.
5400    - Priorities for TODO items.
5401    - The browser mode used by `org-remember-handler' is improved.
5402    - Images get inlined in HTML export (thanks to Carsten Wimmer).
5403    - File links can contain line numbers, like file:/usr/etc/config:255
5404    - Minor bug fixes.
5407 * Version 2.10
5408    - TODO entries can have additional states besides TODO and DONE.
5409      See new variable `org-todo-keywords'.
5410    - TODO keywords can be interpreted as categories.  See variable
5411      `org-todo-interpretation'.
5412    - M-TAB completion on TODO keywords, TeX symbols, and normal words.
5413    - All keywords (like TODO, DEADLINE etc) are configurable.
5414    - Cursor positioning optimized after pro/demotion and TODO cycling.
5415    - Emphasizing in HTML works now for *bold*, /italic/ and _underline_.
5416    - New commands to kill, copy and yank entire subtrees.  Yanking
5417      modifies the level of the tree before insertion.
5418    - New command `org-goto' (C-c C-j) to quickly move to other locations
5419      in the buffer without affecting outline visibility.
5420    - Hooks for John Wiegley's remember.el.
5421    - `org-read-date' pops up calendar for date selection with the mouse.
5422      See variable `org-popup-calendar-for-date-prompt'.
5424 * Version 2.6
5425    - TODO items can be SCHEDULED to a certain date.
5426    - Expired DEADLINEs are ignored if in an entry marked DONE.
5427    - From the diary or time-sorted view (C-c C-r), C-c C-t can be used to
5428      change the TODO state of an item remotely.
5429    - Horizontal computations in table editor. See `org-table-eval-formula'.
5430    - Fixed bug with summing tables (command `org-table-sum', `C-c +').
5431    - Calendar window follows the timestamp when a timestamp is changed.
5432      New variable `org-calendar-follow-timestamp-change'.
5433    - Time-sorted view (`org-diary-view', C-c C-r) now uses the prefix
5434      argument to force inclusion of unscheduled TODO items.
5435    - New variable `org-confirm-shell-links' to turn of safety query.
5436    - New variable `org-open-non-existing-files'.
5438 * Version 2.4
5439    - A time-sorted view on all time stamps can be created with C-c C-r.
5440    - Timestamps and Deadlines can be shown in the Emacs diary.
5441    - Date ranges introduced.
5442    - Time-string formats are no longer configurable.
5443    - Vertical lines in tables can be made invisible with `C-c |'.
5444    - New "link" type to execute shell commands, like "shell:ls *.org"
5445    - Upon export, "myfile.org" becomes "myfile.html" or "myfile.txt",
5446      instead of "myfile.org.html" or "myfile.org.txt".
5447    - When the cursor is in the white space at the beginning of a line,
5448      TAB removes the whitespace before indenting again.
5450 * Version 2.0
5451    - Windows (NT/2000) support.
5452    - Works with both Emacs and XEmacs.
5453    - Fully automatic table editor.
5454    - New link types into Gnus, VM and BBDB.
5455    - Other link system changes
5456      - Time stamps are treated as links to the calendar.
5457      - Easy creation of links with global command `org-store-link'.
5458      - Insertion of links with `C-c C-l' works differently now.
5459      - Space characters allowed as part of a link.
5460      - Options in `org-file-apps' extended.  The command may now be
5461        symbol 'emacs', or a lisp form.
5462    Please re-read the manual section about links.
5463    - Timestamp changes
5464      - `org-deadline' now prompts for a date.
5465      - A line can now contain several timestamps.  Updating of a
5466        timestamp only happens if the cursor is at the timestamp.
5467      - Changed the time-stamp-format to ISO, to make sure it will
5468        always work (non-English month names had caused problems
5469        with `parse-time-string'.).  Changing the time stamp format
5470        is not recommended.
5471    - Picture mode enhancements have been removed from org.el
5474 * Version 1.4
5475    - Some option name changes, not backward compatible.
5476    - ASCII exporter upgrade: Table of contents.
5477    - HTML exporter upgrade: fixed-width regions, better
5478      sub/superscripts, many TeX symbols supported.
5479    - Calendar support.
5481 * Version 1.3
5482    - HTML exporter upgrade, in particular table of contents
5486