From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Org-mode 4.60 Date: Wed, 20 Dec 2006 18:40:43 +0100 Message-ID: <87hcvqlb38.fsf@tallis.ilo.ucl.ac.uk> References: <52998e1393cd682bb775ad00b203d29f@science.uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Gx5R0-0005xd-OJ for emacs-orgmode@gnu.org; Wed, 20 Dec 2006 12:40:54 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Gx5Qv-0005tu-US for emacs-orgmode@gnu.org; Wed, 20 Dec 2006 12:40:54 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Gx5Qv-0005to-Ql for emacs-orgmode@gnu.org; Wed, 20 Dec 2006 12:40:49 -0500 Received: from [129.199.96.40] (helo=nef2.ens.fr) by monty-python.gnu.org with esmtp (Exim 4.52) id 1Gx5Qv-0008JR-6M for emacs-orgmode@gnu.org; Wed, 20 Dec 2006 12:40:49 -0500 In-Reply-To: <52998e1393cd682bb775ad00b203d29f@science.uva.nl> (Carsten Dominik's message of "Wed\, 20 Dec 2006 08\:35\:39 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Carsten, Thanks for this release! Carsten Dominik writes: > - HTML export: inlining images, and clickable images. Now I can see no excuse for not using org-mode to easily write tutorials with emacs! Cool. > - Tracking TODO state changes with time stamps and notes. This was > proposed by Dmitri Minaev. Works like a charm for me. Even cycling through states from the agenda buffer (listing TODO keywords) works fine. > - Links in iCalendar export cleaned up. Suits my needs perfectly. Thanks ! PS: here is a very small patch replacing tags-tree by tags-todo on line 12115. Related to the patch i posted some days ago. --- /home/guerry/elisp/testing/org2/org.el 2006-12-20 18:36:49.000000000 +0100 +++ /home/guerry/elisp/testing/org/org.el 2006-12-20 08:34:16.000000000 +0100 @@ -12112,7 +12112,7 @@ ((stringp type) type) ((eq type 'tags) "Tags query") ((eq type 'todo) "TODO keyword") - ((eq type 'tags-todo) "Tags (TODO)") + ((eq type 'tags-tree) "Tags (TODO)") ((eq type 'tags-tree) "Tags tree") ((eq type 'todo-tree) "TODO kwd tree") ((eq type 'occur-tree) "Occur tree") -- Bastien