Release: 0.4.9
This commit is contained in:
commit
ed0c3f6506
4 changed files with 102 additions and 69 deletions
|
|
@ -398,6 +398,11 @@ Expands into a call to ~org-ql-select~ with the same arguments. For convenience
|
|||
|
||||
/Note:/ Breaking changes may be made before version 1.0, but in the event of major changes, attempts at backward compatibility will be made with obsolescence declarations, translation of arguments, etc. Users who need stability guarantees before 1.0 may choose to use tagged stable releases.
|
||||
|
||||
** 0.4.9
|
||||
|
||||
*Fixed*
|
||||
+ Agenda restriction in =org-ql-block=. (Fixes [[https://github.com/alphapapa/org-ql/issues/84][#84]]. Thanks to [[https://github.com/yantar92][Ihor Radchenko]].)
|
||||
|
||||
** 0.4.8
|
||||
|
||||
*Fixed*
|
||||
|
|
|
|||
|
|
@ -233,15 +233,14 @@ If `org-ql-block-header' is non-nil, it is used as the header
|
|||
string for the block, otherwise a the header is formed
|
||||
automatically from the query."
|
||||
(let (narrow-p old-beg old-end)
|
||||
(when-let* ((from (pcase org-agenda-overriding-restriction
|
||||
(when-let* ((from (pcase org-agenda-restrict
|
||||
('nil (org-agenda-files nil 'ifmode))
|
||||
('file (get 'org-agenda-files 'org-restrict))
|
||||
('subtree (prog1 org-agenda-restrict
|
||||
(with-current-buffer org-agenda-restrict
|
||||
;; Narrow the buffer; remember to widen it later.
|
||||
(setf old-beg (point-min) old-end (point-max)
|
||||
narrow-p t)
|
||||
(narrow-to-region org-agenda-restrict-begin org-agenda-restrict-end))))))
|
||||
(_ (prog1 org-agenda-restrict
|
||||
(with-current-buffer org-agenda-restrict
|
||||
;; Narrow the buffer; remember to widen it later.
|
||||
(setf old-beg (point-min) old-end (point-max)
|
||||
narrow-p t)
|
||||
(narrow-to-region org-agenda-restrict-begin org-agenda-restrict-end))))))
|
||||
(items (org-ql-select from query
|
||||
:action 'element-with-markers
|
||||
:narrow narrow-p)))
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
;; Author: Adam Porter <adam@alphapapa.net>
|
||||
;; Url: https://github.com/alphapapa/org-ql
|
||||
;; Version: 0.4.8
|
||||
;; Version: 0.4.9
|
||||
;; Package-Requires: ((emacs "26.1") (dash "2.13") (dash-functional "1.2.0") (f "0.17.2") (org "9.0") (org-super-agenda "1.2-pre") (ov "1.0.6") (peg "0.6") (s "1.12.0") (ts "0.2-pre"))
|
||||
;; Keywords: hypermedia, outlines, Org, agenda
|
||||
|
||||
|
|
|
|||
149
org-ql.info
149
org-ql.info
|
|
@ -63,6 +63,8 @@ Functions / Macros
|
|||
|
||||
Changelog
|
||||
|
||||
* 0.4.9: 049.
|
||||
* 0.4.8: 048.
|
||||
* 0.4.7: 047.
|
||||
* 0.4.6: 046.
|
||||
* 0.4.5: 045.
|
||||
|
|
@ -710,6 +712,8 @@ releases.
|
|||
|
||||
* Menu:
|
||||
|
||||
* 0.4.9: 049.
|
||||
* 0.4.8: 048.
|
||||
* 0.4.7: 047.
|
||||
* 0.4.6: 046.
|
||||
* 0.4.5: 045.
|
||||
|
|
@ -728,9 +732,32 @@ releases.
|
|||
* 0.1: 01.
|
||||
|
||||
|
||||
File: README.info, Node: 047, Next: 046, Up: Changelog
|
||||
File: README.info, Node: 049, Next: 048, Up: Changelog
|
||||
|
||||
5.1 0.4.7
|
||||
5.1 0.4.9
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
• Agenda restriction in org-ql-block. (Fixes #84
|
||||
(https://github.com/alphapapa/org-ql/issues/84). Thanks to Ihor
|
||||
Radchenko (https://github.com/yantar92).)
|
||||
|
||||
|
||||
File: README.info, Node: 048, Next: 047, Prev: 049, Up: Changelog
|
||||
|
||||
5.2 0.4.8
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
• Multiple sorters not preserved when refreshing views. (Fixes #136
|
||||
(https://github.com/alphapapa/org-ql/issues/136), #137
|
||||
(https://github.com/alphapapa/org-ql/pull/137). Thanks to Imran
|
||||
Khan (https://github.com/natrys).)
|
||||
|
||||
|
||||
File: README.info, Node: 047, Next: 046, Prev: 048, Up: Changelog
|
||||
|
||||
5.3 0.4.7
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -743,7 +770,7 @@ File: README.info, Node: 047, Next: 046, Up: Changelog
|
|||
|
||||
File: README.info, Node: 046, Next: 045, Prev: 047, Up: Changelog
|
||||
|
||||
5.2 0.4.6
|
||||
5.4 0.4.6
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -756,7 +783,7 @@ File: README.info, Node: 046, Next: 045, Prev: 047, Up: Changelog
|
|||
|
||||
File: README.info, Node: 045, Next: 044, Prev: 046, Up: Changelog
|
||||
|
||||
5.3 0.4.5
|
||||
5.5 0.4.5
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -768,7 +795,7 @@ File: README.info, Node: 045, Next: 044, Prev: 046, Up: Changelog
|
|||
|
||||
File: README.info, Node: 044, Next: 043, Prev: 045, Up: Changelog
|
||||
|
||||
5.4 0.4.4
|
||||
5.6 0.4.4
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -780,7 +807,7 @@ File: README.info, Node: 044, Next: 043, Prev: 045, Up: Changelog
|
|||
|
||||
File: README.info, Node: 043, Next: 042, Prev: 044, Up: Changelog
|
||||
|
||||
5.5 0.4.3
|
||||
5.7 0.4.3
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -790,7 +817,7 @@ File: README.info, Node: 043, Next: 042, Prev: 044, Up: Changelog
|
|||
|
||||
File: README.info, Node: 042, Next: 041, Prev: 043, Up: Changelog
|
||||
|
||||
5.6 0.4.2
|
||||
5.8 0.4.2
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -799,7 +826,7 @@ File: README.info, Node: 042, Next: 041, Prev: 043, Up: Changelog
|
|||
|
||||
File: README.info, Node: 041, Next: 04, Prev: 042, Up: Changelog
|
||||
|
||||
5.7 0.4.1
|
||||
5.9 0.4.1
|
||||
=========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -809,8 +836,8 @@ File: README.info, Node: 041, Next: 04, Prev: 042, Up: Changelog
|
|||
|
||||
File: README.info, Node: 04, Next: 032, Prev: 041, Up: Changelog
|
||||
|
||||
5.8 0.4
|
||||
=======
|
||||
5.10 0.4
|
||||
========
|
||||
|
||||
_Note:_ The next release, 0.5, may include changes which will require
|
||||
minor updates to written queries (e.g. a few predicates may be
|
||||
|
|
@ -890,8 +917,8 @@ as they will be pushed to the master branch when ready.
|
|||
|
||||
File: README.info, Node: 032, Next: 031, Prev: 04, Up: Changelog
|
||||
|
||||
5.9 0.3.2
|
||||
=========
|
||||
5.11 0.3.2
|
||||
==========
|
||||
|
||||
*Fixed*
|
||||
• In org-ql-search, accept symbol as ‘:super-groups’ argument.
|
||||
|
|
@ -903,7 +930,7 @@ File: README.info, Node: 032, Next: 031, Prev: 04, Up: Changelog
|
|||
|
||||
File: README.info, Node: 031, Next: 03, Prev: 032, Up: Changelog
|
||||
|
||||
5.10 0.3.1
|
||||
5.12 0.3.1
|
||||
==========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -913,7 +940,7 @@ File: README.info, Node: 031, Next: 03, Prev: 032, Up: Changelog
|
|||
|
||||
File: README.info, Node: 03, Next: 023, Prev: 031, Up: Changelog
|
||||
|
||||
5.11 0.3
|
||||
5.13 0.3
|
||||
========
|
||||
|
||||
*Added*
|
||||
|
|
@ -978,7 +1005,7 @@ File: README.info, Node: 03, Next: 023, Prev: 031, Up: Changelog
|
|||
|
||||
File: README.info, Node: 023, Next: 022, Prev: 03, Up: Changelog
|
||||
|
||||
5.12 0.2.3
|
||||
5.14 0.2.3
|
||||
==========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -988,7 +1015,7 @@ File: README.info, Node: 023, Next: 022, Prev: 03, Up: Changelog
|
|||
|
||||
File: README.info, Node: 022, Next: 021, Prev: 023, Up: Changelog
|
||||
|
||||
5.13 0.2.2
|
||||
5.15 0.2.2
|
||||
==========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -999,7 +1026,7 @@ File: README.info, Node: 022, Next: 021, Prev: 023, Up: Changelog
|
|||
|
||||
File: README.info, Node: 021, Next: 02, Prev: 022, Up: Changelog
|
||||
|
||||
5.14 0.2.1
|
||||
5.16 0.2.1
|
||||
==========
|
||||
|
||||
*Fixed*
|
||||
|
|
@ -1009,7 +1036,7 @@ File: README.info, Node: 021, Next: 02, Prev: 022, Up: Changelog
|
|||
|
||||
File: README.info, Node: 02, Next: 01, Prev: 021, Up: Changelog
|
||||
|
||||
5.15 0.2
|
||||
5.17 0.2
|
||||
========
|
||||
|
||||
*Added*
|
||||
|
|
@ -1092,7 +1119,7 @@ File: README.info, Node: 02, Next: 01, Prev: 021, Up: Changelog
|
|||
|
||||
File: README.info, Node: 01, Prev: 02, Up: Changelog
|
||||
|
||||
5.16 0.1
|
||||
5.18 0.1
|
||||
========
|
||||
|
||||
First tagged release.
|
||||
|
|
@ -1153,47 +1180,49 @@ GPLv3
|
|||
|
||||
Tag Table:
|
||||
Node: Top225
|
||||
Node: Contents1507
|
||||
Node: Screenshots1681
|
||||
Node: Installation1799
|
||||
Node: Quelpa2437
|
||||
Node: Usage2880
|
||||
Node: Commands3229
|
||||
Node: org-ql-search3702
|
||||
Node: helm-org-ql5350
|
||||
Node: org-ql-view5762
|
||||
Node: org-ql-view-sidebar5960
|
||||
Node: org-ql-view-recent-items6316
|
||||
Node: org-ql-sparse-tree6800
|
||||
Node: Queries7600
|
||||
Node: Non-sexp query syntax8508
|
||||
Node: General predicates10215
|
||||
Node: Ancestor/descendant predicates15022
|
||||
Node: Date/time predicates16150
|
||||
Node: Functions / Macros18805
|
||||
Node: Agenda-like views19038
|
||||
Node: Listing / acting-on results20443
|
||||
Node: Changelog25045
|
||||
Node: 04725679
|
||||
Node: 04626062
|
||||
Node: 04526462
|
||||
Node: 04426821
|
||||
Node: 04327178
|
||||
Node: 04227373
|
||||
Node: 04127532
|
||||
Node: 0427771
|
||||
Node: 03231702
|
||||
Node: 03132079
|
||||
Node: 0332276
|
||||
Node: 02335251
|
||||
Node: 02235479
|
||||
Node: 02135747
|
||||
Node: 0235946
|
||||
Node: 0139981
|
||||
Node: Notes40082
|
||||
Node: Comparison with Org Agenda searches40244
|
||||
Node: org-sidebar41115
|
||||
Node: License41394
|
||||
Node: Contents1537
|
||||
Node: Screenshots1711
|
||||
Node: Installation1829
|
||||
Node: Quelpa2467
|
||||
Node: Usage2910
|
||||
Node: Commands3259
|
||||
Node: org-ql-search3732
|
||||
Node: helm-org-ql5380
|
||||
Node: org-ql-view5792
|
||||
Node: org-ql-view-sidebar5990
|
||||
Node: org-ql-view-recent-items6346
|
||||
Node: org-ql-sparse-tree6830
|
||||
Node: Queries7630
|
||||
Node: Non-sexp query syntax8538
|
||||
Node: General predicates10245
|
||||
Node: Ancestor/descendant predicates15052
|
||||
Node: Date/time predicates16180
|
||||
Node: Functions / Macros18835
|
||||
Node: Agenda-like views19068
|
||||
Node: Listing / acting-on results20473
|
||||
Node: Changelog25075
|
||||
Node: 04925739
|
||||
Node: 04826002
|
||||
Node: 04726349
|
||||
Node: 04626744
|
||||
Node: 04527144
|
||||
Node: 04427503
|
||||
Node: 04327860
|
||||
Node: 04228055
|
||||
Node: 04128214
|
||||
Node: 0428453
|
||||
Node: 03232386
|
||||
Node: 03132765
|
||||
Node: 0332962
|
||||
Node: 02335937
|
||||
Node: 02236165
|
||||
Node: 02136433
|
||||
Node: 0236632
|
||||
Node: 0140667
|
||||
Node: Notes40768
|
||||
Node: Comparison with Org Agenda searches40930
|
||||
Node: org-sidebar41801
|
||||
Node: License42080
|
||||
|
||||
End Tag Table
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue