mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-24 18:06:42 +02:00
Export
- Added the alias 'export.json' that maps to the _query command.
This commit is contained in:
parent
3a623af363
commit
7e1e187d6c
3 changed files with 4 additions and 2 deletions
|
@ -14,6 +14,7 @@
|
||||||
+ Added ability to temporarily suspend GC (rc.gc:0) for a given command, which
|
+ Added ability to temporarily suspend GC (rc.gc:0) for a given command, which
|
||||||
helps scriptwriters implement shadow files externally (thanks to Sander
|
helps scriptwriters implement shadow files externally (thanks to Sander
|
||||||
Marechal).
|
Marechal).
|
||||||
|
+ Added alias 'export.json' that maps to the new _query helper command.
|
||||||
+ Added feature #30, which eliminates the dependency on ncurses (thanks to
|
+ Added feature #30, which eliminates the dependency on ncurses (thanks to
|
||||||
Johan Friis).
|
Johan Friis).
|
||||||
+ Added feature #41, XML export in the form of add-on script export-xml.pl,
|
+ Added feature #41, XML export in the form of add-on script export-xml.pl,
|
||||||
|
|
4
NEWS
4
NEWS
|
@ -4,7 +4,6 @@ New Features in taskwarrior 1.9.4
|
||||||
- New burndown charts.
|
- New burndown charts.
|
||||||
- New 'count' helper command.
|
- New 'count' helper command.
|
||||||
- Inifinite width reports, when redirecting output.
|
- Inifinite width reports, when redirecting output.
|
||||||
- Regular expression support in filters and substitutions.
|
|
||||||
- Added highlighting for the show command that indicates which values differ
|
- Added highlighting for the show command that indicates which values differ
|
||||||
from the defaults.
|
from the defaults.
|
||||||
- Added change log display to the 'info' command.
|
- Added change log display to the 'info' command.
|
||||||
|
@ -12,7 +11,8 @@ New Features in taskwarrior 1.9.4
|
||||||
value.
|
value.
|
||||||
- No more dependency on ncurses.
|
- No more dependency on ncurses.
|
||||||
- New '_query' helper command for script writers, which accepts a filter like
|
- New '_query' helper command for script writers, which accepts a filter like
|
||||||
any other report, but returns unformatted JSON.
|
any other report, but returns unformatted JSON. The new alias 'export.json'
|
||||||
|
maps to the _query command.
|
||||||
- Import can now read from files and URLs.
|
- Import can now read from files and URLs.
|
||||||
- Assorted bug fixes.
|
- Assorted bug fixes.
|
||||||
- New literal date "later" and "someday" to be used with the wait attribute to
|
- New literal date "later" and "someday" to be used with the wait attribute to
|
||||||
|
|
|
@ -290,6 +290,7 @@ std::string Config::defaults =
|
||||||
"alias.ghistory=ghistory.monthly # Prefer monthly graphical over annual history reports\n"
|
"alias.ghistory=ghistory.monthly # Prefer monthly graphical over annual history reports\n"
|
||||||
"alias.export=export.yaml # Prefer YAML over CSV or iCal export\n"
|
"alias.export=export.yaml # Prefer YAML over CSV or iCal export\n"
|
||||||
"alias.export.vcalendar=export.ical # They are the same\n"
|
"alias.export.vcalendar=export.ical # They are the same\n"
|
||||||
|
"alias.export.json=_query # The _query command will be used for all export\n"
|
||||||
"alias.burndown=burndown.weekly # Prefer the weekly burndown chart\n"
|
"alias.burndown=burndown.weekly # Prefer the weekly burndown chart\n"
|
||||||
"\n"
|
"\n"
|
||||||
"# Fields: id, uuid, project, priority, priority_long, entry, start, end,\n"
|
"# Fields: id, uuid, project, priority, priority_long, entry, start, end,\n"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue