Docs: Tidy changelog for 0.4.0-pre
This commit is contained in:
parent
cb84615d89
commit
70a1acde93
2 changed files with 41 additions and 37 deletions
20
README.org
20
README.org
|
|
@ -377,19 +377,21 @@ Expands into a call to ~org-ql-select~ with the same arguments. For convenience
|
||||||
** 0.4-pre
|
** 0.4-pre
|
||||||
|
|
||||||
*Added*
|
*Added*
|
||||||
+ Negation of terms in plain queries using ~!~. For example, ~tags:space !moon~ to exclude entries which contain ~moon~.
|
+ *Commands*
|
||||||
+ Predicates =outline-path= (alias =olp=) and =outline-path-segment= (alias =olps=).
|
- ~helm-org-ql-views~, which shows one of ~org-ql-views~ selected with Helm.
|
||||||
|
- ~org-ql-search~ can search files in ~org-directory~; customization options are available in the ~org-ql-search~ group.
|
||||||
|
- ~org-ql-view-refresh~ can be called with a prefix argument to adjust search parameters.
|
||||||
|
+ *Queries*
|
||||||
|
- Negation of terms in plain queries using ~!~. For example, ~tags:space !moon~ to exclude entries which contain ~moon~.
|
||||||
|
- Predicates =outline-path= (alias =olp=) and =outline-path-segment= (alias =olps=).
|
||||||
|
- Predicate ~src~, which matches Org Babel source blocks.
|
||||||
|
- Alias =h= for =heading= predicate.
|
||||||
+ Info manual.
|
+ Info manual.
|
||||||
+ Command ~org-ql-search~ can search files in ~org-directory~; customization options are available in the ~org-ql-search~ group.
|
|
||||||
+ Command ~org-ql-view-refresh~ can be called with a prefix argument to adjust search parameters.
|
|
||||||
+ Function ~helm-org-ql-source~, which returns a Helm source that searches given buffers/files with ~helm-org-ql~. It can be used for custom Helm commands that search certain files.
|
+ Function ~helm-org-ql-source~, which returns a Helm source that searches given buffers/files with ~helm-org-ql~. It can be used for custom Helm commands that search certain files.
|
||||||
+ Command ~helm-org-ql-views~, which shows one of ~org-ql-views~ selected with Helm.
|
|
||||||
+ Predicate ~src~, which matches Org Babel source blocks.
|
|
||||||
+ Alias =h= for =heading= predicate.
|
|
||||||
+ Search/view buffers now always end with a newline, which prevents side-scrolling of the window when calling =end-of-buffer=.
|
|
||||||
|
|
||||||
*Fixed*
|
*Fixed*
|
||||||
+ Call =helm-make-source= directly instead of using =helm-build-sync-source= macro. (Fixes [[https://github.com/alphapapa/org-ql/issues/60][#60]]. Thanks to Matt Huszagh ([[https://github.com/matthuszagh][@matthuszagh]]) for reporting.)
|
+ Call =helm-make-source= directly instead of using =helm-build-sync-source= macro. (Fixes [[https://github.com/alphapapa/org-ql/issues/60][#60]]. Thanks to [[https://github.com/matthuszagh][Matt Huszagh]] for reporting.)
|
||||||
|
+ Search/view buffers now always end with a newline, which prevents side-scrolling of the window when calling =end-of-buffer=.
|
||||||
|
|
||||||
*Internal*
|
*Internal*
|
||||||
+ Added generic node data cache to speed up recursive, tree-based queries.
|
+ Added generic node data cache to speed up recursive, tree-based queries.
|
||||||
|
|
|
||||||
54
org-ql.info
54
org-ql.info
|
|
@ -699,31 +699,33 @@ File: README.info, Node: 04-pre, Next: 032, Up: Changelog
|
||||||
===========
|
===========
|
||||||
|
|
||||||
*Added*
|
*Added*
|
||||||
|
• *Commands*
|
||||||
|
• ‘helm-org-ql-views’, which shows one of ‘org-ql-views’
|
||||||
|
selected with Helm.
|
||||||
|
• ‘org-ql-search’ can search files in ‘org-directory’;
|
||||||
|
customization options are available in the ‘org-ql-search’
|
||||||
|
group.
|
||||||
|
• ‘org-ql-view-refresh’ can be called with a prefix argument to
|
||||||
|
adjust search parameters.
|
||||||
|
• *Queries*
|
||||||
• Negation of terms in plain queries using ‘!’. For example,
|
• Negation of terms in plain queries using ‘!’. For example,
|
||||||
‘tags:space !moon’ to exclude entries which contain ‘moon’.
|
‘tags:space !moon’ to exclude entries which contain ‘moon’.
|
||||||
• Predicates outline-path (alias olp) and outline-path-segment (alias
|
• Predicates outline-path (alias olp) and outline-path-segment
|
||||||
olps).
|
(alias olps).
|
||||||
|
• Predicate ‘src’, which matches Org Babel source blocks.
|
||||||
|
• Alias h for heading predicate.
|
||||||
• Info manual.
|
• Info manual.
|
||||||
• Command ‘org-ql-search’ can search files in ‘org-directory’;
|
|
||||||
customization options are available in the ‘org-ql-search’ group.
|
|
||||||
• Command ‘org-ql-view-refresh’ can be called with a prefix argument
|
|
||||||
to adjust search parameters.
|
|
||||||
• Function ‘helm-org-ql-source’, which returns a Helm source that
|
• Function ‘helm-org-ql-source’, which returns a Helm source that
|
||||||
searches given buffers/files with ‘helm-org-ql’. It can be used
|
searches given buffers/files with ‘helm-org-ql’. It can be used
|
||||||
for custom Helm commands that search certain files.
|
for custom Helm commands that search certain files.
|
||||||
• Command ‘helm-org-ql-views’, which shows one of ‘org-ql-views’
|
|
||||||
selected with Helm.
|
|
||||||
• Predicate ‘src’, which matches Org Babel source blocks.
|
|
||||||
• Alias h for heading predicate.
|
|
||||||
• Search/view buffers now always end with a newline, which prevents
|
|
||||||
side-scrolling of the window when calling end-of-buffer.
|
|
||||||
|
|
||||||
*Fixed*
|
*Fixed*
|
||||||
• Call helm-make-source directly instead of using
|
• Call helm-make-source directly instead of using
|
||||||
helm-build-sync-source macro. (Fixes #60
|
helm-build-sync-source macro. (Fixes #60
|
||||||
(https://github.com/alphapapa/org-ql/issues/60). Thanks to Matt
|
(https://github.com/alphapapa/org-ql/issues/60). Thanks to Matt
|
||||||
Huszagh (@matthuszagh (https://github.com/matthuszagh)) for
|
Huszagh (https://github.com/matthuszagh) for reporting.)
|
||||||
reporting.)
|
• Search/view buffers now always end with a newline, which prevents
|
||||||
|
side-scrolling of the window when calling end-of-buffer.
|
||||||
|
|
||||||
*Internal*
|
*Internal*
|
||||||
• Added generic node data cache to speed up recursive, tree-based
|
• Added generic node data cache to speed up recursive, tree-based
|
||||||
|
|
@ -1016,18 +1018,18 @@ Node: Agenda-like views18252
|
||||||
Node: Listing / acting-on results19657
|
Node: Listing / acting-on results19657
|
||||||
Node: Changelog24259
|
Node: Changelog24259
|
||||||
Node: 04-pre24796
|
Node: 04-pre24796
|
||||||
Node: 03226323
|
Node: 03226384
|
||||||
Node: 03126704
|
Node: 03126765
|
||||||
Node: 0326899
|
Node: 0326960
|
||||||
Node: 02329872
|
Node: 02329933
|
||||||
Node: 02230098
|
Node: 02230159
|
||||||
Node: 02130364
|
Node: 02130425
|
||||||
Node: 0230561
|
Node: 0230622
|
||||||
Node: 0134594
|
Node: 0134655
|
||||||
Node: Notes34693
|
Node: Notes34754
|
||||||
Node: Comparison with Org Agenda searches34855
|
Node: Comparison with Org Agenda searches34916
|
||||||
Node: org-sidebar35726
|
Node: org-sidebar35787
|
||||||
Node: License36005
|
Node: License36066
|
||||||
|
|
||||||
End Tag Table
|
End Tag Table
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue