emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Release 7.6
@ 2011-07-07  7:16 Bastien
  2011-07-07  8:07 ` Puneeth Chaganti
                   ` (12 more replies)
  0 siblings, 13 replies; 25+ messages in thread
From: Bastien @ 2011-07-07  7:16 UTC (permalink / raw)
  To: emacs-orgmode

Dear all,

I'm releasing Org 7.6.

You can get it from the website as an archive:

  http://orgmode.org/org-7.6.zip
  http://orgmode.org/org-7.6.tar.gz

Apologies for the delay between 7.5 and 7.6 -- it has been hectic times.
I owe a big *thank* to everyone who maintain a high level of activity,
both in the code and on the mailing list.

In particular: Carsten, Eric Schulte, Nicolas Goaziou, David Maus,
Julien Danjou, Jambunathan K, Michael Brand, Achim Gratz, Eric S. Fraga,
Nick Dokos, Lawrence Mitchell, Memnon Anon, Bernt Hansen, Sébastien
Vauban, Thomas S. Dye, Manuel Giraud, Karl Voit, Huy, ... and many
more!  Thanks to all.
 
The highlight of this release is the new ODT exporter, which lives in
the contrib/ directory but will soon make its way to the core: kudos to
Jambunathan for this addition, and thanks to him for his patience.

Below is the (incomplete) list of changes:


Version 7.6 
------------

New features and user-visible improvements 
===========================================

Integration of Jambunathan's OpenDocumentText Exporter 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Activation 
  
  Org-mode 7.6 supports exporting to OpenDocument Text (=odt=)
  format using org-odt.el.  Depending on how you installed Org,
  this module can be enabled in one of the following ways:
  
  1. If you have downloaded the Org from the Web, either as a
     distribution =.zip= or =.tar.gz= file, or as a Git archive,
     enable the =odt= option in the variable =org-modules=.
  
  2. If you are using Org-mode 7.6 that comes bundled with
     Emacs-24.0.50 (or future Emacs-24.1), then you can install the
     OpenDocumentText exporter using the package manager.  Check
     the list of available packages with =M-x list-packages= and
     install the =org-odt= package.
  
  Thanks a lot to Jambunathan K for this great contribution.
  
* Keybindings 
  
  The following interactive commands are provided:
  
  1. =C-c C-e o= (=org-export-as-odt=): Export as an =odt= file.
  
  2. =C-c C-e O= (=org-export-as-odt-and-open=): Export as an =odt=
     file and open the resulting file.
  
  See the =contrib/odt/README.org= file for further details; you
  may check in particular the commands =M-x org-lparse= and =M-x
  org-export-convert=.
  

