Rearrange; better advertize changes about COMMENT

This commit is contained in:
Bastien 2015-08-15 10:30:26 +02:00
parent b29bd5ce8a
commit 23e629545b
1 changed files with 45 additions and 34 deletions

View File

@ -1,7 +1,7 @@
ORG NEWS -- history of user-visible changes. -*- org -*- ORG NEWS -- history of user-visible changes. -*- org -*-
#+LINK: doc http://orgmode.org/worg/doc.html#%s #+LINK: doc http://orgmode.org/worg/doc.html#%s
#+LINK: git http://orgmode.org/w/?p=org-mode.git;a=commit;h=%s #+LINK: git http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=%s
Copyright (C) 2012-2015 Free Software Foundation, Inc. Copyright (C) 2012-2015 Free Software Foundation, Inc.
See the end of the file for license conditions. See the end of the file for license conditions.
@ -25,7 +25,7 @@ The following function will repair them:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defun org-repair-property-drawers () (defun org-repair-property-drawers ()
"Fix properties drawers in current buffer. "Fix properties drawers in current buffer.
Ignore non Org buffers." Ignore non Org buffers."
(when (eq major-mode 'org-mode) (when (eq major-mode 'org-mode)
(org-with-wide-buffer (org-with-wide-buffer
(goto-char (point-min)) (goto-char (point-min))
@ -51,7 +51,18 @@ The following function will repair them:
(match-beginning 0) (match-beginning 0)
(min (1+ (match-end 0)) end))) (min (1+ (match-end 0)) end)))
(unless (bolp) (insert "\n")))))))))))) (unless (bolp) (insert "\n"))))))))))))
#+END_SRC #+END_SRC
*** Using "COMMENT" is now equivalent to commenting with "#"
If you used "COMMENT" in headlines to prevent a subtree from being
exported, you can still do it but all information within the subtree
is now commented out, i.e. no #+OPTIONS line will be parsed or taken
into account when exporting.
If you want to exclude a headline from export while using its contents
for setting options, use =org-export-exclude-tags= instead.
*** =#+CATEGORY= keywords no longer apply partially to document *** =#+CATEGORY= keywords no longer apply partially to document
It was possible to use several such keywords and have them apply to It was possible to use several such keywords and have them apply to
@ -67,12 +78,13 @@ properties to set category for a subtree, e.g.,
:CATEGORY: some category :CATEGORY: some category
:END: :END:
#+END_SRC #+END_SRC
*** New variable to control visibility when revealing a location *** New variable to control visibility when revealing a location
~org-show-following-heading~, ~org-show-siblings~, ~org-show-following-heading~, ~org-show-siblings~, ~org-show-entry-below~
~org-show-entry-below~ and ~org-show-hierarchy-above~ no longer exist. and ~org-show-hierarchy-above~ no longer exist. Instead, visibility is
Instead, visibility is controlled through a single variable: controlled through a single variable: ~org-show-context-detail~, which
~org-show-context-detail~, which see. see.
*** Replace disputed keys again when reading a date *** Replace disputed keys again when reading a date
@ -85,7 +97,26 @@ Keybinding for reading date can be customized with a new variable
*** No default title is provided when =TITLE= keyword is missing *** No default title is provided when =TITLE= keyword is missing
Skipping =TITLE= keyword no longer provides the current file name, or Skipping =TITLE= keyword no longer provides the current file name, or
buffer name, as the title. Instead, simply ignore the title. buffer name, as the title. Instead, simply ignore the title.
*** Default bindings of =C-c C-n= and =C-c C-p= changed
The key sequences =C-c C-n= and =C-c C-p= are now bound to
~org-next-visible-heading~ and ~org-next-visible-heading~ respectively,
rather than the =outline-mode= versions of these functions. The Org
version of these functions skips over inline tasks (and even-level
headlines when ~org-odd-levels-only~ is set).
*** ~org-element-context~ no longer return objects in keywords
~org-element-context~ used to return objects on some keywords, i.e.,
=TITLE=, =DATE= and =AUTHOR=. It now returns only the keyword.
*** ~org-timer-default-timer~ type changed from number to string
If you have, in your configuration, something like =(setq
org-timer-default-timer 10)= replace it with =(setq
org-timer-default-timer "10")=.
*** Functions signature changes *** Functions signature changes
@ -98,32 +129,13 @@ docstring for more information.
- ~org-latex-format-headline-function~ - ~org-latex-format-headline-function~
- ~org-latex-format-inlinetask-function~ - ~org-latex-format-inlinetask-function~
- ~org-link-search~ - ~org-link-search~
** New features
*** Default bindings of =C-c C-n= and =C-c C-p= changed
The key sequences =C-c C-n= and =C-c C-p= are now bound to
~org-next-visible-heading~ and ~org-next-visible-heading~
respectively, rather than the =outline-mode= versions of these
functions. The Org version of these functions skips over inline tasks
(and even-level headlines when ~org-odd-levels-only~ is set).
*** ~org-element-context~ no longer return objects in keywords
~org-element-context~ used to return objects on some keywords, i.e.,
=TITLE=, =DATE= and =AUTHOR=. It now returns only the keyword.
*** Behavior of ~org-return~ changed *** Behavior of ~org-return~ changed
If point is before or after the headline title, insert a new line If point is before or after the headline title, insert a new line
without changing the headline. without changing the headline.
*** ~org-timer-default-timer~ type changed from number to string
If you have, in your configuration, something like =(setq
org-timer-default-timer 10)= replace it with =(setq
org-timer-default-timer "10")=.
** New features
*** Hierarchies of tags *** Hierarchies of tags
The functionality of nesting tags in hierarchies is added to org-mode. The functionality of nesting tags in hierarchies is added to org-mode.
This is the generalization of what was previously called "Tag groups" This is the generalization of what was previously called "Tag groups"
@ -518,8 +530,8 @@ two of them, as if this option was nil (default value).
*** ~org-export-with-creator~ is a boolean *** ~org-export-with-creator~ is a boolean
Special ~comment~ value is no longer allowed. It is possible to use Special ~comment~ value is no longer allowed. It is possible to use a
a body filter to add comments about the creator at the end of the body filter to add comments about the creator at the end of the
document instead. document instead.
*** Removed option =org-babel-sh-command= *** Removed option =org-babel-sh-command=
@ -621,8 +633,7 @@ now.
*** When exporting, throw an error on unresolved id/fuzzy links and code refs *** When exporting, throw an error on unresolved id/fuzzy links and code refs
This helps spotting wrong links. This helps spotting wrong links.
* Version 8.2 * Version 8.2
** Incompatible changes ** Incompatible changes
@ -1865,7 +1876,7 @@ See http://orgmode.org/elpa/
**** New =todo-unblocked= and =nottodo-unblocked= skip conditions **** New =todo-unblocked= and =nottodo-unblocked= skip conditions
See the [[http://orgmode.org/w/?p%3Dorg-mode.git%3Ba%3Dcommit%3Bh%3Df426da][git commit]] for more explanations. See the [[http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=f426da][git commit]] for more explanations.
**** Allow category filtering in the agenda **** Allow category filtering in the agenda
@ -2182,7 +2193,7 @@ See http://orgmode.org/elpa/
Thanks to Carsten for implementing this. Thanks to Carsten for implementing this.
**** ODT: Add support for ODT export in org-bbdb.el **** ODT: Add support for ODT export in org-bbdb.el
**** ODT: Add support for indented tables (see [[http://orgmode.org/w/?p%3Dorg-mode.git%3Ba%3Dcommit%3Bh%3De9fd33][this commit]] for details) **** ODT: Add support for indented tables (see [[http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=e9fd33][this commit]] for details)
**** ODT: Improve the conversion from ODT to other formats **** ODT: Improve the conversion from ODT to other formats
**** ASCII: Swap the level-1/level-2 characters to underline the headlines **** ASCII: Swap the level-1/level-2 characters to underline the headlines
**** Support for Chinese, simplified Chinese, Russian, Ukrainian and Japanese **** Support for Chinese, simplified Chinese, Russian, Ukrainian and Japanese