From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Porter Subject: [ANN] org-ql 0.3 released Date: Sun, 06 Oct 2019 00:59:00 -0500 Message-ID: <87tv8m4dp7.fsf@alphapapa.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:58422) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iGzZb-00035m-1n for emacs-orgmode@gnu.org; Sun, 06 Oct 2019 01:59:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iGzZZ-0001ag-Vf for emacs-orgmode@gnu.org; Sun, 06 Oct 2019 01:59:14 -0400 Received: from 195-159-176-226.customer.powertech.no ([195.159.176.226]:54194 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iGzZZ-0001aN-PV for emacs-orgmode@gnu.org; Sun, 06 Oct 2019 01:59:13 -0400 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1iGzZV-00163U-Ti for emacs-orgmode@gnu.org; Sun, 06 Oct 2019 07:59:09 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Hi friends, Version 0.3 of org-ql has been released. There are many changes, including a new helm-org-ql command and an alternative, non-sexp query syntax. - Changelog: https://github.com/alphapapa/org-ql#03 - helm-org-ql demo: https://github.com/alphapapa/org-ql/raw/master/images/helm-org-ql.gif Here are some examples of the new syntax (somewhere along the line, these lines will probably get mangled): | Sexp syntax | Non-sexp syntax | |-------------------------------------------------+-----------------------------------------| | (todo) | todo: | | (todo "SOMEDAY") | todo:SOMEDAY | | (todo "SOMEDAY" "WAITING") | todo:SOMEDAY,WAITING | | (ts :on today) | ts:on=today | | (ts-active :from "2017-01-01" :to "2018-01-01") | ts-active:from=2017-01-01,to=2018-01-01 | | (clocked :on -1) | clocked:on=-1 | | (heading "quoted phrase" "word") | heading:"quoted phrase",word | | (and (tags "book" "books") (priority "A")) | tags:book,books priority:A | | (priority >= B) | priority:A,B | Please let me know if you have any problems or suggestions. Thanks.