Ob-Lilypond -- new Babel language to allow score generation 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ob-lilypond - an org-babel language, provided to allow LilyPond
music score generation, complete with optional auditioning via
midi, whilst leveraging the full power of org mode, and literate
programming.  See [https://github.com/mjago/ob-lilypond] for more
documentation.

Thanks to Martyn Jago for this addition.

Org-Bibtex -- major improvements 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Provides support for managing bibtex bibliographical references
data in headline properties.  Each headline corresponds to a
single reference and the relevant bibliographic meta-data is
stored in headline properties, leaving the body of the headline
free to hold notes and comments.  Org-bibtex is aware of all
standard bibtex reference types and fields.

The key new functions are

org-bibtex-check: queries the user to flesh out all required
     (and with prefix argument optional) bibtex fields available
     for the specific reference =type= of the current headline.

org-bibtex-create: Create a new entry at the given level,
     using org-bibtex-check to flesh out the relevant fields.

org-bibtex-yank: Yank a bibtex entry on the kill ring as a
     formatted Org-mode headline into the current buffer

org-bibtex-export-to-kill-ring: Export the current headline
     to the kill ring as a formatted bibtex entry.

Spreadsheet computation of durations and time values 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you want to compute time values use the =T= flag, either in
Calc formulas or Elisp formulas:

  Task 1   Task 2     Total  
 --------+--------+---------
   35:00    35:00   1:10:00  

Values must be of the form =[HH:]MM:SS=, where hours are
optional.

Thanks to Martin Halder, Eric Schulte and Carsten for code and
feedback on this.

Links within inlined footnotes. 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

It as also possible to have footnotes side-by-side correctly
exported. New variables =org-export-latex-footnote-separator=,
=org-export-html-footnote-separator= and
=org-export-docbook-footnote-separator= are used to separate them
in that case.

Fontification of footnotes is also more accurate.

New variable =org-export-with-tasks= 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Non-nil means include TODO items for export.

This may have the following values:

- t                    include tasks independent of state.
- todo                 include only tasks that are not yet done.
- done                 include only tasks that are already done.
- nil                  remove all tasks before export
- list of TODO kwds    keep only tasks with these keywords

Thanks to Carsten for implementing this!

New variable =org-export-latex-timestamp-inactive-markup= 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

This variable allows the user to define the LaTeX markup for
inactive timestamps.  It defaults to the same markup than active
timestamps.  Thanks to Eric S Fraga for this patch.

New =org-default= face 
~~~~~~~~~~~~~~~~~~~~~~~

=M-x customize-face RET org-default RET= will let you define the
default face for =org-mode= buffers.

Babel improvements 
~~~~~~~~~~~~~~~~~~~
* In line code block call syntax 
  It is now possible to call code blocks from within blocks of
  prose.
  
  The new syntax is exactly analogous to the existing =#+call:=
  line syntax, only it may be present embedded in a block of prose
  for example =call_double(num=8)= would call the =double= code
  block assigning the =num= variable to the value =8=.
  
* Optional variable names in code block calls 
  Variable names are now optional when passing variables to a code
  block reference.  Un-named variables will be assigned in order as
  shown below.
  
  #+source: minus
  #+begin_src emacs-lisp :var a=0 :var b=0
    (- a b)
  #+end_src
  
  #+call: minus(a=8, b=4)
  
  #+call: minus(8,4)
  
* Sub-tree ID as valid code block variable reference 
  It is now possible to assign the textual contents of an Org-mode
  subtree to a code block variable using the ID of the subtree.
  Both custom IDs and Org-mode IDs may be used.  For example;
  
  
  
* =org-babel-tangle-body-hook= for reprocessing code block bodies during tangling 
* =padline= header argument controls newline padding during tangling 
* Maxima code blocks are now supported 
  
  Thanks to Eric Fraga for contributing this support.
  
* =awk= code blocks are now supported 
* Added =xmpfilter= to Ruby code blocks for annotated code output 
* New =noweb-ref= header argument 
  
  This header argument may be used to concatenate the bodies of
  many code blocks into a single noweb reference.  This brings
  Org-mode's tangling functionality in line with traditional noweb
  tangling.
  
  A no web reference like the following
  
  
  
  will now expand to include the bodies of all code blocks which
  are named =the-ref=, as well as all code blocks which have a
  =:noweb-ref= header argument set to the value =the-ref=.
  

New tests 
~~~~~~~~~~

The =tests/= directory has been extensively updated.

Important bugfixes 
===================

Org-exp-blocks --- proper handling of recursively nested blocks 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

During export pre-processing org-exp-blocks will now ensure that
all matched blocks contain a proper balanced number of
recursively nested blocks.

Before this fix nested blocks such as the following would break
during export.



List handling 
~~~~~~~~~~~~~~

Fix an infinite loop when a list has an end of block string
without the corresponding beginning.

Auto-filling cannot happen at a location where it would otherwise
insert a new item.

Details 
========

Footnotes have gone through some bug-fixing: 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- properly ignore footnotes in comments,
- export calls to previously defined footnotes in LaTeX using
  \footnotemark,
- export footnotes before first heading (LaTeX),
- export footnotes when selecting a subtree not holding their
  definition (LaTeX).

Many small bug fixes have been applied to list handling 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- fix `org-timer-item',
- fix insertion of a new item with a non-nil `indent-tabs-mode',
- fix use of `fill-region' in an item,
- correct export lists within footnotes and footnotes within lists,
- correctly export lists containing macros,
- don't ignore with-case specification when sorting a list,
- better indentation handling when changing an item to an headline
  or the other way,
- fix check-boxes' cookies updating.

-- 
 Bastien

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
@ 2011-07-07  8:07 ` Puneeth Chaganti
  2011-07-07  8:34 ` Eric S Fraga
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 25+ messages in thread
From: Puneeth Chaganti @ 2011-07-07  8:07 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

On Thu, Jul 7, 2011 at 12:46 PM, Bastien <bzg@altern.org> wrote:
> Dear all,
>
> I'm releasing Org 7.6.

Congratulations to Bastien and everybody else who made this release possible!

--
Puneeth

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
  2011-07-07  8:07 ` Puneeth Chaganti
@ 2011-07-07  8:34 ` Eric S Fraga
  2011-07-07  8:37 ` Puneeth Chaganti
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 25+ messages in thread
From: Eric S Fraga @ 2011-07-07  8:34 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

Bastien <bzg@altern.org> writes:

> Dear all,
>
> I'm releasing Org 7.6.

Brilliant!  Many thanks for getting this all together; it must be akin
to herding cats... ;-)

-- 
: Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 24.0.50.1
: using Org-mode version 7.5 (release_7.5.586.g382e6)

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
  2011-07-07  8:07 ` Puneeth Chaganti
  2011-07-07  8:34 ` Eric S Fraga
@ 2011-07-07  8:37 ` Puneeth Chaganti
  2011-07-07 11:43   ` Bastien
  2011-07-07  8:45 ` Glyn Millington
                   ` (9 subsequent siblings)
  12 siblings, 1 reply; 25+ messages in thread
From: Puneeth Chaganti @ 2011-07-07  8:37 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

Bastien

On Thu, Jul 7, 2011 at 12:46 PM, Bastien <bzg@altern.org> wrote:
> Dear all,
>
> I'm releasing Org 7.6.
>
> You can get it from the website as an archive:
>
>  http://orgmode.org/org-7.6.zip
>  http://orgmode.org/org-7.6.tar.gz

Looks like a new tag with release_7.6 has not been created.  Shouldn't
one be created?

Thanks,
Puneeth

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (2 preceding siblings ...)
  2011-07-07  8:37 ` Puneeth Chaganti
@ 2011-07-07  8:45 ` Glyn Millington
  2011-07-07  8:55 ` Rasmus
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 25+ messages in thread
From: Glyn Millington @ 2011-07-07  8:45 UTC (permalink / raw)
  To: emacs-orgmode

Bastien <bzg@altern.org> writes:

> Dear all,
>
> I'm releasing Org 7.6.

Wonderful!  Thanks to all who make this avaliable to a useless user like
me :-)


atb




Glyn

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (3 preceding siblings ...)
  2011-07-07  8:45 ` Glyn Millington
@ 2011-07-07  8:55 ` Rasmus
  2011-07-07  9:17 ` Giovanni Ridolfi
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 25+ messages in thread
From: Rasmus @ 2011-07-07  8:55 UTC (permalink / raw)
  To: emacs-orgmode

Bastien <bzg@altern.org> writes:

> Dear all,
>
> I'm releasing Org 7.6.

Looking forward to to trying the new beast.

Kudos to Bastien. I foresee that JK's odt exporter will become handy
when working with Org illiterates.

Thanks!

-- 
Sent from my Emacs

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (4 preceding siblings ...)
  2011-07-07  8:55 ` Rasmus
@ 2011-07-07  9:17 ` Giovanni Ridolfi
  2011-07-07 11:45   ` Bastien
  2011-07-07 12:05 ` Joost Kremers
                   ` (6 subsequent siblings)
  12 siblings, 1 reply; 25+ messages in thread
From: Giovanni Ridolfi @ 2011-07-07  9:17 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

Bastien <bzg@altern.org> writes:

Hi, Bastien
>
> I'm releasing Org 7.6.
Thanks. However in commit:

http://orgmode.org/w/?p=org-mode.git;a=commitdiff;h=0fba25a37fadef195ad02eeb035dd61c75919b08

|--- a/doc/org.texi
|+++ b/doc/org.texi
|@@ -4,8 +4,8 @@
| @setfilename ../../info/org
| @settitle The Org Manual
| 
|-@set VERSION 7.5
|-@set DATE March 2011
|+@set VERSION 7.6
|+@set DATE juillet 2011
|     ^^^^^^^^^^^^^^^^^^^

<irony on>
why did you not change in:

|+@set JOUR juillet 2011

;-)

I see, perhaps you did not like the alliteration.
:-D

cheers,
Giovanni

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  8:37 ` Puneeth Chaganti
@ 2011-07-07 11:43   ` Bastien
  0 siblings, 0 replies; 25+ messages in thread
From: Bastien @ 2011-07-07 11:43 UTC (permalink / raw)
  To: Puneeth Chaganti; +Cc: emacs-orgmode

Hi Puneeth,

Puneeth Chaganti <punchagan@gmail.com> writes:

> Looks like a new tag with release_7.6 has not been created.  Shouldn't
> one be created?

Done -- thanks!

-- 
 Bastien

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  9:17 ` Giovanni Ridolfi
@ 2011-07-07 11:45   ` Bastien
  0 siblings, 0 replies; 25+ messages in thread
From: Bastien @ 2011-07-07 11:45 UTC (permalink / raw)
  To: Giovanni Ridolfi; +Cc: emacs-orgmode

Hi Giovanni,

Giovanni Ridolfi <giovanni.ridolfi@yahoo.it> writes:

> <irony on>
> why did you not change in:
>
> |+@set JOUR juillet 2011

Actually, this should be @set DATE July 2011

Fixed now - thanks!

-- 
 Bastien

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (5 preceding siblings ...)
  2011-07-07  9:17 ` Giovanni Ridolfi
@ 2011-07-07 12:05 ` Joost Kremers
  2011-07-07 14:39   ` Bastien
  2011-07-07 12:42 ` Martyn Jago
                   ` (5 subsequent siblings)
  12 siblings, 1 reply; 25+ messages in thread
From: Joost Kremers @ 2011-07-07 12:05 UTC (permalink / raw)
  To: emacs-orgmode

On Thu, Jul 07, 2011 at 09:16:24AM +0200, Bastien wrote:
> I'm releasing Org 7.6.

could it be that the new release hasn't been merged into maint yet? i've created
a "stable" branch tracking origin/maint as per the instructions here:

http://orgmode.org/worg/org-faq.html#using-stable-releases-only

but doing a 'git pull' tells me "already up-to-date" and 'grep org-version'
gives me a line with "7.5" in it.


-- 
Joost Kremers
Life has its moments

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (6 preceding siblings ...)
  2011-07-07 12:05 ` Joost Kremers
@ 2011-07-07 12:42 ` Martyn Jago
  2011-07-07 14:00 ` Memnon Anon
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 25+ messages in thread
From: Martyn Jago @ 2011-07-07 12:42 UTC (permalink / raw)
  To: emacs-orgmode

Hi Bastien
> 
> Dear all,
> 
> I'm releasing Org 7.6.
> 
> You can get it from the website as an archive:
> 
>   http://orgmode.org/org-7.6.zip
>   http://orgmode.org/org-7.6.tar.gz
> 

Thanks for the tremendous effort supplied by yourself and other key 
committers to make this happen!

Regards

Martyn

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (7 preceding siblings ...)
  2011-07-07 12:42 ` Martyn Jago
@ 2011-07-07 14:00 ` Memnon Anon
  2011-07-07 14:39 ` Rainer Stengele
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 25+ messages in thread
From: Memnon Anon @ 2011-07-07 14:00 UTC (permalink / raw)
  To: emacs-orgmode

Bastien <bzg@altern.org> writes:

> I'm releasing Org 7.6.

Excellent!

And it can't be said too often: 
    
    Thanks for your dedication.

Org is just amazing.

