Adam Porter
24b799ab0b
Meta: v0.8.1-pre
2024-01-03 18:25:18 -06:00
Adam Porter
087e99703e
Release: v0.8
2023-12-21 17:14:30 -06:00
Adam Porter
f98dee54c8
Docs: Update changelog and usage
2023-12-21 16:49:06 -06:00
Adam Porter
3dc2409539
Meta: Require Emacs 27.1 or later
...
Emacs 26.3 is quite old now, and I can't practically run tests for it
anymore because some other dependencies have dropped support for it.
2023-12-16 07:10:52 -06:00
Adam Porter
c78f785378
Docs: Update changelog
2023-12-16 05:39:08 -06:00
Adam Porter
1496185141
Fix: (property) Handle org-use-property-inheritance when unspecified
...
Fixes #356 .
Reported-by: beast-pro <https://github.com/beast-pro >
Reported-by: pcompassion <https://github.com/pcompassion >
2023-12-16 05:37:48 -06:00
Adam Porter
a31baebc4f
Add: (org-ql-view--format-element) org-category property
...
Hopefully this does not cause a noticeable performance impact. Maybe
the new org-element caching features in Org will help with that.
Fixes #363 .
Reported-by: Gabriele Mongiano <https://github.com/kofm >
2023-12-16 04:47:06 -06:00
Adam Porter
ace5e361af
Merge: v0.7.4
2023-12-16 04:13:38 -06:00
Adam Porter
38e16b4a5f
Release: v0.7.4
2023-12-16 04:11:01 -06:00
Adam Porter
7a6b622cd0
Fix: Ignore empty quoted strings when parsing string queries
...
Fixes #383 .
Reported-by: Adam Porter <adam@alphapapa.net>
2023-12-16 04:10:34 -06:00
Adam Porter
5775848b8a
Meta: v0.7.4-pre
2023-12-16 03:56:58 -06:00
Adam Porter
2319fc9d8b
Docs: Update changelog, Usage
2023-10-25 03:29:03 -05:00
Adam Porter
ee01bcb6e8
Merge: v0.7.3
2023-10-23 18:55:00 -05:00
Adam Porter
28c4215704
Release: v0.7.3
2023-10-23 18:52:04 -05:00
Adam Porter
631cd80ce8
Fix: (org-ql-find) Go to selected entry
...
Fixes #380 .
Reported-by: Omar Antolín Camarena <omar@matem.unam.mx>
2023-10-23 01:26:39 -05:00
Adam Porter
09c3591504
Fix: Saving of org-ql-view views
...
It didn't seem that calling custom-save-all was necessary in the past,
but it appears that it is now.
Closes #378 .
Reported-by: Pentaquark1 <https://github.com/Pentaquark1 >
2023-10-19 21:50:30 -05:00
Adam Porter
4476759dc9
Fix: (org-ql--outline-path) Disable case-fold-search
2023-10-19 21:47:34 -05:00
Adam Porter
daad25e079
Meta: v0.7.3-pre
2023-10-19 21:45:22 -05:00
Adam Porter
ac2d43588a
Add: (org-ql-find-path)
2023-10-19 21:44:26 -05:00
Adam Porter
ab720689e9
Change: (org-ql-find) Interactively, search relevant buffers
2023-09-30 20:09:12 -05:00
Adam Porter
a41dfe25ea
Docs: Update changelog, usage
2023-09-27 15:02:40 -05:00
Adam Porter
5c9d4cdb48
Docs: Update changelog
2023-09-27 13:40:30 -05:00
Adam Porter
0a0291288e
Meta: v0.8-pre
2023-09-27 13:36:18 -05:00
Adam Porter
f9d4f62415
Release: v0.7.2
2023-09-27 00:21:21 -05:00
Adam Porter
56e203110b
Fix: (org-ql-completing-read) Warn about empty headings
2023-09-26 20:48:59 -05:00
Adam Porter
be20dc3d5b
Fix: (org-ql-find) Use org-with-point-at
...
I keep pointing out to other people that they should use
org-with-point-at, but I still have places in my own code where I need
to use it, too!
2023-09-26 13:42:00 -05:00
Adam Porter
95abce2340
Fix: (org-ql-completing-read) :query-prefix prevented selection
...
COMPLETING-READ, when used with its REQUIRE-MATCH argument, would not
allow a result to be selected when ORG-QL-FIND was called with its
QUERY-PREFIX argument.
This change moves where the query is modified to include the prefix,
putting it into the RUN-QUERY function instead of the COLLECTION
function. It seems to solve the problem, and the function seems to
still work when used without QUERY-PREFIX. However, due to the
complexity of all this (we really need a SELECTING-READ API), it
wouldn't surprise me if something is later found to have been broken
by it...
Fixes #351 .
Reported-by: Daniel Fleischer <https://github.com/danielfleischer >
2023-09-14 08:10:49 -05:00
Adam Porter
131407814e
Fix: (org-ql--def-query-string-to-sexp-fn) Ignore leading blanks
2023-09-08 02:22:40 -05:00
Adam Porter
f65b1d91a4
Fix: (org-ql--normalize-from-to-on) Tolerate "-" input
...
Avoids errors while typing a query (e.g. a negative number) into
org-ql-find, which interrupts completion altogether.
2023-09-06 20:51:41 -05:00
Adam Porter
3622b92403
Meta: v0.7.2-pre
2023-09-06 20:49:12 -05:00
Adam Porter
d776e205d5
Release: v0.7.1
2023-09-06 18:57:36 -05:00
Adam Porter
2d29d69133
Docs: Update changelog
2023-09-06 16:08:54 -05:00
Adam Porter
898addeee9
Docs: Tidy
...
The circumstances which precipitated this expression of support for
fellow developers thankfully passed some time ago.
2023-09-04 22:40:52 -05:00
Adam Porter
2c098540ca
Fix: (org-ql-completing-read) Format links before display
...
Also use org-entry-get to get the heading, which should avoid issues
with different Org versions having different optional arguments to
org-get-heading.
2023-05-05 17:25:21 -05:00
Adam Porter
4c1a4b169f
Fix: (org-ql-completing-read)
...
This seems to work better now with default Emacs completion (i.e. not
using Vertico or Helm). It's still not perfect, but it seems to work
reasonably well and be more correct.
Fixes #338 . Thanks to @arozbiz for reporting.
2023-03-12 09:33:28 -05:00
Adam Porter
ce66f67c96
Meta: v0.7.1-pre
2023-03-12 05:59:13 -05:00
Adam Porter
aadddc4d84
Release: v0.7
2023-03-10 06:25:45 -06:00
Adam Porter
9e14f9eefa
Fix: (link) Allow brackets in description
...
Org 9.3 stopped replacing brackets in link descriptions with braces
and started escaping them instead.
Fixes #283 . Thanks to Daniel Borchmann (@exot) for reporting.
2023-03-10 05:56:01 -06:00
Adam Porter
d92afcda06
Docs: Update changelog
2023-03-10 04:46:32 -06:00
Adam Porter
902dad04c1
Docs/Tidy: Update readme, reorder forms
2023-03-10 03:36:21 -06:00
Akira Komamura
6afe3be572
Add: (blocked) predicate
2023-03-10 03:33:08 -06:00
Adam Porter
d21da3682b
Tidy: Compilation warnings
2023-03-09 03:23:42 -06:00
Adam Porter
8bb1739661
Tests: (src) Normalization with no args
...
Closes #293 . Thanks to Akira Komamura (@akirak) for reporting.
2023-03-09 02:45:48 -06:00
Adam Porter
d784f8f71c
Tests: (src) Implement
2023-03-09 02:45:48 -06:00
Adam Porter
1996969920
Fix: (src) Rewrite body
...
Fixes #304 . Thanks to @johanwk for reporting.
2023-03-09 01:46:34 -06:00
Adam Porter
d253b123cf
Docs: Add credits for v0.7-pre
2022-12-09 20:33:01 -06:00
Adam Porter
ecde3a0420
Change/Fix: (src) Normalization, case-insensitivity
2022-12-09 20:19:55 -06:00
Adam Porter
9dd1bbb10b
Merge: 0.6.3
2022-12-08 20:50:01 -06:00
Adam Porter
80b334c269
Release: v0.6.3
2022-12-08 20:45:14 -06:00
Adam Porter
2ddfb7c231
Fix: Require org-duration
...
This appears to be necessary on newer Org versions, but I don't know
exactly when.
2022-12-08 20:45:14 -06:00