From 09600666ecbbebe86830a937658465d046e13d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Delafond?= Date: Fri, 27 Nov 2015 17:40:16 +0100 Subject: Imported Upstream version 8.3.2 --- etc/ORG-NEWS | 93 ++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 59 insertions(+), 34 deletions(-) (limited to 'etc') diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS index a14f3a3..779ed76 100644 --- a/etc/ORG-NEWS +++ b/etc/ORG-NEWS @@ -1,7 +1,7 @@ ORG NEWS -- history of user-visible changes. -*- org -*- #+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. See the end of the file for license conditions. @@ -25,7 +25,7 @@ The following function will repair them: #+BEGIN_SRC emacs-lisp (defun org-repair-property-drawers () "Fix properties drawers in current buffer. - Ignore non Org buffers." +Ignore non Org buffers." (when (eq major-mode 'org-mode) (org-with-wide-buffer (goto-char (point-min)) @@ -51,7 +51,18 @@ The following function will repair them: (match-beginning 0) (min (1+ (match-end 0)) end))) (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 =:noexport:= (see =org-export-exclude-tags=.) + *** =#+CATEGORY= keywords no longer apply partially to document 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 :END: #+END_SRC + *** New variable to control visibility when revealing a location -~org-show-following-heading~, ~org-show-siblings~, -~org-show-entry-below~ and ~org-show-hierarchy-above~ no longer exist. -Instead, visibility is controlled through a single variable: -~org-show-context-detail~, which see. +~org-show-following-heading~, ~org-show-siblings~, ~org-show-entry-below~ +and ~org-show-hierarchy-above~ no longer exist. Instead, visibility is +controlled through a single variable: ~org-show-context-detail~, which +see. *** 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 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 @@ -98,32 +129,13 @@ docstring for more information. - ~org-latex-format-headline-function~ - ~org-latex-format-inlinetask-function~ - ~org-link-search~ - -*** 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. +** New features *** Behavior of ~org-return~ changed If point is before or after the headline title, insert a new line 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 The functionality of nesting tags in hierarchies is added to org-mode. This is the generalization of what was previously called "Tag groups" @@ -309,6 +321,15 @@ more features. See docstring for details. Functions in this filter are applied on the body of the exported document, befor wrapping it within the template. +*** New :environment parameter when exporting example blocks to LaTeX + +: #+ATTR_LATEX: :environment myverbatim +: #+BEGIN_EXAMPLE +: This sentence is false. +: #+END_EXAMPLE + +will be exported using =@samp(myverbatim)= instead of =@samp(verbatim)=. + *** Various improvements on radio tables Radio tables feature now relies on Org's export framework ("ox.el"). @@ -518,10 +539,15 @@ two of them, as if this option was nil (default value). *** ~org-export-with-creator~ is a boolean -Special ~comment~ value is no longer allowed. It is possible to use -a body filter to add comments about the creator at the end of the +Special ~comment~ value is no longer allowed. It is possible to use a +body filter to add comments about the creator at the end of the document instead. +*** Removed option =org-html-use-unicode-chars= + +Setting this to non-nil was problematic as it converted characters +everywhere in the buffer, possibly corrupting URLs. + *** Removed option =org-babel-sh-command= This undocumented option defaulted to the value of =shell-file-name= @@ -621,8 +647,7 @@ now. *** 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 ** Incompatible changes @@ -1865,7 +1890,7 @@ See http://orgmode.org/elpa/ **** 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 @@ -2182,7 +2207,7 @@ See http://orgmode.org/elpa/ Thanks to Carsten for implementing this. **** 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 **** ASCII: Swap the level-1/level-2 characters to underline the headlines **** Support for Chinese, simplified Chinese, Russian, Ukrainian and Japanese -- cgit v1.2.3