Memnon

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (8 preceding siblings ...)
  2011-07-07 14:00 ` Memnon Anon
@ 2011-07-07 14:39 ` Rainer Stengele
  2011-07-07 17:01 ` Achim Gratz
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 25+ messages in thread
From: Rainer Stengele @ 2011-07-07 14:39 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

Am 07.07.2011 09:16, schrieb Bastien:
> Dear all,
> 
> I'm releasing Org 7.6.
> 
> You can get it from the website as an archive:
> 
>   http://orgmode.org/org-7.6.zip
>   http://orgmode.org/org-7.6.tar.gz
> 
> Apologies for the delay between 7.5 and 7.6 -- it has been hectic times.
> I owe a big *thank* to everyone who maintain a high level of activity,
> both in the code and on the mailing list.
> 
> In particular: Carsten, Eric Schulte, Nicolas Goaziou, David Maus,
> Julien Danjou, Jambunathan K, Michael Brand, Achim Gratz, Eric S. Fraga,
> Nick Dokos, Lawrence Mitchell, Memnon Anon, Bernt Hansen, Sébastien
> Vauban, Thomas S. Dye, Manuel Giraud, Karl Voit, Huy, ... and many
> more!  Thanks to all.
>  
> The highlight of this release is the new ODT exporter, which lives in
> the contrib/ directory but will soon make its way to the core: kudos to
> Jambunathan for this addition, and thanks to him for his patience.
> 
> Below is the (incomplete) list of changes:
> 
> 
> Version 7.6 
> ------------
> 
> New features and user-visible improvements 
> ===========================================
> 
> Integration of Jambunathan's OpenDocumentText Exporter 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> * Activation 
>   
>   Org-mode 7.6 supports exporting to OpenDocument Text (=odt=)
>   format using org-odt.el.  Depending on how you installed Org,
>   this module can be enabled in one of the following ways:
>   
>   1. If you have downloaded the Org from the Web, either as a
>      distribution =.zip= or =.tar.gz= file, or as a Git archive,
>      enable the =odt= option in the variable =org-modules=.
>   
>   2. If you are using Org-mode 7.6 that comes bundled with
>      Emacs-24.0.50 (or future Emacs-24.1), then you can install the
>      OpenDocumentText exporter using the package manager.  Check
>      the list of available packages with =M-x list-packages= and
>      install the =org-odt= package.
>   
>   Thanks a lot to Jambunathan K for this great contribution.
>   
> * Keybindings 
>   
>   The following interactive commands are provided:
>   
>   1. =C-c C-e o= (=org-export-as-odt=): Export as an =odt= file.
>   
>   2. =C-c C-e O= (=org-export-as-odt-and-open=): Export as an =odt=
>      file and open the resulting file.
>   
>   See the =contrib/odt/README.org= file for further details; you
>   may check in particular the commands =M-x org-lparse= and =M-x
>   org-export-convert=.
>   
> 
> Ob-Lilypond -- new Babel language to allow score generation 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> ob-lilypond - an org-babel language, provided to allow LilyPond
> music score generation, complete with optional auditioning via
> midi, whilst leveraging the full power of org mode, and literate
> programming.  See [https://github.com/mjago/ob-lilypond] for more
> documentation.
> 
> Thanks to Martyn Jago for this addition.
> 
> Org-Bibtex -- major improvements 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> Provides support for managing bibtex bibliographical references
> data in headline properties.  Each headline corresponds to a
> single reference and the relevant bibliographic meta-data is
> stored in headline properties, leaving the body of the headline
> free to hold notes and comments.  Org-bibtex is aware of all
> standard bibtex reference types and fields.
> 
> The key new functions are
> 
> org-bibtex-check: queries the user to flesh out all required
>      (and with prefix argument optional) bibtex fields available
>      for the specific reference =type= of the current headline.
> 
> org-bibtex-create: Create a new entry at the given level,
>      using org-bibtex-check to flesh out the relevant fields.
> 
> org-bibtex-yank: Yank a bibtex entry on the kill ring as a
>      formatted Org-mode headline into the current buffer
> 
> org-bibtex-export-to-kill-ring: Export the current headline
>      to the kill ring as a formatted bibtex entry.
> 
> Spreadsheet computation of durations and time values 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> If you want to compute time values use the =T= flag, either in
> Calc formulas or Elisp formulas:
> 
>   Task 1   Task 2     Total  
>  --------+--------+---------
>    35:00    35:00   1:10:00  
> 
> Values must be of the form =[HH:]MM:SS=, where hours are
> optional.
> 
> Thanks to Martin Halder, Eric Schulte and Carsten for code and
> feedback on this.
> 
> Links within inlined footnotes. 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> It as also possible to have footnotes side-by-side correctly
> exported. New variables =org-export-latex-footnote-separator=,
> =org-export-html-footnote-separator= and
> =org-export-docbook-footnote-separator= are used to separate them
> in that case.
> 
> Fontification of footnotes is also more accurate.
> 
> New variable =org-export-with-tasks= 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> Non-nil means include TODO items for export.
> 
> This may have the following values:
> 
> - t                    include tasks independent of state.
> - todo                 include only tasks that are not yet done.
> - done                 include only tasks that are already done.
> - nil                  remove all tasks before export
> - list of TODO kwds    keep only tasks with these keywords
> 
> Thanks to Carsten for implementing this!
> 
> New variable =org-export-latex-timestamp-inactive-markup= 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> This variable allows the user to define the LaTeX markup for
> inactive timestamps.  It defaults to the same markup than active
> timestamps.  Thanks to Eric S Fraga for this patch.
> 
> New =org-default= face 
> ~~~~~~~~~~~~~~~~~~~~~~~
> 
> =M-x customize-face RET org-default RET= will let you define the
> default face for =org-mode= buffers.
> 
> Babel improvements 
> ~~~~~~~~~~~~~~~~~~~
> * In line code block call syntax 
>   It is now possible to call code blocks from within blocks of
>   prose.
>   
>   The new syntax is exactly analogous to the existing =#+call:=
>   line syntax, only it may be present embedded in a block of prose
>   for example =call_double(num=8)= would call the =double= code
>   block assigning the =num= variable to the value =8=.
>   
> * Optional variable names in code block calls 
>   Variable names are now optional when passing variables to a code
>   block reference.  Un-named variables will be assigned in order as
>   shown below.
>   
>   #+source: minus
>   #+begin_src emacs-lisp :var a=0 :var b=0
>     (- a b)
>   #+end_src
>   
>   #+call: minus(a=8, b=4)
>   
>   #+call: minus(8,4)
>   
> * Sub-tree ID as valid code block variable reference 
>   It is now possible to assign the textual contents of an Org-mode
>   subtree to a code block variable using the ID of the subtree.
>   Both custom IDs and Org-mode IDs may be used.  For example;
>   
>   
>   
> * =org-babel-tangle-body-hook= for reprocessing code block bodies during tangling 
> * =padline= header argument controls newline padding during tangling 
> * Maxima code blocks are now supported 
>   
>   Thanks to Eric Fraga for contributing this support.
>   
> * =awk= code blocks are now supported 
> * Added =xmpfilter= to Ruby code blocks for annotated code output 
> * New =noweb-ref= header argument 
>   
>   This header argument may be used to concatenate the bodies of
>   many code blocks into a single noweb reference.  This brings
>   Org-mode's tangling functionality in line with traditional noweb
>   tangling.
>   
>   A no web reference like the following
>   
>   
>   
>   will now expand to include the bodies of all code blocks which
>   are named =the-ref=, as well as all code blocks which have a
>   =:noweb-ref= header argument set to the value =the-ref=.
>   
> 
> New tests 
> ~~~~~~~~~~
> 
> The =tests/= directory has been extensively updated.
> 
> Important bugfixes 
> ===================
> 
> Org-exp-blocks --- proper handling of recursively nested blocks 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> During export pre-processing org-exp-blocks will now ensure that
> all matched blocks contain a proper balanced number of
> recursively nested blocks.
> 
> Before this fix nested blocks such as the following would break
> during export.
> 
> 
> 
> List handling 
> ~~~~~~~~~~~~~~
> 
> Fix an infinite loop when a list has an end of block string
> without the corresponding beginning.
> 
> Auto-filling cannot happen at a location where it would otherwise
> insert a new item.
> 
> Details 
> ========
> 
> Footnotes have gone through some bug-fixing: 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> - properly ignore footnotes in comments,
> - export calls to previously defined footnotes in LaTeX using
>   \footnotemark,
> - export footnotes before first heading (LaTeX),
> - export footnotes when selecting a subtree not holding their
>   definition (LaTeX).
> 
> Many small bug fixes have been applied to list handling 
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> - fix `org-timer-item',
> - fix insertion of a new item with a non-nil `indent-tabs-mode',
> - fix use of `fill-region' in an item,
> - correct export lists within footnotes and footnotes within lists,
> - correctly export lists containing macros,
> - don't ignore with-case specification when sorting a list,
> - better indentation handling when changing an item to an headline
>   or the other way,
> - fix check-boxes' cookies updating.
> 

Congratulation and thank you!
Orgmode is slowly approaching world domination!
Emacs will finally win all editor wars - because of Org!

A happy, megalomaniac Org user.

Rainer

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07 12:05 ` Joost Kremers
@ 2011-07-07 14:39   ` Bastien
  2011-07-07 15:44     ` Marcelo de Moraes Serpa
  2011-07-10 14:32     ` Joost Kremers
  0 siblings, 2 replies; 25+ messages in thread
From: Bastien @ 2011-07-07 14:39 UTC (permalink / raw)
  To: emacs-orgmode

Hi Joost,

Joost Kremers <joostkremers@fastmail.fm> writes:

> On Thu, Jul 07, 2011 at 09:16:24AM +0200, Bastien wrote:
>> I'm releasing Org 7.6.
>
> could it be that the new release hasn't been merged into maint yet? 

You're right -- it's done now, let me know if that's okay for you.

Thanks,

-- 
 Bastien

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07 14:39   ` Bastien
@ 2011-07-07 15:44     ` Marcelo de Moraes Serpa
  2011-07-10 14:32     ` Joost Kremers
  1 sibling, 0 replies; 25+ messages in thread
From: Marcelo de Moraes Serpa @ 2011-07-07 15:44 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 500 bytes --]

Bastien and team,

Congrats! I will update it right away :)

Keep up the awesome work.

Marcelo.

On Thu, Jul 7, 2011 at 9:39 AM, Bastien <bzg@altern.org> wrote:

> Hi Joost,
>
> Joost Kremers <joostkremers@fastmail.fm> writes:
>
> > On Thu, Jul 07, 2011 at 09:16:24AM +0200, Bastien wrote:
> >> I'm releasing Org 7.6.
> >
> > could it be that the new release hasn't been merged into maint yet?
>
> You're right -- it's done now, let me know if that's okay for you.
>
> Thanks,
>
> --
>  Bastien
>
>

[-- Attachment #2: Type: text/html, Size: 990 bytes --]

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (9 preceding siblings ...)
  2011-07-07 14:39 ` Rainer Stengele
@ 2011-07-07 17:01 ` Achim Gratz
  2011-07-08  4:25   ` 立野 豊
  2011-07-08 16:26   ` Jonathan Arkell
  2011-07-14  6:37 ` Christian Moe
  2011-07-14  8:05 ` Aankhen
  12 siblings, 2 replies; 25+ messages in thread
From: Achim Gratz @ 2011-07-07 17:01 UTC (permalink / raw)
  To: emacs-orgmode

Bastien <bzg@altern.org> writes:
> I'm releasing Org 7.6.

Thank you and everyone else for all the work that has been put into this
release.

Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptations for Waldorf Q V3.00R3 and Q+ V3.54R2:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07 17:01 ` Achim Gratz
@ 2011-07-08  4:25   ` 立野 豊
  2011-07-09 13:48     ` Bastien
                       ` (2 more replies)
  2011-07-08 16:26   ` Jonathan Arkell
  1 sibling, 3 replies; 25+ messages in thread
From: 立野 豊 @ 2011-07-08  4:25 UTC (permalink / raw)
  To: Achim Gratz; +Cc: emacs-orgmode


