Cleaning up the progress logging code.
[org-mode.git] / ORGWEBPAGE / Changes.org
blob93b281bfdbed9bf247582c482d8974b33194a4cd
1 #   -*- mode: org; org-export-publishing-directory: "tmp"; fill-column: 65 -*-
3 #+TITLE: Org-mode list of User-visible changes
4 #+AUTHOR:  Carsten Dominik
5 #+EMAIL:  carsten at orgmode dot org
6 #+OPTIONS: H:3 num:nil toc:nil \n:nil @:t ::t |:t ^:{} *:t TeX:t LaTeX:nil
8 * Version 5.22
10 ** Incompatible changes
12    - The variable `org-log-done' is obsolete.  Please use
13      `org-log-progress' instead.  For Emacs 21 users this is a
14      must, for the rest of us, `org-log-done' can still be used
15      as an alias.
17 ** Details
19 *** Changes to logging progress
21     There is now more control over which state changes are being
22     logged in what way.  You can now request that the change to a
23     state does one of three options:
24     - No extre record of this state change.
25     - Record a time stamp only, without further user interaction
26     - Prompt for a note and record a time stamp.
28     First of all, the variable `org-log-done' is obsolete and
29     will be replaced by `org-log-progress', which is used in
30     exactly the same way but has a more appropriate
31     name. `org-log-done' only exists as a variable alias now.
33     `org-log-progress' may have these values:
35     - 'done    Record a time stamp when the entry is done.
36     - t        backward compatibility for `done', should not be used
37     - 'state   Record a time stamp for each state change.
38     - list     symbols indicating where a note should be taken,
39                may contain the symbols `done', `state', and
40                `clock-out'
42     However, the better way to configure this on a per-keyword
43     basis, using the marker characters "!" and "@".  For example
45     #+TODO: TODO(t) STARTED(s!) WAIT(w@) | DONE(d!) CANCELLED(c@)
47     Now a time stamp will be recorded for STARTED, WAIT, DONE,
48     and CANCELLED.  You will be prompted for an additional note
49     for WAIT and CANCELLED.  Nothing will be recorded when you
50     switch to TODO. 
52 *** Misc
54    - M-RET no longer brakes a line in the middle, it will make a
55      new line ofter the current or (if cursor is at the beginning
56      of the line) before the current line.
58    - RET, when executed in a headline after the main text and
59      before the tags will leave the tags in the current line and
60      create a new line below the current one.
62 * Version 5.21
64   Bug fixes, in particular the long-hunted bug about wrong window
65   positions after pressing SPACE in the agenda.  Hopefully this
66   is really fixed.
68 * Version 5.20
70 ** Overview
72 *** Remember/Refile/Goto
74     - The use of prefix arguments for the commands `org-remember'
75       and `org-refile' has been normalized.
77     - The clock can now safely be used in a remember buffer.
78       
79     - The variable `org-remember-use-refile-when-interactive'
80       introduced only in 5.19 is already obsolete.  Please use
81       `org-remember-interactive-interface' instead.
83     - It is no longer necessary to update the refiling targets.
85     - Automatic isearch in `org-goto'.
87     - Outline-path-completion as alternative org-goto interface.
89 *** Misc
91     - Checkboxes now work hierarchically.
93     - `C-k' can now behave specially in headlines.
95     - Repeater for tasks in plain timestamps.
97     - All clock intervals of an item show in agenda/timeline.
98       
99     - New parameter =:step= for clocktable, to get daily reports.
101     - Never loose a repeaded scheduled item from the agenda.
103     - Archiving a subtree now stores the outline path in a property.
105     - Links to messages in Apple Mail.
107     - Bug fixes.
109 ** Incompatible Changes
110    
111    - The variable `org-remember-use-refile-when-interactive'
112      introduced only in 5.19 is already obsolete.  Please use
113      `org-remember-interactive-interface' instead.
115 ** Details
117 *** Remember/Refile/Goto
119     - The use of prefix arguments for the commands `org-remember'
120       and `org-refile' has been normalized:
122       + when called without prefix argument, the command does its
123         normal job, starting a remember note or refiling a tree.
125       + when called with a single C-u prefix, these commands can be
126         used to select a target location and to jump there.  In
127         the case of `org-remember', you will be prompted for a
128         template and then Emacs jumps to the default target
129         location or this template.  In the case of `org-refile',
130         you select a location from the refile target list and jump
131         there.
133       + when called with two prefixes (`C-u C-u'), the command
134         jumps to the location last used for storing a note or a
135         moved tree.
137     - When the clock is running inside an remember buffer, storing
138       the remember buffer with `C-c C-c' will automatically clock
139       out.  This was inspired by a request by Rainer Stengle. 
140       
141     - The variable `org-remember-use-refile-when-interactive'
142       introduced only in 5.19 is already obsolete.  Please use
143       `org-remember-interactive-interface' instead.  This new
144       variable does select the interface that is used to select
145       the target for a remember note in an interactive way.
146       Possible values are:
148       + `outline': Use an outline of the document to select a
149         location.  
150       + `outline-path-completion': Use completion of an outline
151         path to select a location.
152       + `refile': Offer the `org-refile-targets' as possible
153         targets.
155     - It is no longer necessary to update the refiling targets -
156       they are always current.
158     - In `org-goto', typing characters now automatically starts
159       isearch from the beginning of the buffer.  The isearch is
160       special also because it only matches in headline.  This
161       goes some way toward saving org-goto from being removed
162       from Org-mode.  Thanks to Piotr Zielinski for the code, and
163       sorry that it took me so long to put it in.  If you prefer
164       to use single letters n,p,f,b,u,q for navigation as before,
165       configure the variable `org-goto-auto-isearch'.
167     - Outline-path-completion is now available as an alternative
168       interface in the command `org-goto'.  Please select the
169       default interface you'd like to use with the new variable
170       `org-goto-interface'.  You can then select the alternative
171       interface with a prefix argument to `C-c C-j' (org-goto).  I
172       am considering to make outline-path-completion the default
173       interface.  Comments?
176 *** Misc
178     - Checkboxes now work hierarchically.  When a plain-list item
179       with a checkbox has children with checkboxes, the status of
180       the item's checkbox is calculated from the children, each
181       time a checkbox is toggled with C-c C-c.  Thanks to Miguel
182       A. Figueroa-Villanueva for a patch to this effect.
184     - There is a new variable `org-special-ctrl-k'.  When set,
185       `C-k' will behave specially in headlines:
187       + When the cursor is at the beginning of a headline, kill
188         the entire line and possible the folded subtree below the
189         line.
190       + When in the middle of the headline text, kill the
191         headline up to the tags.
192       + When after the headline text, kill the tags.
194       This is following a proposal by Piotr Zielinski.
196     - You can now also have a plain (as opposed to deadline or
197       scheduled) repeater timestamp in a task.  Switching the task
198       to DONE will now also shift a plain time stamp.  This was a
199       request by Austin Frank.
201     - If an entry is clocked multiple times, it will now show up
202       several times in the agenda and timeline buffers, when
203       log-mode is on.  This was a proposal by Jurgen Defurne.
204       
205     - The clock table accepts a new parameter =:step=.  This
206       parameter can be `day' or `week' and will result in separate
207       tables for each day or week in the requested time interval.
208       This was triggered by a proposal by Sacha Chua in her [[http://sachachua.com/wp/2007/12/30/clocking-time-with-emacs-org/][blog]].
210     - A time-stamp with a repeater now no longer refers to the
211       date *closest* to the current day.  Instead, it means either
212       today or the most recent match.  This change makes sure that
213       overdue scheduled or deadline items never disappear from the
214       agenda.  With the previous convention, an overdue scheduled
215       item would disappear.  For example, a weekly item scheduled
216       for Sunday would appear as overdue until Wednesday, and the
217       suddenly disappear until next Sunday.  Now the item will
218       show up as "Sched 7x" on Saturday.  From Sunday on it will
219       be in the list as "Scheduled", i.e. old sins will be
220       forgiven.  This follows a request by Warong, Dennis and
221       Bernt.
223     - Archiving a subtree now creates an additional property,
224       =ARCHIVE_OLPATH=.  This property contains the "path" in the
225       outline tree to the archived entry, as it was in the
226       original file.  For example, archiving =Fix the door= in the
227       following hierarchy
228       
229       : * Tasks
230       : ** HOME
231       : *** Garage
232       : **** Fix the door
233       
234       will file is with the following property
235       
236       : :ARCHIVE_PATH: Task/HOME/Garage
237       
238       Note that you can configure (i.e. limit) the information
239       that gets stored upon archiving with the variable
240       `org-archive-save-context-info'.
242     - New file `org-mac-message.el' by John Wiegley to create
243       links for messages in Apple Mail, and to follow these
244       links.
246     - Bug fixes.
248 * Version 5.19
250 ** Overview
252    - Column view can list the clocked times of a subtree.
254    - Storing remember notes can use the `org-refile' interface.
256    - Storing remember notes no longer produced empty lines.
258    - Moving subtrees now folds all siblings of the subtree.
260    - New variable `org-agenda-todo-keyword-format'.
262    - Hack to allow brackets in link descriptions.
264    - Clocking into an entry can enforce a specific TODO state.
266    - EXPORT_FILE_NAME may be an absolute file name with "~".
268    - Bug fixes, lots of them.
270 ** Details
272    - A new special column definition lists the sum of all CLOCK
273      entries in a subtree.  For example
275      : #+COLUMNS: %20ITEM %10Time_Estimate{:} %CLOCKSUM
277      will allow you to compare estimated times (as given in the
278      Time_Estimate property) with the clocked times.  This was a
279      request by Bernt Hansen.
281    - Storing remember notes can now use the `org-refile'
282      interface instead of the `org-goto' interface (see the
283      variable `org-remember-use-refile-when-interactive').
284      Nothing will change if the note is stored immediately after
285      pressing `C-c C-c' in the =*Remember*= buffer.  But if you
286      have chosen (e.g. by pressing `C-u C-c C-c') to
287      interactively select the filing location (file and
288      headline), the refile interface will be used instead.  I am
289      excited about this change, because the `org-goto' interface
290      is basically a failure, at least for this application.  Note
291      that in any case the refile interface has to be configured
292      first by customizing `org-refile-targets'.
294    - Notes inserted with remember now remove any whitespace
295      before and after the note before being pasted, so that there
296      will be no empty lines inserted together with the note.  We
297      could invent special syntax in remember templates to allow
298      creating empty lines before a note - is there anyone who'd
299      want this?
301    - Moving subtrees now folds all siblings of the subtree.  This
302      is the only reasonably simple way I could find to avoid the
303      reported inconsistencies in the folding state of the outline
304      tree after moving entries.  There are reasons to like this
305      new behavior, because it easily visualizes where the tree is
306      located after the move.  Still, not everyone might be happy
307      with this.  Massive complaining would be needed to make me
308      fix this.
310    - New variable `org-agenda-todo-keyword-format' to specify the
311      width of the TODO keyword field in the agenda display.  Use
312      it to get things to line up better.  This was a proposal by
313      Rainer Stengele.
315    - If a link description inserted with `C-c C-l' contains
316      brackets, the brackets will now be converted into curly
317      braces.  This looks similar enough.  Supporting brackets in
318      link descriptions is, for technical reasons too long to
319      explain here, complex.
321    - The new option `org-clock-in-switch-to-state' can be set to
322      a TODO state that will be enforced when the clock is started
323      on an entry.  This follows an idea by Sacha Chua.
325    - The EXPORT_FILE_NAME property may now also be an absolute
326      file name, and it may contain abbreviations like "~" for the
327      users home directory.  This was requested by Adam Spiers.
329    - Bug fixes, lots of them.
331 * Version 5.18
333   Minor fixes.
335 * Version 5.17
337 ** Details
339 *** Whitespace
341     - When cutting, pasting, or moving subtrees and items, the
342       empty lines *before* the subtree/item now belong to the
343       part and will be moved with it.  There is one exception to
344       this rule: If the first child is moved down (or,
345       equivalently, the second is moved up), the amount of empty
346       lines *above* the first child to be moved along with it is
347       limited by the number of empty lines *below* it.  This
348       sounds complicated, but it allows to have extra empty space
349       before the first child and still have good behavior of the
350       subtree motion commands.
352     - Plain lists items work the same.
354     I believe we have finally nailed this one.  Thanks to Daniel
355     Pittman for bring this up again and to Eric Schulte for
356     pointing out that it is the empty lines *before* an entry
357     that really count.
359     This change was non-trivial, please give it a good test and
360     let me know about any problems.
362 *** Remember
364     - The new command `org-remember-goto-last-stored' will jump
365       to the location of the remember note stored most recently.
366       If you have `org-remember' on a key like `C-c r', then you
367       can go to the location with a double prefix arg: `C-u C-u
368       C-c r'.  This was a proposal by Rainer Stengele.
370     - Template items that are being prompted for can now specify
371       a default value and a completion table.  Furthermore,
372       previous inputs at a specific prompt are captured in a
373       history variable.  For example:
375       : %^{Author|Roald Dahl|Thomas Mann|Larry Niven}
377       will prompt for an author name.  Pressing RET without
378       typing anything will select "Roald Dahl".  Completion will
379       give you any of the three names.  And a history will be
380       kept, so you can use the arrow keys to get to previous
381       input.  The history is tied to the prompt.  By using the
382       same prompt in different templates, you can build a history
383       across templates.  The ideas for this came from proposals
384       by Bastien and Adam.
386     - When a remember template contains the string `%!', the note
387       will be stored immediately after all template parts have
388       been filled in, so you don't even have to press `C-c
389       C-c'. The was a proposal by Adam Spiers.
391 *** Refile
393     - `org-refile-targets' has a new parameter to specify a
394       maximum level for target selection.  Thanks to Wanrong Lin
395       for this proposal.
397     - When the new option `org-refile-use-outline-path' is set,
398       refile targets will be presented like a file path to the
399       completion interface: "level 1/level 2/level 3".  This
400       may be the fastest interface yet to get to a certain
401       outline entry.  Do we need to use this interface in other
402       places?  Thanks to Jose Ruiz for this proposal.
404 * Version 5.16
406 ** Details
408 *** Restriction lock on agenda scope
410     You can now permanently lock the agenda construction to a
411     certain scope, like a file or a subtree.  So instead of
412     pressing "<" for each command in the agenda dispatcher, you
413     only once select a restriction scope.  All subsequent agenda
414     commands will than respect this restriction.  For example,
415     you can use this at work, to limit agendas to your work file
416     or tree, and at home to limit to the home file or tree.  Or
417     you can use it during the day in order to focus in on certain
418     projects.
420     You select a scope with the command `C-c C-x <', which
421     restricts to the current subtree.  When called with a `C-u'
422     prefix, the restriction is to the current file.  You can also
423     make restrictions from the speedbar frame, see below.
425     When making a new restriction and an agenda window is
426     currently visible, it will immediately be updated to reflect
427     the new scope.  TO if you like you can display an agenda view
428     and then watch it change in various scopes.
430     To get rid of the restriction, use the command "C-c C-x >".
431     Or press ">" in the agenda dispatcher.  Also, and use of "<"
432     in the dispatcher will disable the restriction lock and
433     select a new restriction.
435     Thanks to Rick Moynihan for triggering this development. 
437 *** Imenu and Speedbar support
439     - Org-mode now supports Imenu.  For example, with the setting
441       : (add-hook 'org-mode-hook 
442       :    (lambda () 'imenu-add-to-menubar "Imenu"))
444       a menu will be created in each Org-mode buffer that
445       provides access to all level 1 and level 2 headings.  The
446       depth of the menu can be set with the variable
447       `org-imenu-depth'.
449     - org-mode now supports Speedbar.  This means that you can
450       drill into the first and second level headlines of an
451       Org-mode file right from the speedbar frame.
453     - You can set a restriction lock for the Org-mode agenda to a
454       file or a subtree directly from the speedbar frame.  Just
455       press "<" with the cursor on an Org-mode file or subtree to
456       set the lock and immediately update the agenda if it is
457       visible.  Use ">" to get rid of the lock again.
459 * Version 5.15
461 ** Details
463    - There are new special properties TIMESTAMP and TIMESTAMP_IA.
464      These can be used to access the first keyword-less active
465      and inactive timestamp in an entry, respectively.
467    - New variable `org-clock-heading-function'.  It can be set to
468      a function that creates the string shown in the mode line
469      when a clock is running.  Thanks to Tom Weissmann for this
470      idea.
472    - Bug fixes.
474 * Version 5.14
476 ** Overview
478    + Remember and related stuff
479      - New command `org-refile' to quickly move a note.
480      - Easy way to jump to the target location of remember template.
481      - New %-escapes in remember templates: %c %(...) and %[...]
482      - `org-remember-insinuate' simplifies remember setup
484    + Emphasis and Font-lock stuff
485      - Stacked emphasis is no longer allowed.
486      - You may finally emphasize a single character like ~*a*~.
487      - Font-lock now can hide the emphasis markers
488      - Text in the "=" emphasis is exported verbatim
489      - There is a new emphasis marker "~" for verbatim text
490      - Constructs treated specially by the exporters can be highlighted
492    + Properties and Column view
493      - More control over which properties use inheritance
494      - CATEGORY="work" can now be used in a tags/property search
495      - the {+} summary type can specify a printf-style output format
496      - New currency summary type {$}
498    + The date/time prompt
499      - While entering data, watch live the current interpretation.
500      - The date prompt now prefers to select the future
501      - Easier modification of time in an existing time stamp.
503    + Export
504      - You can now export some special strings in HTML, like "..."
505      - #+EMAIL: may contain several email addresses
507    + Agenda
508      - In the agenda, a few keys have changed: `g', `G', and `e'.
510    + Miscellaneous
511      - Class-dependent sectioning structures in LaTeX export.
512      - Radio-lists modeled after the radio tables.
513      - The default for `org-ellipsis' is back to nil
514      - Support for pabbrev-mode
515      - New variable `org-show-entry-below'.
517 ** Incompatible changes
519    - If you have customized the variable `org-emphasis-alist' or
520      org-export-emphasis-alist', you need to do it again by first
521      canceling your customization and then adding it again.
523    - I know that some people have defined their own private helper
524      functions to select a specific remember template, without being
525      prompted, like this:
527      : (defun my-remember-template-n ()
528      :    (interactive)
529      :    (org-remember ?n))
531      You need to modify this.  The character selecting the template
532      must now be the /second/ argument to `org-remember':
534      : (defun my-remember-template-n ()
535      :    (interactive)
536      :    (org-remember nil ?n))
538    - `C-c C-w' now refiles an entry.  To get a sparse tree of
539      deadlines, use `C-c / d' instead.
541 ** Details
543 *** Remember and related stuff
545     - New command `org-refile' to quickly move a note to a
546       different place.  It is bound to `C-c C-w'.  The foremost
547       application might be to put a note or task captured with
548       `remember' into the proper list or project.  The command
549       offers a list of possible refiling targets for completion.
550       These are headings under which the entry will be inserted
551       as a subitem.  By default, this will offer all top-level
552       headings in the current buffer, but you can configure the
553       variable `org-refile-targets' to get more complex
554       definitions.  For example:
556       : (setq org-refile-targets '((nil . (:level . 2))))
558       selects all level 2 headlines in the current buffer as
559       targets.  And
561       : (setq org-refile-targets
562       :      '((org-agenda-files . (:tag . "refile"))))
564       searches all agenda files and selects headlines that are
565       explicitly marked with the tag :refile: .  Note that the
566       list of targets is built upon first use only, to rebuilt
567       it, call the command `C-c C-w' with a double prefix
568       argument.
570       This is based on an idea and example implementation by Max
571       Mikhanosha.  Many thanks Max.
573     - You can now use a C-u prefix on `org-remember' to jump to
574       the location where a specific templates stores its notes.
575       For example, if you have `org-remember' bound to `C-c r',
576       then `C-u C-c r n' will get you to the file and headline
577       given in the template associated with the letter "n".
579       This was proposed by someone, but I have lost track who.
580       Sorry, and thanks anyway.
582     - New %-escapes in remember templates:
584       : %c     insert the current clipboard, like C-y would do
585       : %(..)  evaluate Lisp expression and insert the result
586       : %[..]  include file
588       Thanks to Adam Spiers and Tim O'Callaghan.
590     - New function `org-remember-insinuate' that makes is easier
591       to set Org-mode specific values for remember variables.
592       Thanks to Michael Olson for this proposal.  It is
593       equivalent to:
595       : (require 'remember)
596       : (setq remember-annotation-functions '(org-remember-annotation))
597       : (setq remember-handler-functions '(org-remember-handler))
598       : (add-hook 'remember-mode-hook 'org-remember-apply-template))
600       You might still want to set `org-default-notes-file' to
601       provide a default for templates without a file, and
602       `org-directory' to show where to find other org files.
604 *** Emphasis and Font-lock stuff
606     - Stacked emphasis like ~*/bold italic/*~ is no longer allowed.
608     - You may finally emphasize a single character like ~*a*~.
610     - Font-lock now can hide the emphasis markers, just like Muse
611       does.  Configure the variable `org-hide-emphasis-markers'
612       if you want this.  Showing the characters continues to be
613       the default in Org-mode.
615     - Text in the "=" emphasis is now exported verbatim, i.e. no
616       further parsing and interpretation of this text takes place.  So
617       you can write ~=quoted *xxx* a_x = b=~.  This and the following
618       point implement a request by Daniel Clemente.
620     - There is a new emphasis marker "~" which marks text to be
621       exported verbatim, without special formatting.  Inside an
622       org-mode file, this text is highlighted with the org-verbatim
623       face.  I am not happy with the face yet (currently is is like
624       org-code, but underlined), please suggest a better one.
626     - Whether an emphasis environment is verbatim or not is now an
627       extra flag in the variable `org-emphasis-alist'.  If you have
628       configured this variable, do it again by first canceling your
629       customization to revert to the default, and then adding it
630       again.
632     - New variable `org-highlight-latex-fragments-and-specials'.
633       When turned on, Org-mode will highlight all strings that
634       are treated in a special way by the exporters.  This is
635       great for export-oriented writing, but maybe a bit noisy
636       for note taking, so this feature is off by default.
638 *** Properties and Column view
640     - `org-use-property-inheritance' may now also be a list of
641       property names that should be treated with inheritance
642       during searches.
644     - CATEGORY="work" can now be used in a tags/property search,
645       even if the category is not specified as a property in the
646       entry, but rather is inherited or derived from #+CATEGORY.
647       Thanks to Adam, Tim, and Bastien for an interesting
648       discussion around this issue.
650     - Summary type improvements in column view.
651       * The {+} summary type can specify a printf-style output
652         format for computed values like this: {+;%5.2f}
653         This was triggered by a report by Levin.
654       * New currency summary type {$}, which so far is just a
655         shorthand for {+;%.2f}.  Do we need to have a currency
656         symbol in front of each value.  Scott Jaderholm asked for
657         this, but I am not sure if this is already what he meant.
659 *** The date/time prompt
661     There have been several small but *very* useful additions to
662     the date prompt.
664     - While entering data at the date prompt, the current
665       interpretation of your input is shown next to your input in
666       the minibuffer.  I find this great to understand how the
667       input works.  If you find the extra stuff in the minibuffer
668       annoying, turn it off with `org-read-date-display-live'.
670     - The date prompt now prefers to select the future.  If you
671       enter a date without a month, and the day number is before
672       today (for example, on the 16th of the month you enter
673       "9"), Org-mode will assume next month.  Similarly, if you
674       enter a month and no year, next year will be assumed if the
675       entered month is before the current, for example if you
676       enter "May" in September.  Thanks to John Rakestraw for
677       this great suggestion.  If you find it confusing, turn it
678       off with `org-read-date-prefer-future'.
680     - When modifying an existing date using `C-c .' at the stamp,
681       the time or time range in the stamp are now offered as
682       default input at the prompt.  This goes a long way to
683       simplifying the modification of an existing date.  Thanks
684       to Adam Spiers for this proposal.
686 *** Export (all implemented by Bastien...)
688     - You can now export special strings in HTML.  Here is the
689       list of newly performed conversions:
691       | Org | Description                        | HTML     |
692       |-----+------------------------------------+----------|
693       | ~\\-~ | double backslash followed by minus | &shy;    |
694       | ~--~  | two dashes (minuses)               | &ndash;  |
695       | ~---~ | three dashes (minuses)             | &mdash;  |
696       | ~...~ | three dots                         | &hellip; |
698       You can turn this globally on or off with
699       `org-export-with-special-strings' or locally with "-:t" or
700       "-:nil" in the #+OPTIONS line.  Thanks to Adam Spiers for
701       starting the discussion, and thanks to Daniel Clemente and
702       William Henney for relevant inputs.
704     - Comma-separated emails in #+EMAIL: are correctly exported.
705       Thanks to Raman for pointing out this omission.
707 *** Agenda
709     - In the agenda, a few keys have changed
710       : g  does now the same a "r", refresh current display,
711       :    because "g" is the Emacs standard for "refresh"
712       : G  toggle the time grid, used to be "g"
713       : e  Execute another agenda command, pretty much the same as
714       :    `C-c a', but shorter and keep the same agenda window.
716 *** Miscellaneous (much of it from Bastien)
718     - You can now select the sectioning structure of your LaTeX
719       export by setting it either globally
720       (`org-export-latex-default-class') or locally in each Org
721       file (with #+LaTeX_CLASS: myclass).  You can also customize
722       the list of available classes and their sectioning
723       structures through the new `org-export-latex-classes'
724       option.  Thanks to Daniel for discussions and suggestion on
725       this issue.
727     - You can send and receive radio lists in HTML,
728       LaTeX or TeXInfo, just as you send and receive radio
729       tables.  Check the documentation for details and examples.
731     - The default for `org-ellipsis' is back to nil, some people
732       seem to have had problems with the face as a default.
734     - Support for pabbrev-mode, needs pabbrev version 1.1.  Thanks
735       to Phillip Lord for adapting his package to make this
736       possible.
738     - New variable `org-show-entry-below' to force context-showing
739       commands to expose the body of a headline that is being
740       shown.  Thanks to Harald Weis for pointing out this omission.
743 * Version 5.13i
745 ** Details
747    - On the date/time prompt, you can now also answer with
748      something like +2tue to pick the second tuesday from today.
749      This was a proposal by Sacha Chua.
751    - When interpopating into Lisp formulas in the spreadsheet,
752      the values of constants and properties are no longer
753      enclosed into parenthesis.  When interpolating for calc,
754      this still happens in order to allow expressions in
755      constants.  This problem was reported by Eddward DeVilla.
757    - When a directory is listed in `org-agenda-files', all files
758      with extension matched by the new variable
759      `org-agenda-file-regexp' in that directory will be agenda
760      files.
762    - Bug fixes.
764 * Version 5.13
766 ** Overview
768    - Bug fixes and improvements in column view
769      + All known bugs fixed.
770      + A Column view can be captured into a dynamic block.
771      + The ITEM column is formatted core compactly.
772      + Also ITEM can be edited with `e'
774    - The agenda dispatcher
775      + `<' cycles through restriction states.
776      + Multi-character access codes to commands (= sub-keymaps).
778    - Sorting improvements
779      + User-defined sorting keys.
780      + Sorting by properties.
781      + Sorting of plain lists.
783    - HTML <div> structure
785    - Other stuff
786      + New variables, several of them.
787      + Drawers can be set on a per-file basis.
788      + Better control over priority fontification in agenda.
789      + M-up and M-down now move the current line up and down.
790      + Abort remember template selection with C-g.
792 ** Details
794 *** Bug fixes and improvements in column view
796     - All the bugs described by Scott Jaderholm have been fixed
797       (at least I hope so...).
799     - You can now capture a column view into a dynamic block, for
800       exporting or printing it.  The column view can be
802       + global, i.e. for the entire file
803       + local, i.e. for the subtree where the dynamic block is
804       + from an entry with a specific :ID: property.
806       You can identify the entry whose column view you want to
807       capture by assigning an :ID: property, and use that property
808       in the dynamic block definition.  For example:
810       : * Planning
811       :   :PROPERTIES:
812       :     :ID: planning-overview
813       :   :END:
814       :
815       : [...]
816       :
817       : * The column view
818       : #+BEGIN: columnview :hlines 1 :id "planning-overview"
819       :
820       : #+END:
822       Use `C-c C-x r' to insert such a dynamic block, and you will
823       be prompted for the ID.
825     - When the current column format displays TODO keyword,
826       priority or tags, these parts are stripped from the content
827       of the ITEM column, making for more compact and readable
828       entries.  When any of these "properties" are not listed in
829       the current column format, they are instead retained in the
830       ITEM column.
832     - You can now also edit the ITEM column with `e'.
834 *** The agenda dispatcher
836     - Instead of pressing `1' to restrict an agenda command to
837       the current buffer, or `0' to restrict it to the current
838       subtree or region, you can now also press `<' once or
839       twice, respectively.  This frees up `1' and `0' for user
840       commands, a request by Bastien.  In fact, "<" cycles
841       through different restriction states.  "1" and "0" are
842       still available for backward compatibility, until you bind
843       them to custom commands.
845     - The access code to custom agenda commands can now contain
846       several characters, effectively allowing to bundle several
847       similar commands into a sub-keymap.  This follows an
848       excellent proposal by Adam Spiers.  For example:
850       : (setq org-agenda-custom-commands
851       :   '(("h" . "HOME + Name tag searches") ; describe prefix "h"
852       :     ("hl" tags "+HOME+Lisa")
853       :     ("hp" tags "+HOME+Peter")
854       :     ("hk" tags "+HOME+Kim")))
856     - The user function option in org-agenda-custom-commands may
857       now also be a lambda expression, following a request by
858       Adam Spiers.
860 *** Sorting improvements
862     We are using a new routine for sorting entries, courtesy of
863     John Wiegley.  Many thanks to John.
865     - You can define your own function to extract a sorting key
866       and in this way sort entries by anything you like.
868     - Entries can now be sorted according to the value of a
869       property.
871     - Plain lists can be sorted.
873 *** HTML <div> structure
875     There is now a <div>-based structure in exported HTML.
877     - The table of context is wrapped into a div with a class
878       "table-of-contents".
880     - The outline structure is embedded in <div> elements with
881       classes "outline-1", "outline-2" etc.
883     - The postamble, containing the author information and the
884       date is wrapped into a div with class "postamble".
886     I am not sure if the class names are the best choice, let me
887     know if there are more "canonical" choices.
889     Thanks to Mike Newman and Cezar for input, and in particular
890     to Mike for his clearly formulated specification.
892 *** Other stuff
894     - New variable `org-agenda-window-frame-fractions' to
895       customize the size limits of the agenda window in the case
896       that you display the agenda window by reorganizing the
897       frame.
899     - Drawers can be set on a per-file basis using
901       : #+DRAWERS: HIDDEN STATE PROPERTIES
903       This will define the drawers :HIDDEN: and :STATE:.
904       The :PROPERTY: drawer should always be part of this list, or
905       your properties will not be folded away.
906       Thanks to Richard G. Riley for this proposal.
908     - `org-agenda-fontify-priorities' may now also be an
909       association list of priorities and faces, to specify the
910       faces of priorities in the agenda individually.
912     - The variable `org-export-with-property-drawer' no longer
913       exists, please use `org-export-with-drawers' instead.  Also,
914       the corresponding switch in the #+OPTIONS line has changed
915       from "p" to "d".  Thanks to Bastien for pointing out that we
916       needed to handle not only the property drawer.
918     - M-up and M-down now move the current line up and down (if
919       not at a headline, item or table).  Among other things you
920       can use this to re-order properties in the drawer.  This was
921       a proposal by Bastien.
923     - New variable `org-agenda-todo-ignore-with-date', based on a
924       request by Wanrong Lin.
926     - Aborting remember template selection with C-g now kills the
927       remember buffer and restores the old window configuration.
928       This was a request by Nuutti Kotivuori.
930 * Version 5.12
932 ** Overview
934    - Remember templates can now have name.
935    - `C-c C-k' will abort taking a note (remember of log)
936    - `C-c C-x C-w' and `C-c C-x M-w' now accept a prefix arg.
937    - Lines in the agenda can be fontified according to priority.
938    - New variable `org-scheduled-past-days'.
939    - New variables `org-agenda-deadline-leaders' and
940      `org-agenda-scheduled-leaders'.
941    - New sparse tree function `org-sparse-tree'.
942    - The variable `org-ellipsis' now defaults to `org-link'.
943    - The #+OPTIONS line has a new option "tags".
944    - New variable `org-use-property-inheritance'.
946 ** Incompatible Changes
948    - `C-c /' now calls `org-sparse-tree'.
950 ** Details
952    - Remember templates can now have a template name as the first
953      element.  The name will be listed along with the selection
954      character when prompting for a template.  It is best to have
955      the name start with the selection character, for example if
956      you use ("Note" "n"), you will be prompted like "[n]ote".
957      Thanks to Matiyam for this proposal.
959    - `C-c C-k' will abort taking a note.  You can use this in remember
960      buffers and when taking a logging note (e.g. for a state
961      change).  Thanks to Bastien.
963    - `C-c C-x C-w' and `C-c C-x M-w' now accept a prefix arg to
964      cut N sequential subtrees.  This was a proposal by John.
966    - Lines in the agenda are now bold if they have priority A and
967      italic if they have priority C.  You can turn this off using
968      the variable `org-agenda-fontify-priorities'.  Thanks to
969      John Wiegley for the idea and code.
971    - New variable `org-scheduled-past-days' to set the number a
972      scheduled item will be listed after its date has passed.
973      Default is 10000, i.e. indefinitely.
975    - New variables `org-agenda-deadline-leaders' and
976      `org-agenda-scheduled-leaders' to adjust the leading text o
977      scheduled items and deadline in the agenda.  Thanks to John
978      Wiegley for a patch.
980    - New sparse tree function `org-sparse-tree'.  This is now the
981      default binding for `C-c /'.  It requires one additional
982      keypress to select a command, but in return is provides a
983      single interface to all the different sparse tree commands,
984      with full completion support.
986    - The variable `org-ellipsis' now defaults to the face
987      `org-link' because the visibility of the dots is really bad
988      and I have found this change very useful indeed.
990    - The #+OPTIONS line has a new option "tags" which can be used
991      to set `org-export-with-tags'.  Thanks to Wanrong Lin for
992      this proposal.
994    - New variable `org-use-property-inheritance'.  Configure it
995      to `t' if you want that searching for entries with certain
996      properties always should assume inheritance.  This is not
997      well tested yet, please check it out.
999    - Bug fixes
1001 * Version 5.11
1003 ** Overview
1005    - SUMMARY, DESCRIPTION, LOCATION properties for iCalendar
1006    - Command to jump to the running clock
1007    - Clock entries can now have their own drawer
1008    - `C-c C-x C-r' only updates a clocktable at point
1009    - New way to assign a remember template to a single key
1010    - `C-n' and `C-p' are back to their default binding
1011    - `C-x C-s' in agenda buffer saves all org-mode buffers
1012    - Schedule/deadline leaves note in agenda buffer
1013    - Prefix argument for `C-c C-d/s' will remove date
1014    - New variable to make block aranda more compact
1015    - Better tag alignment in agenda
1017 ** Incompatible changes
1019    - If you have customized `org-drawers', you need to add
1020      "CLOCK" to the list of drawers.
1022    - The variable `org-agenda-align-tags-to-column' has been
1023      renamed to `org-agenda-tags-column'.  The old name is still
1024      an alias, in Emacs 22 and in XEmacs, but not in Emacs 21.
1026    - The default value for both `org-tags-column' and
1027      `org-agenda-tags-column' is now -80.
1029    - The variable
1030      `org-insert-labeled-timestamps-before-properties-drawer'
1031      is now obsolete.
1033 ** Details
1035    - The LOGGING property allows to modify the settings for
1036      progress logging for a single entry.  For example:
1038      : :PROPERTIES:
1039      :   :LOGGING: nologging nologrepeat
1040      : :END:
1042      turns off all progress logging for the current entry and its
1043      children.
1045    - The properties SUMMARY, DESCRIPTION and LOCATION have
1046      special meaning during iCalendar export, when they translate
1047      to the corresponding VEVENT and VTODO fields.  If not given,
1048      Org-ode continues to use cleaned-up version of the headline
1049      and body as the summary and the description, respectively.
1051    - New function to go to the entry with the currently running
1052      clock.  Bound to `C-c C-x C-j', in agenda also to "J".  If
1053      you use this often, you might even want to assign a global
1054      key.  Thanks to Bernt and Bastien.
1056    - Clock entries can now have their own drawer, the :CLOCK:
1057      drawer.  Check out the variable `org-clock-into-drawer' for
1058      configuration of this feature.  The default is to create a
1059      drawer when the second clocking line gets added to an entry.
1060      Note that "CLOCK" has been added to the default value of
1061      `org-drawers', but if you have configured that variable, you
1062      must go back and add "CLOCK" yourself to get this drawer
1063      folded away.  Thanks to Tom Weissman for pointing out that
1064      too many clock entries are visually annoying.
1066    - `C-c C-x C-r' no longer tries to find the first clocktable
1067      in a buffer and then updates it.  Instead, it will update
1068      the clocktable at point if there is one (same as C-c C-c
1069      will do if the cursor is in the "#+BEGIN" line of the
1070      table).  If there is none at point, a new one will be
1071      inserted.  This change was necessary because the new :scope
1072      parameter allows to have several clocktables in a buffer.
1073      Thanks to Bastien for pointing this out.
1074      To update all dynamic blocks in a file, use `C-u C-c C-x C-u'.
1076    - The function `org-remember' can now be called with a
1077      template selection key as argument.  This helps to make key
1078      bindings that go directly to a specific template without
1079      being prompted for a template, like this:
1081      : (global-set-key [f5] (lambda () (interactive) (org-remember "j")))
1083      Thanks to Richard G Riley for bringing this up.
1085    - `C-n' and `C-p' are back to their default binding
1086      (next/previous line) in the agenda buffer.  Enough people,
1087      including recently Denis Bueno, have complained about this,
1088      and I agree it is not good to break habits like that.
1090    - `C-x C-s' in an agenda buffer now saves all org-mode buffers
1091      (also `s' does this).
1093    - Setting schedule or deadline dates from the agenda now
1094      produces a note in the agenda, similarly to what happens
1095      with S-left/right.
1097    - Using a prefix argument for `C-c C-d' or `C-c C-s' will
1098      remove the deadline or scheduling date from an item.  Thanks
1099      to Wanrong Lin for this proposal.
1101    - New variable `org-agenda-compact-blocks'.  When set, the
1102      space between blocks in a block agenda is reduced as much as
1103      possible, to show more items on a single screen.
1105    - The variable `org-agenda-tags-column' (renamed from
1106      `org-agenda-align-tags-to-column') can now also be negative,
1107      to mean alignment to the left.  The new default is -80, just
1108      like it is now for `org-tags-column'.
1110    - Bug fixes
1112 * Version 5.10
1114 ** Overview
1116    - Category and the archive location can be properties.
1117    - The clocktable has a new =:scope= parameter.
1118    - CSV support when importing a table.
1119    - Better defaults when modifying a time stamp.
1120    - New way to specify the duration of an appointment.
1121    - More aggressive version of orgstruct-mode improved wrapping.
1122    - Modifications to priority cycling.
1123    - Modifications to computations in column view.
1124    - New command `org-occur-in-agenda-files'.
1125    - Bug fixes.
1127 ** Details
1129    - Both the category and the archive location in a (sub)tree of
1130      the buffer can now be specified using a property, for
1131      example:
1133      : * Tree with special properties
1134      :   :PROPERTIES:
1135      :     :CATEGORY: Examples
1136      :     :ARCHIVE:  /some/special/file::
1137      :   :END:
1139      This is a much cleaner way of dealing with multiple
1140      categories and archives in a single file.  The preferred use
1141      of the =#+CATEGORY= and =#+ARCHIVE= lines is now to set a
1142      *single* default for the file which is then locally
1143      overruled by properties.  This was a proposal from Bastien
1144      if I remember correctly.  Multiple =#+= lines still work
1145      and I don't plan to remove this support soon, but I
1146      encourage you to stop using them.
1148    - The clocktable has a new =:scope= parameter that determines
1149      the range in the file from which clock entries should be
1150      taken.  This can be anything from the local subtree to the
1151      entire buffer to even the full list of agenda files.  Legal
1152      values are:
1154      | value   | scope                                           |
1155      |---------+-------------------------------------------------|
1156      | nil     | the current buffer or narrowed region           |
1157      | file    | the full current buffer                         |
1158      | subtree | the subtree where the clocktable is located     |
1159      | treeN   | the surrounding level N tree, for example tree3 |
1160      | tree    | the surrounding level 1 tree                    |
1161      | agenda  | all agenda files                                |
1163      Thanks to Jason F. McBrayer and Bernt Hansen for
1164      inspiration.  Thanks to cranreuch (what is you full name?)
1165      for mentioning, at the right moment, that the clocktable is
1166      not so bad - that remark made it seem worthwhile to add
1167      features.
1169    - The commands to import a table and to convert a region to a
1170      table can now handle comma-separated values (CSV).  The
1171      algorithm does not yet treat quoting correctly, but for
1172      basic input it works.
1174    - When modifying an existing time stamp, or when entering the
1175      second stamp of a range, the date prompt will now
1176      consistently default to the date/time in the existing stamp.
1177      This was triggered by Nuutti Kotivuori's request.
1179    - At the date/time prompt, there is a new way to specify a
1180      range of hours, by using "+DURATION" after the time.  For
1181      example:
1183      :  14:00+2  means 14:00-16:00
1184      :  2pm+2:30 means 14:00-16:30
1186      Again, Nuutti Kotivuori's request.
1188    - When you use the function `turn-on-orgstruct++' to turn on
1189      orgstruct-mode, the special org-mode settings for
1190      auto-filling, indentation and paragraphs are exported into
1191      the buffer, so that typing list items with indentation works
1192      better.  This was Bastien's idea and request.
1194    - New variable `org-priority-start-cycle-with-default'.  When
1195      t (the default), priority cycling will initially set the
1196      default priority and then increase or decrease.  When nil,
1197      the first priority set by cycling is already 1 different
1198      from the default priority.  This was mostly driven by
1199      Bastien.
1201    - In column view: When an entry has a property for a summary
1202      column defined, its value is normally overwritten by the sum
1203      of all the children's values each time you enter column
1204      view.  Now there is an exception to this rule: If none of
1205      the children has that particular property defined, the
1206      parent's value stays.  In this way you can still place TODO
1207      items under such an entry without getting the property value
1208      changed.  Thanks to Russel Adams for pointing out that this
1209      is a better way of doing things.
1211    - In column view, computed values are now bold face, and
1212      trying to edit them is an error.  I think this works, but
1213      testing is appreciated.
1215    - New command `org-occur-in-agenda-files', this is basically
1216      the quick command John Wiegley proposed the other day, but
1217      it also works when the agenda files are not yet in buffers.
1218      The key is `C-c C-x /', any better proposals?
1220    - Links containing a space will now be handled correctly when
1221      calling the browser.  Note that you need to enclose such
1222      links in square or angular brackets.
1224    - Bug fixes.
1226 * Version 5.09
1228 ** Overview
1230    - Taking a note upon TODO state changes can be restricted to
1231      selected states.
1233    - The format in which dates are shown in the daily/weekly
1234      agenda can be configured.
1236    - The default for `org-remember-store-without-prompt' is now t.
1238    - `org-goto' has been made into a general lookup command.
1240    - Priority cycling goes back to the nil state.
1242    - You can store a remember note to the *last used* location.
1244    - On Emacs 23, the headline faces for org-mode are now
1245      inherited from the outline faces.
1247 ** Incompatible Changes
1249    - The default for `org-remember-store-without-prompt' is now
1250      t, in order to better match the original intent of
1251      remember.el (storing a note with minimum interruption of
1252      work flow).  I expect that many people will be hit by this
1253      incompatible change - nevertheless I believe it is the right
1254      thing to do.
1256 ** Details
1258    - You can now select specific states for recording a note when
1259      switching to that state.  With the setting
1261      : #+SEQ_TODO: TODO(t) ORDERED(o@) INVOICE(i@) PAYED(p) | RECEIVED(r)
1262      : #+STARTUP: lognotestate
1264      only the states ORDERED and INVOICE will record a timestamp
1265      and a note.
1267    - You can now set the format of the string for each day in the
1268      agenda and timeline buffers.  You can use a format string
1269      interpreted by `format-time-string', or you can write your
1270      own function.  Configure the new variable
1271      `org-agenda-format-date'.  Thanks to Levin for triggering
1272      this development with a patch.
1274    - The default for `org-remember-store-without-prompt' is now
1275      t, in order to better match the original intent of
1276      remember.el (storing a note with minimum interruption of
1277      work flow).  Since we can assign files and headlines to
1278      templates, I guess this takes care of selecting a filing
1279      location in most cases.  For interactive filing, you now
1280      need a prefix command when exiting `remember'.
1282    - `org-goto' (bound to `C-c C-j') now uses an indirect buffer
1283      and has additional commands enabled: Org-occur with `C-c /'
1284      or even faster with `/', and the commands needed to select
1285      and copy a region.  This make `org-goto' a more general
1286      lookup command instead of only a jumping command.  Remember
1287      that you can exit with `Q' to go back to the original
1288      location.  Thanks to William Henney for this idea.
1290    - Setting the priority with S-up/down now cycles back to a
1291      state where no priority is specified.  This was requested by
1292      Rick Moynihan.
1294    - You can store a remember note to the *last used* location.
1295      So if you select a location interactively once, you can
1296      re-use it without having to find it again.  For this, exit
1297      the remember buffer with `C-u C-u C-c C-c'.  The leading
1298      comment in the remember buffer will tell exactly where the
1299      note goes if you exit with a particular command.
1300      Thanks to Maxim Loginov for this idea.
1302    - On Emacs 23, the headline faces for org-mode are now
1303      inherited from the outline faces.  This is just a
1304      convenience, so that you only have to configure one set of
1305      faces, and that will then be outline-1 .. outline-8.  You
1306      will actually not see any difference in org-mode, because
1307      Stefan Monnier has made the outline faces in Emacs 23 to
1308      match the current org-mode faces.
1310      This change does not effect XEmacs, nor Emacs 21 and 22.
1312 * Version 5.08
1314 ** Incompatible changes
1316    - The default for `org-deadline-warning-days' is now 14.
1318 ** Details
1320    - There is now a separate interface for fast and directly
1321      setting a TODO keyword.  This interface kicks in when you
1322      have configured keys for TODO keywords like
1324      : #+SEQ_TODO: TODO(t) WAITING(w) | DONE(d) CANCELED(c)
1326      C-c C-t still does the cycling thing, you need to use a
1327      prefix argument to get to the fast interface.  Or configure
1328      the variable `org-use-fast-todo-selection' to t, then this
1329      will be the default and the prefix argument will make the
1330      command fall back to cycling.
1332      The tag selection no longer does include TODO keywords -
1333      Leo's arguments have convinced me that this is not a good
1334      idea.  If you'd like to see the TODO keywords in the tags
1335      interface anyway, set the variable
1336      `org-fast-tag-selection-include-todo'.  Thanks to Leo and
1337      others for input on this issue.
1339    - New variable `org-edit-timestamp-down-means-later'.  When
1340      set, `S-down' on a timestamp will change the timestamp to
1341      later.  Thanks to Raman for this idea.
1343    - Property names can now contain non-ascii word characters.
1344      This follows a request from Daniel Clemente.
1346    - For export, the date that should be given in the exported
1347      file can now be set to a specific value with a line like
1349      : #+DATE: 15 November 2003
1351      If you want to use the date/time when the file was created,
1352      use a format string that will be interpreted by
1353      `format-time-string', for example:
1355      : #+DATE: %Y/%m/%d %X
1357    - The default of `org-deadline-warning-days' has changed to 14
1358      days.  30 was really too much, I suspect most people (me
1359      included) have changed this.
1361    - When a deadline has an individual lead time, this lead time
1362      obviously overrules `org-deadline-warning-days'.  However,
1363      if you bind `org-deadline-warning-days' to a number <=0, for
1364      example during a custom agenda command, then the absolute
1365      value of this number will be enforced also when a different
1366      lead time has been specified.  This is useful to get a list
1367      of all deadlines coming up in the next N days.
1369 * Version 5.07
1371 ** Overview
1373    - Different faces for different TODO keywords.
1375    - Setting TODO states through the TAG setting interface.
1377    - Context information is stored when moving a tree to the archive.
1379    - Sorting can be done by priority.
1381    - `Org-ellipsis' can now also be a face.
1383    - Scheduling info is no longer removed entry is marked CLOSED.
1385    - Unavailable files in `org-agenda-files' can be skipped.
1387 ** Incompatible changes
1389    - The time of archiving is now stored as a property.
1390      ARCHIVED is no longer a special time keyword.
1392    - Scheduling info is no longer removed entry is marked CLOSED.
1394 ** Details
1396    - You can now define different faces for different TODO
1397      keywords.  This request has come up frequently, so here it
1398      is: Use the variable `org-todo-keyword-faces'.
1400      A Here is a configuration example:
1402      : (setq org-todo-keyword-faces
1403      :   '(("TODO"      . org-warning)
1404      :     ("DEFERRED"  . shadow)
1405      :     ("CANCELED"  . (:foreground "blue" :weight bold
1406      :                    :underline t))))
1408      Org-mode continue still use `org-todo' and `org-done' for
1409      keywords that have no specific face assigned.
1411    - Some People use TODO states more like tags.  For them the
1412      TODO keywords mark special states and they like to quickly
1413      switch between states in arbitrary sequence.  The standard
1414      TODO interface is not perfect for this, because it assumes
1415      that the states are reached in sequence.  However, the fast
1416      tag setting interface is in fact perfect for this.  You can
1417      now "misuse" the TAG selection interface to also set TODO
1418      states.  All you need to do is to assign keys to the TODO
1419      states, just like you also do for tags.
1421      : #+SEQ_TODO: TODO(t) WAITING(w) | CANCELED(c) DONE(d)
1422      : #+TAGS: @HOME(h) @OFFICE(o) @SHOP(s)
1424      Next time you try to set tags with C-c C-c, the todo states
1425      will be offered as well, and the corresponding key will
1426      switch the entry to that state.
1428    - New variable `org-archive-save-context-info' governs if
1429      information that would be lost by moving a subtree to the
1430      archive file, should be stored as special properties.  For
1431      example,
1433      : (setq org-archive-save-context-info '(itags category))
1435      will store the inherited tags and the category in properties
1436      ARCHIVE_ITAGS and ARCHIVE_CATEGORY, respectively.  The
1437      default setting for this variable is to save everything that
1438      could be lost.  This was a proposal by John Wiegley.
1440    - Sorting (`C-c ^') can use the use the priority to sort.  Use
1441      the "p" and "P" keys at the prompt.  John Wiegley, again.
1443    - `Org-ellipsis' can now also be a face to make the folding
1444      ellipsis more visible.  This is based on a post by Tassilo
1445      Horn.  Since `org-ellipsis' only works in Org-mode, you
1446      might want to use Tassilo Horn's hack directly in order to
1447      affect the folding ellipsis globally.
1449    - Scheduling info is no longer removed when an entry is marked
1450      CLOSED.  This was a request by Brian van den Broek.  Let me
1451      know if this breaks anything for you - then it will become
1452      an option.
1454    - New option `org-agenda-skip-unavailable-files'.  Currently,
1455      if a file does not exist, it will be removed from
1456      `org-agenda-files' after a query.  When this option is set,
1457      the file will simply be skipped.
1459    - Bug fixes.
1461 * Version 5.06
1463 ** Overview
1465 ** Details
1467    - When exporting only a region and this region is a single
1468      (sub)tree (for example selected with `C-c @'), the title for
1469      the exported document is taken to be the heading of the
1470      subtree.  The sublevels become top-level entries in the
1471      export.  Furthermore, if the head entry of the tree has or
1472      inherits an EXPORT_FILE_NAME property, that file name (with
1473      appropriately substituted extension) will be used for the
1474      exported tree.  Thanks to Patrick Drechsler and Jost Burkart
1475      for these ideas.
1477    - org-special-ctrl-a/e has a third allowed value, `reversed'.
1478      When it is set to this value, the first C-a or C-e command
1479      behaves normally, i.e. it goes to the true beginning or end
1480      of the line.  Only when you press C-a or C-e immediately
1481      again, the the "special" position will be found.  Additional
1482      presses of the same key jump between the two positions.  I
1483      like this a lot better than the `t' setting, because now the
1484      keys behave more predictable and still give easy access to
1485      the special locations.
1487    - New command to set or remove a tag from all headlines in a
1488      region.
1490    - When Org-mode visits a file, it will initially hide all
1491      drawers.
1493    - The default of the variable `org-cycle-global-at-bob' is now
1494      nil, meaning that TAB no longer does global visibility
1495      cycling at the beginning of the buffer.
1497    - Bug fixes, in particular the problems with scheduling and
1498      deadlines introduced in 5.05.  Please check carefully if
1499      this works correctly again, and complain if not.
1501 * Version 5.05
1503 ** Overview
1505    - LaTeX export, finally, thanks to Bastien.
1507    - Extension mechanism for the hyperlink system.
1509    - Global access to commands inserting and following links.
1511    - Individual lead-times for deadlines.
1513    - Option to show only the next instance of repeating timestamp.
1515    - Store remember notes with only 2 keys: C-c C-c
1517    - Appointment reminders from Org-mode.
1519    - Global values for selected properties.
1521    - Bug fixes.
1524 ** Details
1526    - Bastien's `org-export-latex.el' is now part of the org-mode
1527      distribution.  You can export an Org-mode document to a
1528      LaTeX file with `C-c C-e l'.  For more options, see the
1529      manual, and the commentary in the Lisp file.  Kudos to
1530      Bastien for contributing this frequently requested feature.
1531      I am sure this has been tough because of the many different
1532      ways I have been allowing LaTeX snippets and environments to
1533      be incorporated in lazy free-format ways.
1535    - Org-mode has now an extension mechanism for the hyperlink
1536      system.  This should clear the road for all those mairix and
1537      other ideas that have been floating around.  Now it is on
1538      *you* to write and share new link types for Org-mode.  The
1539      interface for adding a new link type is described in the
1540      appendix of the manual, section A2.  The unsolved problem is
1541      currently how to handle the new link types for
1542      export/publishing.
1544    - New *global* commands `org-open-at-point-global' and
1545      `org-insert-link-global'.  You can bind these commands to
1546      global keys and use them to insert and follow Org-mode-like
1547      links anywhere in Emacs.  Thanks to Adam Spiers for this
1548      excellent idea.
1550    - Each deadline timestamp may now specify its own interval of
1551      lead-time display, given in days, weeks, months or years.
1552      The syntax is like this
1554      : DEADLINE: <2007-08-13 Mon -5d>
1556      When combined with a repeater, the repeater has to come
1557      first:
1559      : DEADLINE: <2007-08-13 Mon +2w -5d>
1561      You may now also customize the faces that are used in the
1562      agenda to indicate the distance of an approaching deadline.
1563      See the new option `org-agenda-deadline-faces'.
1565      Thanks to Pavel Chalmoviansky and John Wiegley proposals in
1566      this direction.
1568    - New option `org-agenda-repeating-timestamp-show-all'.  When
1569      set to nil, repeating time stamps will only show up once in
1570      the agenda, either today or in the near future.  Other
1571      matches will be ignored.  Thanks to John Wiegley for this
1572      proposal.
1574    - New variable `org-remember-store-without-prompt'.  When set,
1575      exiting the remember buffer with C-c C-c will store the note
1576      without further prompts to the default location, and `C-u
1577      C-c C-c' will get the prompts for file and location.  So
1578      this variable reverses the prefix-argument functionality for
1579      storing remember notes.  This follows a request from John
1580      Wiegley.
1582    - A new function `org-agenda-to-appt' activates all
1583      appointments for the current day so that Emacs will display
1584      reminders.  This uses appt.el.  Thanks to Bastien for this
1585      function.
1587    - You can now set default values for properties that can be
1588      inherited by all entries in a buffer, or by all entries
1589      globally.  Global properties are set in the variable
1590      `org-global-properties', like this:
1592        (setq org-global-properties '(("NAME" "This is the value")))
1594      Buffer-local values are set like this:
1596        #+PROPERTY: NAME This is the value
1598      When using org-entry-get to get the value of a property with
1599      the `inherit' flag and the hierarchy above the entry does
1600      not contain this property, the buffer-local and global lists
1601      are checked as well.  This is mostly useful (I think) to set
1602      the list of allowed values for a property.  Thanks to Bernt
1603      Hansen and Bastien for these ideas.
1605    - Bug fixes.
1607 * Version 5.04
1609 ** Details
1611    - New variables `org-export-author-info' and
1612      `org-export-time-stamp-file' to turn off inclusion of author
1613      and time information into exported files.  Thank to Patrick
1614      Drechsler for pointing out that this would be useful.
1616    - New variable to avoid moving DEADLINE and SCHEDULED info
1617      into the property drawer.  The default is now to not move
1618      this stuff into the drawer.
1619      `org-insert-labeled-timestamps-before-properties-drawer'
1621    - `org-archive-mark-done' can be a string now, to select a
1622      specific keyword that should be used for archived entries.
1624    - New command "j" in agenda to jump to an arbitrary date.
1625      Thanks to Bernt Hansen for the patch.
1627    - Lots of minor fixes.
1629 * Version 5.03
1631 ** Incompatible Changes
1633    - The variable `org-special-ctrl-a' has been renamed to
1634      `org-special-ctrl-a/e'.  The old one is still an alias (but
1635      not on Emacs 21 where variable aliases cannot be defined).
1637 ** Details
1639   - When the variable `org-special-ctrl-a/e' is set, C-e in a
1640     headline first goes to the end of the headline ignoring the
1641     tags.  A second C-e then goes to after the tags.
1643   - Typing and removing single characters in a headline now
1644     keeps the tags in the headline aligned.  This could have a
1645     little impact on performance while deleting stuff - let me
1646     know if we need to make this customizable.
1648   - New option `org-n-level-faces' can be used to set the number
1649     of different faces that are used for headlines.  Default is
1650     all 8 faces Org-mode defines for this purpose, level 9 uses
1651     again the level-1 face.  However, you can use fewer, and then
1652     the level-1 face will be reused already for level N+1, etc.
1654   - Column View and hidestars now work together.
1656   - Bug fixes.
1659 * Version 5.02
1661 ** Overview
1663    - The interfaces for properties and column view are finished
1664      now and work well.
1666    - Properties can be summaries, i.e. the parent nodes can
1667      compute their value from the children's values.
1669    - Headlines finally require a space ofter the star(s).  The
1670      conflict with bold text at the beginning of the line is no
1671      longer there.
1673 ** Incompatible Changes
1675    - Bad news.  It looks like it is going to be really hard to
1676      make column view work on XEmacs and on Emacs 21.  Emacs 22
1677      is currently the only Emacs where this works.  If you are
1678      using Emacs 21 or XEmacs, you can still use properties, but
1679      not column view.
1681 ** Details
1683    - Improvements for properties:
1685      + There are interactive commands to insert and delete
1686        properties.  Read the manual chapter 7 for details.
1688      + You can define /allowed values/ for a property.  When
1689        these are defined, you can change the value of a property
1690        with S-left and S-right.  And you may use completion when
1691        inserting the property.  This goes a long way to prevent
1692        typos when entering properties.
1694    - Improvements for column view.
1696      + In column view, you may use the keys S-left/right (and
1697        also the keys `n' and `p') to switch from one allowed
1698        value to the next.
1700      + You can define summaries for columns.  For example,
1701        parents can contain the sum of all children values of a
1702        property, or the parent node can have a check box property
1703        that is automatically checked when all children's boxes are
1704        checked.
1706      + There are interactive commands to add and remove columns,
1707        and to change the attributes of a column like the summary
1708        type.
1710      These additions lead to the exciting fact that the example
1711      from [[http://www.omnigroup.com/images/applications/omnioutliner/features/multicolumn.jpg][omni outliner]] posted by Scott Jaderholm can now be
1712      accurately [[file:omni-org.jpg][reproduced by Org-mode]].
1714    - The space after the stars is now required in a headline, in
1715      order to remove the conflict with bold words at the
1716      beginning of a line.  So
1718      :    * This is a level 1 headline
1719      :    *this is bold text*
1721    - S-up and S-down to navigate plain item lists are now also
1722      available in orgstruct-mode.
1724 * Version 5.01
1726 ** Overview
1728    - A new minor mode, orgstruct-mode, exports the Org-mode
1729      structure editing commands into any other mode.
1731    - DRAWERS are a new level off folding for special sections
1732      that should stay closed during visibility cycling and only
1733      open if explicitly asked.
1735    - Entries can now have PROPERTIES.
1737    - A COLUMN VIEW implementation allows to easily view and edit
1738      the properties of a hierarchy of entries (Emacs only, for
1739      now).
1741    - Formula evaluation in the spreadsheet is more consistent
1742      now.  Properties and per-file constants can be used during
1743      evaluation.
1745    - Bug fixes and minor changes.
1747 ** Incompatible changes
1749    - When using LEVEL=N in a tags search, things have changed if
1750      you are also using `org-odd-levels-only'.  If you are using
1751      only odd levels (i.e. 1 or 3 or 5... stars), LEVEL=2 will
1752      now refer to 3 stars, LEVEL=3 to 5 stars etc.  Many thanks
1753      to Leo (or blame on him if you must) who has convinced me
1754      that this is the better convention.
1756 ** Details
1758 *** Orgstruct minor mode
1760     There is a new minor mode, orgstruct-mode.  This modes works
1761     in a similar way as Orgtbl-mode.  It can be used to export
1762     the Org-mode structure-editing commands into arbitrary major
1763     modes in Emacs.  For example, you can use it in Mail-mode to
1764     easily create lists.
1766     The functionality in Orgstruct mode is only active, if the
1767     cursor is in a line that looks either like a headline, or
1768     like the first line of a plain list item.  Then the commands
1769     `TAB', `M-cursor', `M-S-cursor', `M-RET', `M-S-RET', `C-c ^',
1770     `C-c C-c', and `C-c -' will do structure-related editing just
1771     like in Org-mode.  If the cursor is not in such a line, all
1772     these keys will do whatever the major mode or other active
1773     minor modes have assigned to them.
1775     Orgstruct-mode is the result of a proposal by Raman, quite
1776     some time ago.  It has taken a long time, but here is finally
1777     the promised implementation.
1779 *** Drawers
1781     The new concept of /drawers/ allows to create sections
1782     that remain folded during visibility cycling.  Drawers need
1783     to be configured using the variable `org-drawers'.  A drawer
1784     starts with a line containing only the name of the drawer
1785     bracketed by colons. It ends with :END:.  For example,
1786     after setting
1788     :   (setq org-drawers '("PROPERTIES" "HIDDEN"))
1790     you can then create drawers like this:
1792     :   :HIDDEN:
1793     :     here is some stuff that remains hidden
1794     :     unless TAB is pressed directly in that line
1795     :   :END:
1797     The PROPERTIES drawer has special meaning for ORG-mode, it
1798     contains properties of an entry (see below).
1800 *** Properties and Column View
1802     - Entries in Org-mode can now have arbitrary /properties/
1803       associated with them.  Org-mode handles some default
1804       properties like the TODO state, the priority, the local
1805       tags, and planning information like DEADLINE and SCHEDULED.
1806       In addition, you can assign arbitrary properties by creating
1807       a property drawer and inserting a line like
1809       :   :PROPNAME: This is the value of the property
1811       Org-mode has an API for properties, if you want to write a
1812       program using properties, use the functions
1813       `org-entry-properties', `org-entry-get', `org-entry-put',
1814       and `org-entry-delete'.
1816     - Planning information like DEADLINE can be hidden in the
1817       properties drawer.
1819       If the PROPERTIES drawer starts in the first line after a
1820       headline, also the DEADLINE, SCHEDULED and CLOCK information
1821       will be inserted inside the drawer.  If no PROPERTIES drawer
1822       is present, or if it does not start in the line right after
1823       the headline, this information remains in the lines directly
1824       after the headline, outside the drawer.
1826     - TAGS searches can now also query properties.  For example,
1827       the search
1829       :   LEVEL=3+BOSS+ASSIGNED="Hans"/WAITING
1831       will find entries that
1832       - are level 3
1833       - have the tag BOSS
1834       - have an ASSIGNED property with the value "Hans"
1835       - are TODO status WAITING.
1837         So here is an entry that will match:
1839         :   *** WAITING Clean up the factory     :BOSS:
1840         :       :PROPERTIES:
1841         :       :ASSIGNED: Hans
1842         :       :END:
1844         You may also use a regular expression to match against a
1845         property value.  For example, to find stuff assigned to Hans
1846         or Sarah, use
1848         :   ASSIGNED={^\(Hans\|Sarah\)$}
1850     - Column View is a special way to look at property values in
1851       tabular form.  Column View can be used in any org-mode
1852       file, and also in any agenda buffer.  It works by placing
1853       an overlay over each headline (or agenda line) that shows a
1854       table of selected properties.  You can look at and edit
1855       properties from this view.  Which properties are shown in
1856       the table must be set up using the COLUMNS property.  You
1857       can set up different property columns on different levels
1858       of an outline tree.  For example:
1860       :   * People
1861       :     :PROPERTIES:
1862       :     :COLUMNS: %25ITEM %Name
1863       :     :END:
1864       :   ** Family
1865       :      :PROPERTIES:
1866       :      :COLUMNS: %25ITEM %Name %3Age
1867       :      :END:
1868       :   *** Sam
1869       :       Info about Sam, including a property list with Name and Age.
1870       :   *** Sarah
1871       :       Info about Sarah, including a property list with Name and Age.
1872       :   ** Office
1873       :      :PROPERTIES:
1874       :      :COLUMNS: %25ITEM %Name %Function %Salary
1875       :      :END:
1876       :   *** Boss
1877       :       Info about the Boss, including a property list with Name,
1878       :       Function and Salary (if only we knew....).
1880       Now we have defined three different sets of columns.  If
1881       you switch to column view in the /Family/ section, you
1882       will get a different table than if you do it in the
1883       /Office/ section.  However, if you switch to column
1884       view with the cursor on the /People/ section, the
1885       table will cover all entries, but contain only the
1886       /Name/.
1888       Column view does, for the time being, only work on Emacs.
1889       The XEmacs implementation needs a bit of work.
1891     - Properties can be used in table formulas.  To access the
1892       value of the property :XYZ:, use $PROP_XYZ.  The property
1893       needs to be defined in the hierarchy above the table, not
1894       necessarily in the same entry as the table.  This was a
1895       request by Eddward.  File-wide constants can be defined with
1896       #+CONSTANTS, see below.
1898     - Things that still need to be sorted out about drawers,
1899       properties and column view - comments and suggestions
1900       welcome!
1902       + How to deal with drawers and properties in HTML and ASCII
1903         export?
1904       + What key could be used to insert an empty property drawer
1905         into an entry?
1906       + Right now column view is invoked through the command C-c
1907         C-x C-c.  It is too easy to type C-x C-c by mistake, and
1908         that causes Emacs to quit.  Suggestions for a different
1909         key?
1910       + Fontification of drawers and properties is not good yet.
1911         Any suggestions for better defaults?
1912       + Mouse support for editing properties in column view would
1913         be nice - maybe Piotr is interested to add this to
1914         org-mouse.el?
1916 *** Spreadsheet
1918     - In the spreadsheet, the evaluation of formulas has changed.
1919       Previously, first the column formulas would be evaluated
1920       everywhere, and then the field formulas would kick in, and
1921       in some cases overwrite the results of column formulas in
1922       the appropriate fields.  This had the side effect that some
1923       formulas might always use the wrong, intermediate content of
1924       a field that is computed both by a column and a field
1925       formula.
1927       From now on, column formulas will no longer temporarily
1928       overwrite field formulas.  This gives much more consistent
1929       results.  For example you can now finally have a column of
1930       increasing numbers by setting the first field to a fixed
1931       number, and let the rest follow from a column formula.
1933       Here is an example
1935       :   | 1 |
1936       :   | 2 |
1937       :   | 3 |
1938       :   #+TBLFM: $1=@-1+1::@1$1=1
1940     - Constants for formulas in spreadsheets are globally defined
1941       with the variable `org-table-formula-constants'.  File-local
1942       constants can now be set with a line like:
1944       :   #+CONSTANTS: c=299792458.  pi=3.14  eps=2.4e-6
1946 *** Minor changes
1948     - When entries are archived, a timestamp for the moment of
1949       archiving is added to the line with planning information.
1950       It looks like this:
1952       : ARCHIVED: [2007-07-02 Mon 11:34]
1954       Thanks to J. David Boyd for constructive comments.
1956     - Bug fixes
1958       Many bugs are fixed, as usually all the ones where I replied
1959       "fixed" on emacs-orgmode.  If you reported one of these
1960       bugs, please check if it really has disappeared in the new
1961       version, and complain if not.  Thanks!
1964 * Version 4.79
1966 ** Details
1968    - We are back to a single file org.el that works both on Emacs
1969      and on XEmacs.  Merging comes at a speed penalty for you as
1970      an XEmacs user, but *only if you do not compile* org.el.
1971      Compilation completely removes the penalty.
1973    - New L flag for literal interpolation in Lisp formulas.
1974      See manual section 3.5.3.
1976    - New options for turning off footnotes.
1977      This was a request from Ignotus.
1978      See the option `org-export-with-footnotes'.
1980    - Default length for Agenda entries, but this is off by
1981      default.  This was a request from Micheal.
1982      See the option `org-agenda-default-appointment-duration'.
1984    - Bug fixes:
1986      + org-agenda-date-later (Juraj Kubelka)
1987      + letters off margin in orgcard.ps (Charles Cave)
1988      + TODO export problems on XEmacs (ignotus@freemail.hu)
1989      + args-out-of-range with table formulas (Cecil Westerhof)
1990      + problem with org-file without a heading (Tim O'Callaghan)
1992 * Version 4.78
1994 ** Overview
1996    - Time stamps with a time range *included*, like
1997      : <2007-06-18 Mon 17:33-18:23>
1999    - Clock times without clocking in/out: CLOCK: => 2:00
2001    - Language-specific characters allowed in TAGS (Emacs only).
2003    - Promotion and demotion of items gets the indentation right.
2005    - Indenting lines with TAB is more intelligent.
2007 ** Incompatible changes
2009    - There is now a special version of `org.el' for XEmacs.
2010      Before installation, as an XEmacs user you must rename the
2011      file org_xemacs.el to org.el, i.e. you must overwrite org.el
2012      with the xemacs version.  For example:
2014      : mv org_xemacs.el org.el
2016      This is necessary so that I can make use of some features
2017      that would be cumbersome to support in a single file.  The
2018      XEmacs version is derived from the Emacs version with a
2019      program, so no reason to fear that I might be dropping
2020      XEmacs support any time soon.  Sorry for the trouble.
2022 ** Details
2024    - A time stamp may now contain a range of times.  So you no
2025      longer need to use two separate stamps to indicate a time
2026      interval on a single day.  For example
2028      : <2007-06-18 Mon 17:30-18:20>
2030      This is now fully supported, including changing the time
2031      with S-up/down while the cursor is on the end time.  Also,
2032      da the date/time prompt, you can simply write your time like
2033      12:00-14:00 and the range will be inserted.
2035      This was proposed by Leo some time ago, and recently by
2036      Michael.
2038    - You may specify clocking times by hand (i.e. without
2039      clocking in and out) using this syntax.
2041      : CLOCK: => 2:00
2043      Thanks to Scott Jaderholm for this proposal.
2045    - TAGS may now contain language-specific word characters, as
2046      long as they are matched by the "[:alnum:]" regexp syntax.
2047      This is for Emacs only, the XEmacs version continues to use
2048      the character class "a-zA-Z0-9_@" for tag names.  Thanks to
2049      David Smith for a patch to this effect (a modified version
2050      of that patch was applied).  I am considering to make the
2051      same change for TODO keywords, but not yet.  Note that files
2052      using localization features may not work correctly in the
2053      Emacs configuration of another user, so if you are sharing
2054      org-mode files with other users, it might still be best to
2055      stick to the ASCII characters.
2057    - Promotion and demotion of plain list items (commands M-left,
2058      M-right) no longer changes the indentation by just one
2059      space.  Instead, it uses intelligence gathered from the
2060      surrounding list structure to do the right thing.  Thanks to
2061      William Henney for starting the discussion about this.
2063    - TAB does now a better job of indenting lines.
2065      + After tables and code segments (lines starting with ":"),
2066        indentation goes back to what it was before (thanks to
2067        William Henney for suggesting this behavior).
2069      + When plain lists items are involved, we had a long
2070        discussion on emacs-orgmode where I tried to show that a
2071        too-sophisticated implementation will still be easily
2072        fooled.   Here is what I have implemented now - lets see
2073        if we can agree on this:
2075        Indentation will flatten lists with the same bullet type,
2076        but indent another bullet type further.  The time when
2077        this fails is in a nested list, when you want to get back
2078        out to a previous level.  For example
2080        : - item 1
2081        : - item 2
2082        : + item 2a
2083        : + item 2b
2084        : - item 3
2086        When using TAB on every line in this list, the structure
2087        will change to
2089        : - item 1
2090        : - item 2
2091        :   + item 2a
2092        :   + item 2b
2093        :     - item 3
2095        So you need to change the level of the last line by hand,
2096        using promotion and demotion functions.
2098 * Version 4.77
2100 ** Overview
2102    - Vertical lines in exported tables.
2103    - New default for `org-show-following-heading'.
2105 ** Incompatible changes
2107    - The default for `org-show-following-heading' is now nil.
2109 ** Details
2111    - You can now specify column groups in tables, to the effect
2112      that the groups will be separated by vertical lines in HTML
2113      and ASCII output.  Column groups are specified by the
2114      characters "<" and ">" in a special table row.  "<" starts a
2115      group, ">" ends a group (in each case including the the
2116      column where the character is specified).  You may also use
2117      "<>" to make a group a single column wide.  For example:
2119 : |   |  N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N) |
2120 : |---+----+-----+-----+-----+---------+------------|
2121 : | / | <> |   < |     |   > |       < |          > |
2122 : | # |  1 |   1 |   1 |   1 |       1 |          1 |
2123 : | # |  2 |   4 |   8 |  16 |  1.4142 |     1.1892 |
2124 : | # |  3 |   9 |  27 |  81 |  1.7321 |     1.3161 |
2125 : #+TBLFM: $3=$2^2::$4=$2^3::$5=$2^4::$6=sqrt($2)::$7=sqrt(sqrt(($2))
2127      A table row with with nothing but "/" in the first field is
2128      never exported, but can be used to place column group
2129      information into the table.  In this table, we create a
2130      group for column 2, one for columns 3-5 and one for columns
2131      6-7.  HTML export will render a vertical line between these
2132      groups.
2134      Because HTML does not require closing <colgroup> tags with
2135      </colgroup>), you can also simply start a new column
2136      wherever you want a vertical line:
2138 : | N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N0 |
2139 : |---+-----+-----+-----+---------+------------|
2140 : | / | <   | <   |     | <       |            |
2142    - Vertical lines are now also omitted in ASCII export, unless
2143      grouping explicitly requests these lines.
2145    - The default for `org-show-following-heading' is now nil,
2146      meaning that sparse trees will be more compact.  This has
2147      become possible due to in important remark by Jason Dunsmore
2148      who pointed out that TAB should behave differently in the
2149      inconsistent trees produced by the sparse tree commands.
2150      TAB does now make sure that the heading after a freshly
2151      unfolded tree is made visible at all, removing the confusing
2152      behavior we had before.
2154    - Several bugs fixed.  In particular:
2156      + Strings produced by agenda batch processing with
2157        `org-batch-agenda' and `org-batch-agenda-csv' are now
2158        properly encoded, so that you should be able to use
2159        special characters in other languages as along as your
2160        post-processing program handles them correctly.  At least
2161        for Emacs this should work now, but have not yet figured
2162        out how to do this in XEmacs.
2164 * Version 4.76
2166 ** Overview
2168    - Exporting Footnotes to HTML
2170 ** Details
2172    - Footnotes like[1] are now exported to HTML
2174         [1]This is a footnote
2176      Thanks to Scott Jaderholm for this proposal and a detailed
2177      HTML example on how the exported text should look like.
2179    - Special version of the reference card, for letter paper.
2181    - Switching to OVERVIEW with S-TAB no loner moves the cursor,
2182      so after three `S-TAB' commands, you will be back where you
2183      started.
2185    - Bug fixes, lots of them again.
2187 * Version 4.75
2189 ** Overview
2191    - Cyclic time stamps that repeat after an interval.
2192    - Special timestamps for appointments like "every 2nd Thursday
2193      in a month".
2194    - Completion of link abbreviation prefixes inside `C-c C-l'.
2195    - Replacing a region of org-mode syntax with HTML.
2196    - iCalendar export now honors ARCHIVE etc.
2197    - New command to add/change emphasis markers.
2199 ** Incompatible Changes
2201    - The REPEAT(...) cookie is no longer supported, the repeater
2202      interval now goes directly into the time stamp.
2204 ** Details
2206    - Time stamps can contain a repeater code, like +1w for once
2207      every week, +2d for every two days, etc.  For example,
2209           <2007-05-16 Wed 12:30 +1w>
2211      will apply to every Wednesday, starting from the date given.
2212      I believe this syntax was actually suggested by someone on
2213      the mailing list, but I cannot find the email back.  To
2214      collect your credit, let me know!
2216    - You can use an sexp diary entry (with the syntax used by the
2217      Emacs calendar/diary) in a time stamp, like this:
2219        *** The nerd club meets on 2nd Thursday of every month
2220            <%%(diary-float t 4 2)>
2222    - You can put diary-style sexp entries directly into an
2223      org-mode file, where they will be interpreted just like they
2224      would in the diary.  For example
2226        * Birthdays and similar stuff
2227        #+CATEGORY: Holiday
2228        %%(org-calendar-holiday) ; special function for holiday names
2229        #+CATEGORY: Ann
2230        %%(diary-anniversary 14  5 1956) Artur Dent %d is years old
2231        %%(diary-anniversary  2 10 1869) Mahatma Gandhi
2233      These entries must start at column 0 to be evaluated.
2235      It turns out that evaluating the entries in an org-mode file
2236      is actually faster than in the diary itself, because using
2237      the diary has some overhead (creating fancy diary display,
2238      then reading and re-interpreting the entries).  I have moved
2239      all the sexp entries from my diary into an org-mode file,
2240      put in a few categories, and then turned off
2241      `org-agenda-include-diary'.  This has led to a noticeably
2242      faster agenda display.
2244    - New command `org-replace-region-by-html' that converts the
2245      current region from org-mode syntax into HTML.  For example,
2246      you might write an itemized list in plain text in an HTML
2247      buffer, and then invoke this command to convert it.  Thanks
2248      to Raman for this idea.
2250    - When inserting a link with `C-c C-l', completion will now
2251      fill in all valid link prefixes, like http or ftp, but also
2252      link abbreviation prefixes.  This is based on an idea by
2253      Bastien.
2255    - Highest, lowest, and default priority can be set on a
2256      per-file basis with #+PRIORITIES: H L D
2257      For example, to use priorities from 1 to 9, you could use
2259        #+PRIORITIES: 1 9 9
2261      Thanks to Dmitri Minaev for a patch to this effect.
2263    - iCalendar export now honors (i.e. skips) subtrees marked as
2264      ARCHIVE, COMMENT, or QUOTE.
2266    - There is a new command to add or change the emphasis (like
2267      bold or italic) of a piece of text.  For lack of better
2268      available keys the command is at `C-c C-x C-f', but you may
2269      well want to choose a more convenient key like `C-c f' in
2270      your private setup:
2272      (add-hook 'org-load-hook
2273       (lambda () (define-key org-mode-map "\C-cf" 'org-emphasize)))
2275      The command will prompt for an emphasis type, and you may
2276      reply either with the marker that triggers the emphasis, or
2277      with the first letter of the corresponding HTML tag.  For
2278      example, to select italic, press either "/" or "i".
2280      If there is an active region, the emphasis of this region
2281      will be set or changed.  If there is no region, only the
2282      emphasis markers will be inserted and the cursor positioned
2283      between them.  Thanks to Bastien for proposing this feature.
2285    - Bug fixes, everything where I have replied "fixed" on the
2286      mailing list.  Thanks to all of you for keeping these reports
2287      coming.
2289 * Version 4.74
2291 ** Overview
2293    This release is about exporting agenda views, to HTML, to
2294    postscript for printing, and to a special format (CSV) for
2295    further processing in scripts.
2297 ** Incompatible Changes
2299    - The variable `org-agenda-remove-tags-when-in-prefix' has
2300      been renamed to `org-agenda-remove-tags'.
2302 ** Details
2304    - Agenda views can be exported as plain text, as HTML, and as
2305      Postscript(R).  This can simply be done from the agenda
2306      buffer with `C-x C-w' and then specifying a filename like
2307      `myagenda.html' or `myagenda.ps'.  See section 8.6.4 of the
2308      manual.
2310    - Each custom agenda view can specify a list of associated
2311      files names.  The command `C-c a e' then creates all views
2312      that have associated file names and exports the views to
2313      these files.  This is great for producing paper versions of
2314      your views, to take with you when you don't have your
2315      computer.  The manual has an example on how to do this, and
2316      in particular on how to customize the format of the printed
2317      version.  See section 8.6.4 of the manual.
2319    - You can produce a CSV format of agenda information with an
2320      Emacs batch command.  This is greate for further processing
2321      in scipts.  Thanks to Jason F. McBrayer for this idea.
2322      See section 8.6.5 of the manual.
2324    - New variable `org-agenda-skip-deadline-if-done'.  When set,
2325      a deadline associated with a DONE item will not be shown in
2326      the agenda.  This is based upon a report by Denis Bueno.
2328    - Quite a few bug fixes.
2330 * Version 4.73
2332   Minor bug fixes.
2334 * Version 4.72
2336 ** Overview
2338    - Control over blank lines between trees in collapsed view.
2340    - Info about the running clock is shown in the modeline.
2342    - C-a can behave specially in headlines.
2344    - Better color and scaling defaults for LaTeX fragments.
2346    - Customizable list of keys in org-mode to be replaced.
2348    - Stuck project descriptions have been extended.
2350    - Emphasis code has been modified to fix some issues.
2352    - Bug fixes.
2354 ** Incompatible changes
2356    - The option `org-format-latex-options' has changed.  If you
2357      have customized it, please revert to default and then redo
2358      your customization.
2360    - `org-CUA-compatible' no longer modifies S-RET by default,
2361      because newer versions of CUA don't use this key anymore.
2362      If you need this replacement, customize the variable
2363      `org-disputed-keys'.
2365    - The variable `org-CUA-compatible' is obsolete, please use
2366      `org-replace-disputed-keys' instead.  `org-CUA-compatible'
2367      is still an alias for this new variable, though.
2369 ** Details
2371    - Better control over blank lines between trees in collapsed
2372      view.  This has come up several times in the past and most
2373      recently by Scott Jaderholm.  There is now a new variable
2374      `org-cycle-separator-lines' with default value 2.  It says
2375      how many empty lines there need to be after the end of a
2376      subtree to get an empty line in collapsed view.  So with the
2377      default, if you leave only one empty line it will disappear
2378      in collapsed view.  If you leave two, one empty line will
2379      remain so that you can use double empty lines to structure
2380      the collapsed views of a file.  I love it, so many thanks to
2381      Scott fro bringing this up again.
2383      One property of the new setup is that you will never get
2384      more than one blank line in collapsed view.  We could do
2385      something special to allow *several* empty lines in
2386      collapsed view, but I think this is counter-productive.
2388      In Emacs 22, if you want to make full use of this, make sure
2389      that you have not set `outline-blank-line'.
2391    - When the clock is running, Org-mode will put info about it
2392      into the modeline.  The info consists of the elapsed time
2393      and the heading of the clocked item.  This was a proposal
2394      from Bastien who got the idea from Muse.
2396    - C-a can behave specially in headlines when you set the
2397      variable `org-special-ctrl-a'.  It will bring the cursor
2398      first back only to the beginning of the headline *text*,
2399      i.e. after the stars and the TODO keyword, if any.  A second
2400      C-a will then move the cursor to the beginning of the line.
2401      If the cursor is already at the beginning of the line, C-a
2402      will spring *forward* to the headline text.  This was a
2403      proposal from Leo, based on a request from Scott Jaderholm.
2405      I have not turned this turned this on by default, should I?
2407    - When LaTeX fragments are processed into images, there is now
2408      more control and (hopefully) betters defaults for colors and
2409      scaling.  Special values can be set for HTML export, so that
2410      these values can differ from what is used for display in an
2411      emacs buffer.  The default foreground and background colors
2412      for images embedded in emacs are now taken from the default
2413      emacs face.  Thanks to Xiao-Yong Jin for proposing these
2414      changes.
2416    - There is now a much better mechanism to change some keys in
2417      org-mode if these keys clash with other modes you use.  Turn
2418      this on by setting `org-replace-disputed-keys' (aliased to
2419      `org-CUA-compatible').  The list of keys to replace is now
2420      fully customizable, see the option `org-disputed-keys'.
2421      Many thanks to Meciej Katafiasz for a patch implementing
2422      this.
2424    - Stuck project descriptions have been extended.  You can now
2425      use "*" as a TODO keyword or tag to say that *any* TODO
2426      keyword or TAG marks a project as non-stuck.  You also can
2427      give an arbitrary regular expression that, if it matches,
2428      indicates a non-stuck project.
2430    - The code for emphasis like bold, italic etc has been
2431      modified - I might have broken something in the process,
2432      please let me know if you find problems.
2434    - A number of bugs have been fixed - those where I have
2435      replied "Fixed" on the mailing list.
2437 * Version 4.71
2439 ** Overview
2441 ** Incompatible changes
2443 ** Details
2445   - New variables to customize the header and data tags in
2446     exported HTML.  These are the variables
2447     `org-export-table-header-tags' and
2448     `org-export-table-data-tags'.  This follows a request from
2449     Scott Otterson.
2451   - New option `org-format-latex-header' for customizing the
2452     header of the LaTeX file used to convert embedded LaTeX to
2453     images.  Thanks to `Matthieu Lemerre' for the suggestion.
2455   - The prefix version of `org-todo-list' works again.  This
2456     means that `C-1 C-c a t' produces the list of TODO entries
2457     for the first TODO keyword.  If you use different TODO setups
2458     in different agenda files, be careful:  This number now
2459     refers to the list of *all* todo keywords used in files
2460     that are scanned for the agenda.
2462   - Many bug fixes.
2464 * Version 4.70
2466 ** Overview
2468    - Dust settles after revamp of TODO keyword system.
2469    - The export title can be taken from the first text line.
2470    - TTY replacement keys have changed.
2472 ** Incompatible changes
2474    - Some TTY replacement keys are changed, see below.
2476 ** Details
2478   - Further development concerning TODO keywords.
2480     + You can now have several DONE states in a sequence, like
2482       #+SEQ_TODO: TODO VERIFY | DONE DELEGATED
2484       The difference to the proposal discussed on the mailing
2485       list (and which is also works!)
2487         #+SEQ_TODO: TODO VERIFY | DONE
2488         #+SEQ_TODO: | CANCELED
2490       is that in the first case, the extra DONE states will be
2491       reached with `C-c C-t' (or with `t' from the agenda), while
2492       in the second case you need S-<right> to get to the special
2493       states.  I guess both ideas can be useful - I am leaning
2494       toward using the latter.
2496     + Setting up TODO keywords in Lisp previously used two
2497       separate variables: `org-todo-keywords' and
2498       `org-todo-interpretation'.  The preferred way is now to use
2499       only `org-todo-keywords', with a new structure:
2501        (setq org-todo-keywords
2502          '((sequence "TODO" "|" "DONE")
2503            (sequence "BUG" "KNOWNCAUSE" "|" "FIXED" "IGNORED")
2504            (type "Fred" "Lisa" "Peter" "|" "DONE")
2505            (sequence "CANCELED")    ; for things we decide to not do.
2506            ))
2508       If your setting has this new structure,
2509       `org-todo-interpretation' will be ignored.  This change
2510       does not break backward compatibility.  The old way of
2511       using a flat list in `org-todo-keywords' and taking the
2512       interpretation from the other variable still works.
2514     + When listing *specific* TODO entries via a sparse tree
2515       (`C-u C-c C-v') or via the agenda (`C-c a T' or `C-u C-c a
2516       t'), you can now specify several keywords to be selected,
2517       like "TODO|VERIFY|WAITING".  This also works for custom
2518       agenda commands.  Thanks to Jason F. McBrayer for pointing
2519       out this omission.
2521   - If you have configured Org-mode to export also the text
2522     before the first headline (this is done by setting the
2523     variable `org-export-skip-text-before-1st-heading' to nil),
2524     then the first normal text line in the buffer becomes the
2525     title of the exported document.  A title set with #+TITLE
2526     overules this default, and the first line then belongs to the
2527     normal text.  Thanks to David House for this proposal.
2529   - TTY replacement keys.  Some of the key bindings used by
2530     Org-mode do not work on a tty, so replacement key sequences
2531     are provided on ttys.  In version 4.70, there are some
2532     changes in the tty replacements.  Thanks to Jason F. McBrayer
2533     for coming up with the idea to use C-c <cursor> keys.
2535     | Command           |           | Old TTY       | New TTY       |
2536     | org-.....         | Main Key  | Replacement   | Replacement   |
2537     |-------------------+-----------+---------------+---------------|
2538     | shiftleft         | S-left    | C-c C-x left  | C-c left      |
2539     | shiftright        | S-right   | C-c C-x right | C-c right     |
2540     | shiftup           | S-up      | C-c C-x up    | C-c up        |
2541     | shiftdown         | S-down    | C-c C-x down  | C-c down      |
2542     | shiftcontrolleft  | C-S-left  |               | C-c C-x left  |
2543     | shiftcontrolright | C-s-right |               | C-c C-x right |
2546 * Version 4.69
2548 ** Overview
2550    This time the changes affect the following areas:
2552    - TODO keywords:  Multiple sequences in a single file.
2553    - Export: More control over text before the first heading.
2554    - Export: More control over sub/superscript interpretation.
2555    - Plain lists:  Option to let empty lines terminate lists.
2556    - Tables: New command to insert hline and move into line below.
2557    - REPEATing items:  Turn of note taking.
2558    - Bug fixes.
2560 ** Incompatible changes
2562    - It used to be possible to spread the list of TODO keywords
2563      over several lines, like
2565      #+SEQ_TODO: TODO
2566      #+SEQ_TODO: PROGRESS
2567      #+SEQ_TODO: DONE
2569      This is no longer possible.  Each such line now specifies an
2570      independent set of TODO keywords, with its own DONE state.
2571      See below for details.
2573    - The #+TEXT construct has been used to insert unchanged HTML
2574      into an exported file.  This is no longer possible, the TEXT
2575      lines will be processed like any other lines.  However,
2576      there are now much better ways of getting quoted HTML into
2577      the exported file.
2579 ** Details
2581    - You can now use multiple sets of TODO keywords in the same
2582      buffer.  For example, you may put the following three lines
2583      into a file:
2585        #+SEQ_TODO: TODO DONE
2586        #+SEQ_TODO: REPORT BUG KNOWNCAUSE RESOLVED
2587        #+TYP_TODO: Fred Laura Peter Me OK
2589      Each sub-sequence has its own DONE state.  It is best to use
2590      different keywords in all sequences, to make sure Org-mode
2591      does not loose track in which specific sequence it is
2592      working.  You could use the same word for all DONE states,
2593      but then cycling through to a TODO state might not bring you
2594      where you want to be.
2596      After initially setting a keyword, `C-c C-t' cycles through
2597      a sublist, i.e. is cycles from TODO to DONE or from
2598      KNOWNCAUSE to RESOLVED and further to (nothing) and back to
2599      REPORT.
2601      S-right and S-left allow to select any keyword, so they move
2602      from DONE to REPORT and from RESOLVED to Fred.
2604      C-S-right and C-S-left jump from one sub-sequence to the
2605      next, for example from TODO or DONE to REPORT to Fred.
2607      Thanks to Rick Moynihan for triggering this development.
2609    - Text before the first headline can now be exported if you
2610      configure Org-mode accordingly.  Either set the variable
2611      `org-export-skip-text-before-1st-heading' to nil, or use the
2612      new in-buffer option
2614      #+OPTION: skip:nil
2616    - Export content specified via the #+TEXT construct is now
2617      fully processed, i.e. links, emphasis etc. are all
2618      interpreted.  #+TEXT lines may include
2619      #+BEGIN_HTML...#+END_HTML sections to embed literal HTML.
2621    - During HTML export, you can request to have a_{b}
2622      interpreted as a subscript, but to leave a_b as it is.  This
2623      can be done by setting the variable
2624      org-export-sub-superscript to the symbol `{}' with
2626           (setq org-export-sub-superscript '{})
2628      or by using
2630            #+OPTIONS: ^:{}
2632      Thanks to Eddward DeVilla for this idea.
2634    - New variable `org-empty-line-terminates-plain-lists'.
2635      Default is nil, meaning that empty lines are part of the
2636      previous list item, and that you can have several paragraphs
2637      in one such item.  Set this to t if you want an empty line
2638      terminate all levels of plain list items.
2640      Thanks to Mike Newman for triggering this development.
2642    - C-c RET does insert a horizontal separator line and move the
2643      cursor into the table line below it.  Thanks to Bastien for
2644      this proposal.
2646    - Org-mode always offers you to record a note when a TODO item
2647      automatically repeats, even if you are not logging state
2648      changes.  The new variable `org-log-repeat' allows to turn
2649      this off, so that notes are really only been taken if you
2650      are logging all state changes.
2652    - Various Bug fixes, thanks to everyone who reported.
2654 * Version 4.68
2656 ** Overview
2657    - Priority handling in the tags view
2658    - Date/time prompt follows the popup calender, and accepts AM/PM times.
2659    - Standard references like B4 in the spreadsheet.
2660    - Improvements to the formula editor.
2661    - C-j does better indentation.
2662    - Bug fixes
2664 ** Details
2665    - Priority handling in the tags view
2667      + Agenda lists selected by tag are now sorted by priority.
2668        Thanks to Andrew Korty for reporting this omission.
2670    - Improvements to the date/time prompt.
2672      + When you move (using S-cursor keys) the cursor in the pop-up
2673        calendar window while responding to a date/time prompt, the
2674        prompt is updated with the new default date (Emacs only).
2676      + You can now enter AM/PM times at this prompt.
2678    - Changes in the spreadsheet
2680      + You can now also write B4 instead of @4$2 as a reference in
2681        formulas.  The column references without specified row can be
2682        written as C& instead of $3.  Such references make formulas
2683        easier to read and are now the default way how references are
2684        shown when you edit existing formulas.  To get the old behavior
2685        back (i.e. only @row$col references), set the variable
2686        `org-table-use-standard-references' to nil.
2688        Relative references like @-3$-2 or @II..III continue to use the
2689        internal format.
2691    - Changes in the formula editor (the one you get with "C-c '")
2693      + The formulas are organized in a more logical way.
2695      + There is now a menu with commands.
2697      + When starting the formula editor with "C-c '", the cursor
2698        immediately moves to the formula for the current field.
2700      + With the cursor on a reference in the formula, you can use
2701        S-cursor keys to change the field being referenced.
2703    - C-j indents the following line correctly whe used in a headline
2704      or in aplain list item.  Thanks to Leo for this suggestion.
2706    - Bug fixes
2708      + Flyspell now knows about special org-mode commands.
2709        Thanks to Vinod Valsalam for reporting this problem, and to
2710        Andrew Korty for showing how to fix it.
2712      + Most other bugs discussed recently on emacs-orgmode@gnu.org
2713        should be fixed, except the problem with non-ASCII characters
2714        in tags....
2716 * Version 4.67
2718    - Expert mode for fast tag selection.
2719      When org-fast-tag-selection-single-key is `expert', not even
2720      the selection window is shown, only the prompt.  One more C-c
2721      gets you the window, another one goes to multiple selection mode.
2723    - Synchronized with Emacs once more:  Emacs CVS has now org-mode
2724      4.67.  At least until it causes a problem, then the Emacs people
2725      will switch back to 4.56.  Lets hope there will be no problem.
2727    - Code cleanup
2729    - Bug fixes
2731 * Version 4.66
2733 ** Overview
2735    - Sorting of top-level entries works now if the region contains
2736      top-level entries, or if the cursor is before the first headline.
2737      Thanks to "redblue" for reporting this bug.
2739    - When entering date and time at the prompt, you can now mix
2740      entering text and selecting something in the calendar.  For
2741      example, enter 22:15 at the prompt without pressing RET, and then
2742      click on a date in the calendar.  Both pieces of information will
2743      be included in the resulting time stamp.  You can also use
2744      S-curser to move the cursor in the calendar to the desired date
2745      and then enter 22:15 and press RET at the prompt.
2747    - When setting a deadline or a schedule, entering a time now
2748      automatically selects the time stamp format that includes the
2749      time. Bug report (by means of a question) from Bastre.
2751    - C-c C-l can be used to convert a plain link into a bracket link.
2753    - Internal links now match inside (the visible part of) other
2754      links.  Thanks to Scott Otterson for reporting this bug.
2756    - iCalendar export of TODO items fixed, see also the variable
2757      `org-icalendar-include-todo'.  Thanks to Philipp Raschdorf.
2759    - The number of levels in the table of contents of an exported
2760      document can now be set independently of the number of headline
2761      levels.  For example:
2763         #+OPTIONS: H:4 toc:2
2765    - The command `C-c }' toggles the display of row and column numbers
2766      the the current table, to aid constructing formulas.  To try it,
2767      move the cursor to a table and press `C-c }', or use the menu
2768      entry.
2770    - Orgtbl translation functions (introduced in 4.65) have been
2771      simplified using a generic function `orgtbl-to-generic' that can
2772      be used for very general languanges.  Writing your own translator
2773      should be very easy now.  More info in the manual.
2775    - CONTENTS visibility can be limited to a certain level.  The
2776      command `C-3 S-TAB' will switch to CONTENTS view and show the
2777      first 3 levels.
2779    - Bug fixes.
2781 * Version 4.65
2783 ** Overview
2785    - Orgtbl can be used to maintain tables in LaTeX, and in any other mode
2786    - Editing Lisp formulas for tables improved.
2787    - Better structure for HTML exported tables.
2788    - New "calculation" marker "/" to mark lines that should not be exported.
2790 ** Detailed description of changes
2792    - You can use orgtbl mode to maintain a LaTeX table, or pretty much
2793      any table in any mode.
2795      This does *not* work by making Orgtbl aware of LaTeX syntax.  That
2796      would be a box of Pandora I am not willing to open.  Instead, you
2797      use a normal Orgtbl-mode table, and a converter program to
2798      automatically place a LaTeX version of the table into the correct
2799      spot in the LaTeX file.  The orgtbl-mode table can be maintained
2800      inside the same file, in a block comment.
2802      I am providing translators for LaTeX, HTML, and TeXInfo.  For
2803      other applications, you need to write one yourself - but that is
2804      not hard if you start from the LaTeX version and just modify it.
2805      Thanks to Thomas Baumann for triggering this development through
2806      a request for a table-to-LaTeX converter.
2808    - In the special buffer to edit the formulas of a table (created
2809      with "C-c '"), there is now better support for editing Lisp
2810      formulas.  TAB and M-TAB work like in an Emacs Lisp buffer,
2811      indenting lines and completing lisp symbols.  With the cursor on
2812      a line defining a complex Lisp formula, a first press on TAB will
2813      convert the formula into a pretty-printed version with proper
2814      linebreaks and indentation.  A second TAB folds the line back to
2815      the compact form.
2817    - Tables in HTML export have now additional structure elements
2818      defined.  The header (before the first hline) is wrapped into
2819      <thead>..</thead>, and each part of the body (as separated in
2820      org-mode by hlines) is wrapped into <tbody>..</tbody> tags.  I
2821      have also changed the CSS style for <td> fields and the value of
2822      `org-export-html-table-tag' to get cleaner tables. Basically,
2823      tables now have horizontal lines only where needed, and no
2824      vertical lines at all, as generally recommended for tables in
2825      printed text.  I like the new look, but I am not sure if this
2826      change will find general approval, please throw in your view if
2827      you like.  Thanks to Scott for driving this, and to goud-H for
2828      pointing me to the row grouping in tables.
2830    - In a table with calculation markers in the first column, you can
2831      now also put "/" into the first column.  It indicates that this
2832      line should not be exported.  The foremost application for this
2833      are lines containing only "<N>" markers for narrowing columns.
2835 * Version 4.64
2837 ** Overview
2839    - Email links get better, configurable descriptions
2840    - When inserting a link, selected text becomes the description
2841    - Easier access to the list of stored links.
2842    - Horizontal lines in HTML export.
2843    - Remember templates and storing of notes improved.
2845 ** Detailed description of changes
2847    - The descriptive part of links to email messages can be configured
2848      using the variable `org-email-link-description-format'.  The new
2849      default is "Email %c: %.30s" and leads to
2851         Email from NAME: SUBJECT
2853      If you configure the variable `org-from-is-user-regexp'
2854      correctly, then for email you *sent* this will actually change to
2856         Email to NAME: SUBJECT
2858      The subject is limited to 30 characters.  If you have become
2859      attached to the previous default (look twice, the new one is
2860      better), use "%f on: %s" as your format.
2862    - Selecting text before entering a new link with C-c C-l now really
2863      works, the selected text becomes the description part of the
2864      link.  Requested by Scott, buggy 4.62 implementation is now fixed.
2866    - Stored links are part of the history list for C-c C-l, so to
2867      reach them, you can use up/down rather than completion.  Thanks
2868      to Raman for this excellent idea.
2870    - A line consisting only of "-", and at least 5 of them, is
2871      exported into HTML as <hr/>, as proposed by Giovanni Ridolfi.
2873    - Several changes to org <-> remember integration
2875        - You can use `org-remember' as your default command to start
2876          remember.  It will automatically detect if there is an active
2877          region and use it as initial content (we will probably make
2878          remember.el work like this as well).
2879          Also, when calling `org-remember' in a remember buffer that
2880          was created with a template, you will again be asked to
2881          select a template.  The buffer is then re-created with the
2882          new template, but the old context information.  This is
2883          useful if you change your mind about the template to use
2884          (Leo's idea).
2886        - Besides specifying a default *target* file for a note, you
2887          can also give a default *heading* of which the note should
2888          become a subitem.  In many cases this avoids or speeds up
2889          navigating to the right location.  Both file and heading can
2890          be different for each template.  Both are non-binding, you
2891          can change them while storing the note.  However, when you
2892          exit remember with C-u C-c C-c, these defaults will be used
2893          without interaction.
2895        - Templates can specify interactive fields.  During expansion
2896          of the template, you will be prompted for the information in
2897          that field.  For example %^t will pop up a calendar and ask
2898          you to select a date. This new feature follows a proposal
2899          from Leo, who in the mean time has said he does not need it
2900          anymore.  But I liked it, so here it is :-)
2902        - Templates can access information specific to the link type
2903          created, for example the author and subject of an email.
2904          Syntax is %:fromname, %:fromaddress, %:subject etc, details
2905          in the manual.  Proposed by Peder O. Klingenberg.
2907        - I have been considering to move, at some stage, the template
2908          functionality into remember.el itself - which would of course
2909          require consent of the remember.el maintainers.  I am not
2910          sure how well this would work though, since some things like
2911          the interactive time stamps are org.el specific, so treating
2912          them would require special hooks.  Comments?
2914 * Version 4.63
2915    - Bug fixes
2917 * Version 4.62
2918    - Many changes to the spreadsheet functions in the table editor.
2919      For details, please re-read the manual section 3.4.
2920      + New Features
2921        - It is much easier to assign formulas to individual fields.
2922        - References to arbitrary fields and ranges.
2923        - Absolute references are modified in row-editing commands.
2924        - Formula editor that highlights referenced fields.
2925      + Incompatible changes
2926        - Empty fields are excluded in range references, see "E" mode flag.
2927        - &... ranges no longer supported, use new @... ranges.
2928        - Variable insertion into Lisp formulas work differently.
2929    - Selected text becomes the default description for C-c C-l links.(Scott)
2930    - The date format in the agenda/timeline views is now customizable.
2931      See the new option `org-agenda-date-format'. (request by Victor)
2932    - Link abbreviations no longer need a double colon, single colon is fine.
2933    - Bug fixes.
2935 * Version 4.61
2936    - Avoiding keybinding clashes with flyspell
2937      - Archiving is now also on `C-C C-x C-s' (was just `C-c $')
2938      - Cycling through agenda files is now also on "C-'" (was just "C-,")
2939    - Colon is considered part of number, to align times in clock tables.
2940    - Fixed bug for list of stuck projects.
2941    - Fixed several bugs/problems concerning linking to gnus.
2942    - Block agendas can contain the list of stuck projects.
2943    - #+ARCHIVE may now appear several times in the buffer.
2944    - More bug fixes.
2946 * Version 4.60
2947    - HTML export: inlining images, clickable images (manual 10.2.4).
2948    - Incremental search now shows proper context when exiting.
2949    - Tables calculation and Calc package.
2950      - Calc is no longer needed when using only elisp formulas.
2951      - Proper error messages when calc is needed and not available.
2952    - Tracking TODO state changes with time stamps and notes.
2953    - Empty entries go full circle.
2954    - Links in iCalendar export cleaned up.
2955    - Bug fixes.
2958 * Version 4.59
2959    - Cleanup code, bug fixes.
2961 * Version 4.58
2962    - Full undo support in the agenda buffer.
2963    - Listing stuck GTD projects (projects without any NEXT ACTIONS).
2964      Configure `org-stuck-projects' before using it.
2965    - C-c C-x b shows the current subtree in an indirect buffer, in
2966      another, dedicated frame.
2967    - Custom agenda commands take precedence over builtin commands.
2968    - auto-fill for comments works on the Emacs side, XEmacs not yet.
2970 * Version 4.57
2971    - Sorting of outline items on same level.
2972    - Sorting tables automatically selects line range between hlines.
2973    - Changes in Agenda buffer
2974      - `C-c C-o' follows a link in the current line.
2975      - `C-c $' archives the subtree corresponding to the line.
2976      - Changing dates with S-left and S-right show new date in agenda,
2977        but still do not move the entry to the new date.
2978      - new option `org-agenda-skip-scheduled-if-done'.
2979    - Agenda and sparse tree construction using tag matches can now
2980      use regular expressions.
2981    - When prompted for a date/time, entering "+7" indicates a date
2982      7 days from now - but only this is the only thing you give.
2983    - Custom time formats also apply to exported html and ascii.
2984    - Bug fixes.
2986 * Version 4.56
2987    - `C-k' in agenda kills current line and corresponding subtree in file.
2988    - XEmacs compatibility issues fixed, in particular tag alignment.
2989    - M-left/right now in/outdents plain list items, no Shift needed.
2990    - Bug fixes.
2992 * Version 4.55
2993    - Bug fixes.
2995 * Version 4.54
2996    - Improvements to fast tag selection
2997      + show status also in target line.
2998      + option to auto-exit after first change to tags list (see manual).
2999    - Tags sparse trees now also respect the settings in
3000      `org-show-hierarchy-above' and `org-show-following-heading'.
3001    - Bug fixes.
3003 * Version 4.53
3004    - Custom time formats can be overlayed over time stamps.
3005    - New option `org-agenda-todo-ignore-deadlines'.
3006    - Work-around for flyspell bug (CVS Emacs has this fixed in flyspell.el).
3007    - Work-around for session.el problem with circular data structures.
3008    - Bug fixes.
3010 * Version 4.52
3011    - TAG matches can also specify conditions on TODO keywords.
3012    - The fast tag interface allows setting tags that are not in the
3013      predefined list.
3014    - Bug fixes.
3016 * Version 4.51
3017    - Link abbreviations (manual section 4.5).
3018    - More control over how agenda is displayed.  See the new variables
3019      `org-agenda-window-setup', `org-agenda-restore-windows-after-quit'.
3020    - Bug fixes.
3022 * Version 4.50
3023    - Closing a TODO item can record an additional note.
3024      See variables `org-log-done' and `org-log-note-headings'.
3025    - Inserting headlines and bullets can leave an extra blank line.
3026      See variable `org-blank-before-new-entry'. (Ed Hirgelt patch)
3027    - [[bracket links]] in the agenda are active just as in org-mode buffers.
3028    - C-c C-o on a date range displays the agenda for exactly this range.
3029    - The default for `org-cycle-include-plain-lists' is back to nil.
3030    - Calls to `org-occur' can be stacked by using a prefix argument.
3031    - The options `org-show-hierarchy-above' and `org-show-following-heading'
3032      now always default to `t', but can be customized differently for
3033      different types of sparse trees or jump commands.
3034    - Bug fixes.
3037 * Version 4.49
3038    - Agenda views can be made in batch mode from the command line.
3039    - `org-store-link' does the right thing in dired-mode.
3040    - File links can contain environment variables.
3041    - Full Emacs 21 compatibility has been restored.
3042    - Bug fixes.
3044 * Version 4.47
3045    - Custom commands may produce an agenda which contains several blocks,
3046      each block created by a different agenda command.
3047    - Agenda commands can be restricted to the current file, region, subtree.
3048    - The timeline command must now be called through the agenda
3049      dispatcher (C-c a L).  `C-c C-r' no longer works.
3050    - Agenda items can be sorted by tag.  The *last* tag is used for this.
3051    - The prefix and the sorting strategy for agenda items can depend
3052      upon the agenda type.
3053    - The handling of `mailto:' links can be customized, see the new
3054      variable `org-link-mailto-program'.
3055    - `mailto' links can specify a subject after a double colon,
3056      like [[mailto:carsten@orgmode.org::Org-mode is buggy]].
3057    - In the #+STARTUP line, M-TAB completes valid keywords.
3058    - In the #+TAGS: line, M-TAB after ":" inserts all currently used tags.
3059    - Again full Emacs 21 support:  Checkboxes and publishing are fixed.
3060    - More minor bug fixes.
3062 * Version 4.45
3063    - Checkbox lists can show statistics about checked items.
3064    - C-TAB will cycle the visibility of archived subtrees.
3065    - Documentation about checkboxes has been moved to chapter 5.
3066    - Bux fixes.
3068 * Version 4.44
3069    - Clock table can be done for a limited time interval.
3070    - Obsolete support for the old outline mode has been removed.
3071    - Bug fixes and code cleaning.
3073 * Version 4.43
3074    - Bug fixes
3075    - `s' key in the agenda saves all org-mode buffers.
3077 * Version 4.41
3078    - Shift-curser keys can modify inactive time stamps (inactive time
3079      stamps are the ones in [...] brackets.
3080    - Toggle all checkboxes in a region/below a headline.
3081    - Bug fixes.
3083 * Version 4.40
3084    - Bug fixes.
3087 * Version 4.39
3088    - Special tag ARCHIVE keeps a subtree closed and away from agenda lists.
3089    - LaTeX code in Org-mode files can be converted to images for HTML.
3090    - Bug fixes.
3091    - CDLaTeX-mode features can be used in Org-mode to help inserting
3092      LaTeX environment and math.
3094 * Version 4.38
3095    - noutline.el is now required (important for XEmacs users only).
3096    - Dynamic blocks.
3097    - Archiving of all level 1 trees without open TODO items.
3098    - Clock reports can be inserted into the file in a special section.
3099    - FAQ removed from the manual, now only on the web.
3100    - Bug fixes.
3102 * Version 4.37
3103    - Clock-feature for measuring time spent on specific items.
3104    - Improved emphasizing allows configuration and stacking.
3106 * Version 4.36
3107    - Improved indentation of ASCII export, when headlines become items.
3108    - Handling of 12am and 12pm fixed.  Times beyond 24:00 can be used
3109      and will not lead to conflicts.
3110    - Support for mutually exclusive TAGS with the fast tags interface.
3111    - Bug fixes.
3113 * Version 4.35
3114    - HTML export is now valid XHTML.
3115    - Timeline can also show dates without entries.  See new option
3116      `org-timeline-show-empty-dates'.
3117    - The bullets created by the ASCII exporter can now be configured.
3118      See the new option `org-export-ascii-bullets'.
3119    - New face `org-upcoming-deadline' (was `org-scheduled-previously').
3120    - New function `org-context' to allow testing for local context.
3122 * Version 4.34
3123    - Bug fixes.
3125 * Version 4.33
3126    - New commands to move through plain lists: S-up and S-down.
3127    - Bug fixes and documentation update.
3129 * Version 4.32
3130    - Fast (single-key-per-tag) interface for setting TAGS.
3131    - The list of legal tags can be configured globally and locally.
3132    - Elisp and Info links (thanks to Todd Neal).
3133    - `org-export-publishing-directory' can be an alist, with different
3134      directories for different export types.
3135    - All context-sensitive commands use `call-interactively' to dispatch.
3136    - `org-confirm-shell-links' renamed to `org-confirm-shell-link-function'.
3137    - Bug fixes.
3139 * Version 4.31
3140    - Bug fixes.
3142 * Version 4.30
3143    - Modified installation: Autoloads have been collected in org-install.el.
3144    - Logging (org-log-done) is now a #+STARTUP option.
3145    - Checkboxes in plain list items, following up on Frank Ruell's idea.
3146    - File links inserted with C-c C-l will use relative paths if the linked
3147      file is in the current directory or a subdirectory of it.
3148    - New variable `org-link-file-path-type' to specify preference for
3149      relative and absolute paths.
3150    - New CSS classes for tags, timestamps, timestamp keywords.
3151    - Bug and typo fixes.
3154 * Version 4.29
3155    - Inlining images in HTML export now depends on wheather the link
3156      contains a description or not.
3157    - TODO items can be scheduled from the global TODO list using C-c C-s.
3158    - TODO items already scheduled can be made to disappear from the global
3159      todo list, see `org-agenda-todo-ignore-scheduled'.
3160    - In Tables, formulas may also be Lisp forms.
3161    - Exporting the visible part of an outline with `C-c C-x v' works now
3162      for all available exporters.
3163    - Bug fixes, lots of them :-(
3165 * Version 4.28
3166    - Bug fixes.
3168 * Version 4.27
3169    - HTML exporter generalized to receive external options.
3170      As part of the process, author, email and date have been moved to the
3171      end of the HTML file.
3172    - Support for customizable file search in file links.
3173    - BibTeX database links as first application of the above.
3174    - New option `org-agenda-todo-list-sublevels' to turn off listing TODO
3175      entries that are sublevels of another TODO entry.
3177 * Version 4.26
3178    - Bug fixes.
3180 * Version 4.25
3181    - Revision of the font-lock faces section, with better tty support.
3182    - TODO keywords in Agenda buffer are fontified.
3183    - Export converts links between .org files to links between .html files.
3184    - Better support for bold/italic/underline emphasis.
3186 * Version 4.24
3187    - Bug fixes.
3189 * Version 4.23
3190    - Bug fixes.
3192 * Version 4.22
3193    - Bug fixes.
3194    - In agenda buffer, mouse-1 no longer follows link.
3195      See `org-agenda-mouse-1-follows-link' and `org-mouse-1-follows-link'.
3197 * Version 4.20
3198    - Links use now the [[link][description]] format by default.
3199      When inserting links, the user is prompted for a description.
3200    - If a link has a description, only the description is displayed
3201      the link part is hidden.  Use C-c C-l to edit the link part.
3202    - TAGS are now bold, but in the same color as the headline.
3203    - The width of a table column can be limited by using a field "<N>".
3204    - New structure for the customization tree.
3205    - Bug fixes.
3208 * Version 4.13
3209    - The list of agenda files can be maintainted in an external file.
3210    - Bug fixes.
3212 * Version 4.12
3213    - Templates for remember buffer.  Note that the remember setup changes.
3214      To set up templates, see `org-remember-templates'.
3215    - The time in new time stamps can be rounded, see new option
3216      `org-time-stamp-rounding-minutes'.
3217    - Bug fixes (there are *always* more bugs).
3219 [...]
3221 Version 4.00
3222    - Headlines can contain TAGS, and Org-mode can produced a list
3223      of matching headlines based on a TAG search expression.
3224    - `org-agenda' has now become a dispatcher that will produce the agenda
3225      and other views on org-mode data with an additional keypress.
3228 * Version 3.24
3229    - Switching and item to DONE records a time stamp when the variable
3230      `org-log-done' is turned on.  Default is off.
3232 * Version 3.23
3233    - M-RET makes new items as well as new headings.
3234    - Various small bug fixes
3236 * Version 3.22
3237    - CamelCase words link to other locations in the same file.
3238    - File links accept search options, to link to specific locations.
3239    - Plain list items can be folded with `org-cycle'.  See new option
3240      `org-cycle-include-plain-lists'.
3241    - Sparse trees for specific TODO keywords through numeric prefix
3242      argument to `C-c C-v'.
3243    - Global TODO list, also for specific keywords.
3244    - Matches in sparse trees are highlighted (highlights disappear with
3245      next buffer change due to editing).
3247 * Version 3.21
3248    - Improved CSS support for the HTML export.  Thanks to Christian Egli.
3249    - Editing support for hand-formatted lists
3250      - M-S-cursor keys handle plain list items
3251      - C-c C-c renumbers ordered plain lists
3253 * Version 3.20
3254    - There is finally an option to make TAB jump over horizontal lines
3255      in tables instead of creating a new line before that line.
3256      The option is `org-table-tab-jumps-over-hlines', default nil.
3257    - New command for sorting tables, on `C-c ^'.
3258    - Changes to the HTML exporter
3259      - hand-formatted lists are exported correctly, similar to
3260        markdown lists.  Nested lists are possible.  See the docstring
3261        of the variable `org-export-plain-list-max-depth'.
3262      - cleaned up to produce valid HTML 4.0 (transitional).
3263      - support for cascading style sheets.
3264    - New command to cycle through all agenda files, on C-,
3265    - C-c [ can now also be used to change the sequence of agenda files.
3268 * Version 3.19
3269    - Bug fixes
3271 * Version 3.18
3272    - Export of calendar information in the standard iCalendar format.
3273    - Some bug fixes.
3275 * Version 3.17
3276    - HTML export specifies character set depending on coding-system.
3278 * Version 3.16
3279    - In tables, directly after the field motion commands like TAB and RET,
3280      typing a character will blank the field.  Can be turned off with
3281      variable `org-table-auto-blank-field'.
3282    - Inactive timestamps with `C-c !'.  These do not trigger the agenda
3283      and are not linked to the calendar.
3284    - Additional key bindings to allow Org-mode to function on a tty emacs.
3285    - `C-c C-h' prefix key replaced by `C-c C-x', and `C-c C-x C-h' replaced
3286      by `C-c C-x b' (b=Browser).  This was necessary to recover the
3287      standard meaning of C-h after a prefix key (show prefix bindings).
3289 * Version 3.15
3290    - QUOTE keyword at the beginning of an entry causes fixed-width export
3291      of unmodified entry text. `C-c :' toggles this keyword.
3292    - New face `org-special-keyword' which is used for COMMENT, QUOTE,
3293      DEADLINE and SCHEDULED, and priority cookies.  Default is only a weak
3294      color, to reduce the amount of aggressive color in the buffer.
3296 * Version 3.14
3297    - Formulas for individual fields in table.
3298    - Automatic recalculation in calculating tables.
3299    - Named fields and columns in tables.
3300    - Fixed bug with calling `org-archive' several times in a row.
3302 * Version 3.13
3303    - Efficiency improvements:  Fewer table re-alignments needed.
3304    - New special lines in tables, for defining names for individual cells.
3306 * Version 3.12
3307    - Tables can store formulas (one per column) and compute fields.
3308      Not quite like a full spreadsheet, but very powerful.
3309    - table.el keybinding is now `C-c ~'.
3310    - Numeric argument to org-cycle does `show-subtree' above on level ARG.
3311    - Small changes to keys in agenda buffer.  Affected keys:
3312      [w] weekly view; [d] daily view; [D] toggle diary inclusion.
3313    - Bug fixes.
3315 * Version 3.11
3316    - Links inserted with C-c C-l are now by default enclosed in angle
3317      brackets.  See the new variable `org-link-format'.
3318    - ">" terminates a link, this is a way to have several links in a line.
3319      Both "<" and ">" are no longer allowed as characters in a link.
3320    - Archiving of finished tasks.
3321    - C-<up>/<down> bindings removed, to allow access to paragraph commands.
3322    - Compatibility with CUA-mode (see variable `org-CUA-compatible').
3323    - Compatibility problems with viper-mode fixed.
3324    - Improved html export of tables.
3325    - Various clean-up changes.
3327 * Version 3.10
3328    - Using `define-derived-mode' to derive `org-mode' from `outline-mode'.
3331 * Version 3.09
3332    - Time-of-day specifications in agenda are extracted and placed
3333      into the prefix.  Timed entries can be placed into a time grid for
3334      day.
3336 * Version 3.08
3337    - "|" no longer allowed as part of a link, to allow links in tables.
3338    - The prefix of items in the agenda buffer can be configured.
3339    - Cleanup.
3341 * Version 3.07
3342    - Some folding inconsistencies removed.
3343    - BBDB links to company-only entries.
3344    - Bug fixes and global cleanup.
3346 * Version 3.06
3347    - M-S-RET inserts a new TODO heading.
3348    - New startup option `content'.
3349    - Better visual response when TODO items in agenda change status.
3350    - Window positioning after visibility state changes optimized and made
3351      configurable.  See `org-cycle-hook' and `org-occur-hook'.
3353 * Version 3.05
3354    - Agenda entries from the diary are linked to the diary file, so
3355      adding and editing diary entries can be done directly from the agenda.
3356    - Many calendar/diary commands available directly from agenda.
3357    - Field copying in tables with S-RET does increment.
3358    - C-c C-x C-v extracts the visible part of the buffer for printing.
3359    - Moving subtrees up and down preserves the whitespace at the tree end.
3361 * Version 3.04
3362    - Table editor optimized to need fewer realignments, and to keep
3363      table shape when typing in fields.
3364    - A new minor mode, orgtbl-mode, introduces the Org-mode table editor
3365      into arbitrary major modes.
3366    - Fixed bug with realignment in XEmacs.
3367    - Startup options can be set with special #+STARTUP line.
3368    - Heading following a match in org-occur can be suppressed.
3370 * Version 3.03
3371    - Copyright transfer to the FSF.
3372    - Effect of C-u and C-u C-u in org-timeline swapped.
3373    - Timeline now always contains today, and `.' jumps to it.
3374    - Table editor:
3375      - cut and paste of rectangular regions in tables
3376      - command to convert org-mode table to table.el table and back
3377      - command to treat several cells like a paragraph and fill it
3378      - command to convert a buffer region to a table
3379      - import/export tables as tab-separated files (exchange with Excel)
3380    - Agenda:
3381      - Sorting mechanism for agenda items rewritten from scratch.
3382      - Sorting fully configurable.
3383      - Entries specifying a time are sorted together.
3384    - Completion also covers option keywords after `#-'.
3385    - Bug fixes.
3387 * Version 3.01
3388    - New reference card, thanks to Philip Rooke for creating it.
3389    - Single file agenda renamed to "Timeline".  It no longer shows
3390      warnings about upcoming deadlines/overdue scheduled items.
3391      That functionality is now limited to the (multifile) agenda.
3392    - When reading a date, the calendar can be manipulated with keys.
3393    - Link support for RMAIL and Wanderlust (from planner.el, untested).
3394    - Minor bug fixes and documentation improvements.
3396 * Version 3.00
3397    - Multifile Agenda shows current entries from many different files.
3398    - TeXInfo documentation (thanks to Christian Egli for the conversion).
3399    - Additional applications for TODO keywords, see documentation.
3400      Different files may have different TODO keywords etc.
3401    - Priorities for TODO items.
3402    - The browser mode used by `org-remember-handler' is improved.
3403    - Images get inlined in HTML export (thanks to Carsten Wimmer).
3404    - File links can contain line numbers, like file:/usr/etc/config:255
3405    - Minor bug fixes.
3408 * Version 2.10
3409    - TODO entries can have additional states besides TODO and DONE.
3410      See new variable `org-todo-keywords'.
3411    - TODO keywords can be interpreted as categories.  See variable
3412      `org-todo-interpretation'.
3413    - M-TAB completion on TODO keywords, TeX symbols, and normal words.
3414    - All keywords (like TODO, DEADLINE etc) are configurable.
3415    - Cursor positioning optimized after pro/demotion and TODO cycling.
3416    - Emphasizing in HTML works now for *bold*, /italic/ and _underline_.
3417    - New commands to kill, copy and yank entire subtrees.  Yanking
3418      modifies the level of the tree before insertion.
3419    - New command `org-goto' (C-c C-j) to quickly move to other locations
3420      in the buffer without affecting outline visibility.
3421    - Hooks for John Wiegley's remember.el.
3422    - `org-read-date' pops up calendar for date selection with the mouse.
3423      See variable `org-popup-calendar-for-date-prompt'.
3425 * Version 2.6
3426    - TODO items can be SCHEDULED to a certain date.
3427    - Expired DEADLINEs are ignored if in an entry marked DONE.
3428    - From the diary or time-sorted view (C-c C-r), C-c C-t can be used to
3429      change the TODO state of an item remotely.
3430    - Horizontal computations in table editor. See `org-table-eval-formula'.
3431    - Fixed bug with summing tables (command `org-table-sum', `C-c +').
3432    - Calendar window follows the timestamp when a timestamp is changed.
3433      New variable `org-calendar-follow-timestamp-change'.
3434    - Time-sorted view (`org-diary-view', C-c C-r) now uses the prefix
3435      argument to force inclusion of unscheduled TODO items.
3436    - New variable `org-confirm-shell-links' to turn of safety query.
3437    - New variable `org-open-non-existing-files'.
3439 * Version 2.4
3440    - A time-sorted view on all time stamps can be created with C-c C-r.
3441    - Timestamps and Deadlines can be shown in the Emacs diary.
3442    - Date ranges introduced.
3443    - Time-string formats are no longer configurable.
3444    - Vertical lines in tables can be made invisible with `C-c |'.
3445    - New "link" type to execute shell commands, like "shell:ls *.org"
3446    - Upon export, "myfile.org" becomes "myfile.html" or "myfile.txt",
3447      instead of "myfile.org.html" or "myfile.org.txt".
3448    - When the cursor is in the white space at the beginning of a line,
3449      TAB removes the whitespace before indenting again.
3451 * Version 2.0
3452    - Windows (NT/2000) support.
3453    - Works with both Emacs and XEmacs.
3454    - Fully automatic table editor.
3455    - New link types into Gnus, VM and BBDB.
3456    - Other link system changes
3457      - Time stamps are treated as links to the calendar.
3458      - Easy creation of links with global command `org-store-link'.
3459      - Insertion of links with `C-c C-l' works differently now.
3460      - Space characters allowed as part of a link.
3461      - Options in `org-file-apps' extended.  The command may now be
3462        symbol 'emacs', or a lisp form.
3463    Please re-read the manual section about links.
3464    - Timestamp changes
3465      - `org-deadline' now prompts for a date.
3466      - A line can now contain several timestamps.  Updating of a
3467        timestamp only happens if the cursor is at the timestamp.
3468      - Changed the time-stamp-format to ISO, to make sure it will
3469        always work (non-English month names had caused problems
3470        with `parse-time-string'.).  Changing the time stamp format
3471        is not recommended.
3472    - Picture mode enhancements have been removed from org.el
3475 * Version 1.4
3476    - Some option name changes, not backward compatible.
3477    - ASCII exporter upgrade: Table of contents.
3478    - HTML exporter upgrade: fixed-width regions, better
3479      sub/superscripts, many TeX symbols supported.
3480    - Calendar support.
3482 * Version 1.3
3483    - HTML exporter upgrade, in particular table of contents