[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Orgmode] MobileOrg 1.0 for iPhone/iPod Touch now available
From: |
Juan Reyero |
Subject: |
Re: [Orgmode] MobileOrg 1.0 for iPhone/iPod Touch now available |
Date: |
Fri, 6 Nov 2009 12:36:35 +0100 |
Hi everyone,
This is sweet. Got orgmobile working with my mac, with local apache
and local wifi network, and it's just amazing how well it works.
One glitch, though, is that it does not export tags-todo custom agenda
views. I've made the small change to make it work:
index 5e3ccdc..4019105 100644
--- a/lisp/org-mobile.el
+++ b/lisp/org-mobile.el
@@ -428,7 +428,7 @@ The table of checksums is written to the file mobile-checksu
((memq (nth 2 e) '(todo-tree tags-tree occur-tree))
;; These are trees, not really agenda commands
)
- ((memq (nth 2 e) '(agenda todo tags))
+ ((memq (nth 2 e) '(agenda todo tags tags-todo))
;; a normal command
(setq key (car e) desc (nth 1 e) type (nth 2 e) match (nth 3 e)
settings (nth 4 e))
It still does not export most of my ridiculously complex custom
agendas, but it's good enough.
Thanks again for a great piece of software,
Juan
http://juanreyero.com
On Tue, Nov 3, 2009 at 11:19 PM, Richard Moreland <address@hidden> wrote:
> Hi all,
>
> MobileOrg 1.0 is now available in the iTunes AppStore: http://bit.ly/1kpHqg
> Documentation (including a screencast demonstrating the app) is available
> on the website at http://mobileorg.ncogni.to.
>
> Many thanks to Carsten and all the beta testers who helped get it ready for
> release. Feel free to contact me with any questions or support requests.
> If there is a question related to Org-mode integration, CC: Carsten too,
> he's the expert on that side of things.
>
> Be sure to use Org-mode 6.32 or later.
>
> Hope you all enjoy.
>
> Thanks,
> Richard
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> address@hidden
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
--
http://juanreyero.com/blog
http://unarueda.com
- Re: [Orgmode] MobileOrg 1.0 for iPhone/iPod Touch now available, (continued)