Org-mode version 7.6 installed

M-x Org-version 

Org-mode version 6.33x

version 7.6
ok?

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07 17:01 ` Achim Gratz
  2011-07-08  4:25   ` 立野 豊
@ 2011-07-08 16:26   ` Jonathan Arkell
  1 sibling, 0 replies; 25+ messages in thread
From: Jonathan Arkell @ 2011-07-08 16:26 UTC (permalink / raw)
  To: emacs-orgmode@gnu.org

After every release there are messages like this.

And Memmon is right.  It cannot be said too often.  Thank you everyone for
your hard work.

On 7/07/11 11:01 AM, "Achim Gratz" <Stromeko@nexgo.de> wrote:

>Bastien <bzg@altern.org> writes:
>> I'm releasing Org 7.6.
>
>Thank you and everyone else for all the work that has been put into this
>release.
>
>Regards,
>Achim.
>--
>+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+
>
>SD adaptations for Waldorf Q V3.00R3 and Q+ V3.54R2:
>http://Synth.Stromeko.net/Downloads.html#WaldorfSDada
>
>


The information contained in this message is confidential. It is intended to be read only by the individual or entity named above or their designee. If the reader of this message is not the intended recipient, you are hereby notified that any distribution of this message, in any form, is strictly prohibited. If you have received this message in error, please immediately notify the sender and delete or destroy any copy of this message.

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-08  4:25   ` 立野 豊
@ 2011-07-09 13:48     ` Bastien
  2011-07-10  2:07       ` 立野 豊
  2011-07-09 13:59     ` Michael Markert
  2011-07-09 17:56     ` Jambunathan K
  2 siblings, 1 reply; 25+ messages in thread
From: Bastien @ 2011-07-09 13:48 UTC (permalink / raw)
  To: 立野 豊; +Cc: Achim Gratz, emacs-orgmode

Hi,

立野 豊 <yutaka.tateno@gmail.com> writes:

> Org-mode version 7.6 installed

How?

> M-x Org-version 

This is M-x org-version RET (not "Org-version)

> Org-mode version 6.33x

You probably need to run make && make install

But we need more detailed information on what you did, what is your
system, etc.

-- 
 Bastien

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-08  4:25   ` 立野 豊
  2011-07-09 13:48     ` Bastien
@ 2011-07-09 13:59     ` Michael Markert
  2011-07-09 17:56     ` Jambunathan K
  2 siblings, 0 replies; 25+ messages in thread
From: Michael Markert @ 2011-07-09 13:59 UTC (permalink / raw)
  To: 立野 豊; +Cc: Achim Gratz, emacs-orgmode


On 8 Jul 2011, 立野 豊 wrote:
>
> Org-mode version 7.6 installed
>
> M-x Org-version 
>
> Org-mode version 6.33x
>
> version 7.6
> ok?
Do I understand you correctly, that you see a 6.33 version information
instead of a 7.6?

If so, have you followed the instructions[1] completely?

To me it looks like you forgot a step and fall back to the
emacs23-bundled version of org-mode.

Michael

Footnotes:

[1] http://orgmode.org/manual/Installation.html#Installation

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-08  4:25   ` 立野 豊
  2011-07-09 13:48     ` Bastien
  2011-07-09 13:59     ` Michael Markert
@ 2011-07-09 17:56     ` Jambunathan K
  2 siblings, 0 replies; 25+ messages in thread
From: Jambunathan K @ 2011-07-09 17:56 UTC (permalink / raw)
  To: 立野 豊; +Cc: emacs-orgmode

立野 豊 <yutaka.tateno@gmail.com> writes:

> Org-mode version 7.6 installed
>
> M-x Org-version 
>
> Org-mode version 6.33x
>
> version 7.6
> ok?
>

What does M-x locate-library RET org RET report?

>
>

-- 

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-09 13:48     ` Bastien
@ 2011-07-10  2:07       ` 立野 豊
  0 siblings, 0 replies; 25+ messages in thread
From: 立野 豊 @ 2011-07-10  2:07 UTC (permalink / raw)
  To: Bastien; +Cc: Achim Gratz, emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 764 bytes --]

Sorry!!

I did an easy mistake.

I did not do "make".

Org-mode version 7.6 installed.



On Sat, Jul 9, 2011 at 10:48 PM, Bastien <bzg@altern.org> wrote:

> Hi,
>
> > Org-mode version 7.6 installed
>
> How?
>
> > M-x Org-version
>
> This is M-x org-version RET (not "Org-version)
>
> > Org-mode version 6.33x
>
> You probably need to run make && make install
>
> But we need more detailed information on what you did, what is your
> system, etc.
>
> --
>  Bastien
>



-- 
辰巳出版株式会社
    第一編集本部      立野  豊

住所 東京都新宿区新宿2-15-14 辰巳ビル
TEL 03-5360-8976(直通)
FAX 03-5360-8047
Mail   y.tateno@tatsumi-publishing.co.jp
          yutaka.tateno@gmail.com
Web http://www.tg-net.co.jp/main.html

[-- Attachment #2: Type: text/html, Size: 1585 bytes --]

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07 14:39   ` Bastien
  2011-07-07 15:44     ` Marcelo de Moraes Serpa
@ 2011-07-10 14:32     ` Joost Kremers
  1 sibling, 0 replies; 25+ messages in thread
From: Joost Kremers @ 2011-07-10 14:32 UTC (permalink / raw)
  To: emacs-orgmode

Hi Bastien,

> Joost Kremers <joostkremers@fastmail.fm> writes:
> > On Thu, Jul 07, 2011 at 09:16:24AM +0200, Bastien wrote:
> >> I'm releasing Org 7.6.
> >
> > could it be that the new release hasn't been merged into maint yet? 
> 
> You're right -- it's done now, let me know if that's okay for you.

Yes, I've just upgraded. Thanks!

-- 
Joost Kremers
Life has its moments

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (10 preceding siblings ...)
  2011-07-07 17:01 ` Achim Gratz
@ 2011-07-14  6:37 ` Christian Moe
  2011-07-14  8:05 ` Aankhen
  12 siblings, 0 replies; 25+ messages in thread
From: Christian Moe @ 2011-07-14  6:37 UTC (permalink / raw)
  To: Bastien; +Cc: Org Mode

Hi all,

Better late than never:

 From the joy of Lilypond snippets (thanks, Martyn) in ODT exports 
(thanks, Jambu), to time arithmetic in tables (thanks, Eric)...

7.6 rocks (thanks Bastien).

Yours,
Christian

On 7/7/11 9:16 AM, Bastien wrote:
> Dear all,
>
> I'm releasing Org 7.6.
>
> You can get it from the website as an archive:
>
>    http://orgmode.org/org-7.6.zip
>    http://orgmode.org/org-7.6.tar.gz
>
> Apologies for the delay between 7.5 and 7.6 -- it has been hectic times.
> I owe a big *thank* to everyone who maintain a high level of activity,
> both in the code and on the mailing list.
>
> In particular: Carsten, Eric Schulte, Nicolas Goaziou, David Maus,
> Julien Danjou, Jambunathan K, Michael Brand, Achim Gratz, Eric S. Fraga,
> Nick Dokos, Lawrence Mitchell, Memnon Anon, Bernt Hansen, Sébastien
> Vauban, Thomas S. Dye, Manuel Giraud, Karl Voit, Huy, ... and many
> more!  Thanks to all.
>
> The highlight of this release is the new ODT exporter, which lives in
> the contrib/ directory but will soon make its way to the core: kudos to
> Jambunathan for this addition, and thanks to him for his patience.
>
> Below is the (incomplete) list of changes:
>
>
> Version 7.6
> ------------
>
> New features and user-visible improvements
> ===========================================
>
> Integration of Jambunathan's OpenDocumentText Exporter
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> * Activation
>
>    Org-mode 7.6 supports exporting to OpenDocument Text (=odt=)
>    format using org-odt.el.  Depending on how you installed Org,
>    this module can be enabled in one of the following ways:
>
>    1. If you have downloaded the Org from the Web, either as a
>       distribution =.zip= or =.tar.gz= file, or as a Git archive,
>       enable the =odt= option in the variable =org-modules=.
>
>    2. If you are using Org-mode 7.6 that comes bundled with
>       Emacs-24.0.50 (or future Emacs-24.1), then you can install the
>       OpenDocumentText exporter using the package manager.  Check
>       the list of available packages with =M-x list-packages= and
>       install the =org-odt= package.
>
>    Thanks a lot to Jambunathan K for this great contribution.
>
> * Keybindings
>
>    The following interactive commands are provided:
>
>    1. =C-c C-e o= (=org-export-as-odt=): Export as an =odt= file.
>
>    2. =C-c C-e O= (=org-export-as-odt-and-open=): Export as an =odt=
>       file and open the resulting file.
>
>    See the =contrib/odt/README.org= file for further details; you
>    may check in particular the commands =M-x org-lparse= and =M-x
>    org-export-convert=.
>
>
> Ob-Lilypond -- new Babel language to allow score generation
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> ob-lilypond - an org-babel language, provided to allow LilyPond
> music score generation, complete with optional auditioning via
> midi, whilst leveraging the full power of org mode, and literate
> programming.  See [https://github.com/mjago/ob-lilypond] for more
> documentation.
>
> Thanks to Martyn Jago for this addition.
>
> Org-Bibtex -- major improvements
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Provides support for managing bibtex bibliographical references
> data in headline properties.  Each headline corresponds to a
> single reference and the relevant bibliographic meta-data is
> stored in headline properties, leaving the body of the headline
> free to hold notes and comments.  Org-bibtex is aware of all
> standard bibtex reference types and fields.
>
> The key new functions are
>
> org-bibtex-check: queries the user to flesh out all required
>       (and with prefix argument optional) bibtex fields available
>       for the specific reference =type= of the current headline.
>
> org-bibtex-create: Create a new entry at the given level,
>       using org-bibtex-check to flesh out the relevant fields.
>
> org-bibtex-yank: Yank a bibtex entry on the kill ring as a
>       formatted Org-mode headline into the current buffer
>
> org-bibtex-export-to-kill-ring: Export the current headline
>       to the kill ring as a formatted bibtex entry.
>
> Spreadsheet computation of durations and time values
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> If you want to compute time values use the =T= flag, either in
> Calc formulas or Elisp formulas:
>
>    Task 1   Task 2     Total
>   --------+--------+---------
>     35:00    35:00   1:10:00
>
> Values must be of the form =[HH:]MM:SS=, where hours are
> optional.
>
> Thanks to Martin Halder, Eric Schulte and Carsten for code and
> feedback on this.
>
> Links within inlined footnotes.
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> It as also possible to have footnotes side-by-side correctly
> exported. New variables =org-export-latex-footnote-separator=,
> =org-export-html-footnote-separator= and
> =org-export-docbook-footnote-separator= are used to separate them
> in that case.
>
> Fontification of footnotes is also more accurate.
>
> New variable =org-export-with-tasks=
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Non-nil means include TODO items for export.
>
> This may have the following values:
>
> - t                    include tasks independent of state.
> - todo                 include only tasks that are not yet done.
> - done                 include only tasks that are already done.
> - nil                  remove all tasks before export
> - list of TODO kwds    keep only tasks with these keywords
>
> Thanks to Carsten for implementing this!
>
> New variable =org-export-latex-timestamp-inactive-markup=
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> This variable allows the user to define the LaTeX markup for
> inactive timestamps.  It defaults to the same markup than active
> timestamps.  Thanks to Eric S Fraga for this patch.
>
> New =org-default= face
> ~~~~~~~~~~~~~~~~~~~~~~~
>
> =M-x customize-face RET org-default RET= will let you define the
> default face for =org-mode= buffers.
>
> Babel improvements
> ~~~~~~~~~~~~~~~~~~~
> * In line code block call syntax
>    It is now possible to call code blocks from within blocks of
>    prose.
>
>    The new syntax is exactly analogous to the existing =#+call:=
>    line syntax, only it may be present embedded in a block of prose
>    for example =call_double(num=8)= would call the =double= code
>    block assigning the =num= variable to the value =8=.
>
> * Optional variable names in code block calls
>    Variable names are now optional when passing variables to a code
>    block reference.  Un-named variables will be assigned in order as
>    shown below.
>
>    #+source: minus
>    #+begin_src emacs-lisp :var a=0 :var b=0
>      (- a b)
>    #+end_src
>
>    #+call: minus(a=8, b=4)
>
>    #+call: minus(8,4)
>
> * Sub-tree ID as valid code block variable reference
>    It is now possible to assign the textual contents of an Org-mode
>    subtree to a code block variable using the ID of the subtree.
>    Both custom IDs and Org-mode IDs may be used.  For example;
>
>
>
> * =org-babel-tangle-body-hook= for reprocessing code block bodies during tangling
> * =padline= header argument controls newline padding during tangling
> * Maxima code blocks are now supported
>
>    Thanks to Eric Fraga for contributing this support.
>
> * =awk= code blocks are now supported
> * Added =xmpfilter= to Ruby code blocks for annotated code output
> * New =noweb-ref= header argument
>
>    This header argument may be used to concatenate the bodies of
>    many code blocks into a single noweb reference.  This brings
>    Org-mode's tangling functionality in line with traditional noweb
>    tangling.
>
>    A no web reference like the following
>
>
>
>    will now expand to include the bodies of all code blocks which
>    are named =the-ref=, as well as all code blocks which have a
>    =:noweb-ref= header argument set to the value =the-ref=.
>
>
> New tests
> ~~~~~~~~~~
>
> The =tests/= directory has been extensively updated.
>
> Important bugfixes
> ===================
>
> Org-exp-blocks --- proper handling of recursively nested blocks
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> During export pre-processing org-exp-blocks will now ensure that
> all matched blocks contain a proper balanced number of
> recursively nested blocks.
>
> Before this fix nested blocks such as the following would break
> during export.
>
>
>
> List handling
> ~~~~~~~~~~~~~~
>
> Fix an infinite loop when a list has an end of block string
> without the corresponding beginning.
>
> Auto-filling cannot happen at a location where it would otherwise
> insert a new item.
>
> Details
> ========
>
> Footnotes have gone through some bug-fixing:
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> - properly ignore footnotes in comments,
> - export calls to previously defined footnotes in LaTeX using
>    \footnotemark,
> - export footnotes before first heading (LaTeX),
> - export footnotes when selecting a subtree not holding their
>    definition (LaTeX).
>
> Many small bug fixes have been applied to list handling
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> - fix `org-timer-item',
> - fix insertion of a new item with a non-nil `indent-tabs-mode',
> - fix use of `fill-region' in an item,
> - correct export lists within footnotes and footnotes within lists,
> - correctly export lists containing macros,
> - don't ignore with-case specification when sorting a list,
> - better indentation handling when changing an item to an headline
>    or the other way,
> - fix check-boxes' cookies updating.
>

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Release 7.6
  2011-07-07  7:16 Release 7.6 Bastien
                   ` (11 preceding siblings ...)
  2011-07-14  6:37 ` Christian Moe
@ 2011-07-14  8:05 ` Aankhen
  12 siblings, 0 replies; 25+ messages in thread
From: Aankhen @ 2011-07-14  8:05 UTC (permalink / raw)
  To: Bastien, Org mailing list

Thanks for another great release!

Aankhen

^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2011-07-14  8:05 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-07  7:16 Release 7.6 Bastien
2011-07-07  8:07 ` Puneeth Chaganti
2011-07-07  8:34 ` Eric S Fraga
2011-07-07  8:37 ` Puneeth Chaganti
2011-07-07 11:43   ` Bastien
2011-07-07  8:45 ` Glyn Millington
2011-07-07  8:55 ` Rasmus
2011-07-07  9:17 ` Giovanni Ridolfi
2011-07-07 11:45   ` Bastien
2011-07-07 12:05 ` Joost Kremers
2011-07-07 14:39   ` Bastien
2011-07-07 15:44     ` Marcelo de Moraes Serpa
2011-07-10 14:32     ` Joost Kremers
2011-07-07 12:42 ` Martyn Jago
2011-07-07 14:00 ` Memnon Anon
2011-07-07 14:39 ` Rainer Stengele
2011-07-07 17:01 ` Achim Gratz
2011-07-08  4:25   ` 立野 豊
2011-07-09 13:48     ` Bastien
2011-07-10  2:07       ` 立野 豊
2011-07-09 13:59     ` Michael Markert
2011-07-09 17:56     ` Jambunathan K
2011-07-08 16:26   ` Jonathan Arkell
2011-07-14  6:37 ` Christian Moe
2011-07-14  8:05 ` Aankhen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).