mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 04:27:20 +02:00
Extensions
- Documented the 'extensions' master control switch.
This commit is contained in:
parent
07faa663b4
commit
d08e1dab76
6 changed files with 14 additions and 5 deletions
|
@ -17,6 +17,9 @@
|
||||||
+ Added Czech Republic holiday files (thanks to Tomas Cech).
|
+ Added Czech Republic holiday files (thanks to Tomas Cech).
|
||||||
+ All holiday files have been renamed to include a locale, rather than just a
|
+ All holiday files have been renamed to include a locale, rather than just a
|
||||||
country code. For example: holidays.en-US.rc.
|
country code. For example: holidays.en-US.rc.
|
||||||
|
+ Now ships with an add-on script, update-holidays.pl, which contacts
|
||||||
|
http://holidata.net, and brings the installed holiday files up to date.
|
||||||
|
+ Extension system now controlled by the 'extensions' configuration variable.
|
||||||
|
|
||||||
# Tracked Features, sorted by ID.
|
# Tracked Features, sorted by ID.
|
||||||
+ Added feature #523 & #659, adding 'status' as a reportable field (thanks to
|
+ Added feature #523 & #659, adding 'status' as a reportable field (thanks to
|
||||||
|
|
1
NEWS
1
NEWS
|
@ -24,6 +24,7 @@ New configuration options in taskwarrior 2.0.0
|
||||||
- The old 'curses' configuration variable is renamed to 'detection', but
|
- The old 'curses' configuration variable is renamed to 'detection', but
|
||||||
retains the original meaning, which is whether or not to auto-detect the
|
retains the original meaning, which is whether or not to auto-detect the
|
||||||
dimensions of the terminal window.
|
dimensions of the terminal window.
|
||||||
|
- Extension system now controlled by the 'extensions' configuration variable.
|
||||||
|
|
||||||
Newly deprecated features in taskwarrior 2.0.0
|
Newly deprecated features in taskwarrior 2.0.0
|
||||||
|
|
||||||
|
|
|
@ -349,6 +349,11 @@ Taskwarrior supports command aliases. This alias provides an alternate name
|
||||||
any of the commands. Several commands you may use are actually aliases -
|
any of the commands. Several commands you may use are actually aliases -
|
||||||
the 'history' report, for example, or 'export'.
|
the 'history' report, for example, or 'export'.
|
||||||
|
|
||||||
|
.SS EXTENSIONS
|
||||||
|
.TP
|
||||||
|
.B extensions=on
|
||||||
|
Enables the extension system. Defaults to on.
|
||||||
|
|
||||||
.SS DATES
|
.SS DATES
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
|
@ -488,7 +493,7 @@ of the holidays is also shown. If set to sparse only the days are color-coded
|
||||||
and no details on the holidays will be displayed. The displaying of holidays is
|
and no details on the holidays will be displayed. The displaying of holidays is
|
||||||
turned off by setting the variable to none. The default value is "none".
|
turned off by setting the variable to none. The default value is "none".
|
||||||
|
|
||||||
.SS Journal entries
|
.SS JOURNAL ENTRIES
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
.B journal.time=no
|
.B journal.time=no
|
||||||
|
@ -511,7 +516,7 @@ having set journal.time.
|
||||||
When enabled, this setting causes a change log of each task to be displayed by
|
When enabled, this setting causes a change log of each task to be displayed by
|
||||||
the 'info' command. Default value is "on".
|
the 'info' command. Default value is "on".
|
||||||
|
|
||||||
.SS Holidays
|
.SS HOLIDAYS
|
||||||
Holidays are entered either directly in the .taskrc file or via an include file
|
Holidays are entered either directly in the .taskrc file or via an include file
|
||||||
that is specified in .taskrc. For each holiday the name and the date is
|
that is specified in .taskrc. For each holiday the name and the date is
|
||||||
required to be given:
|
required to be given:
|
||||||
|
|
|
@ -253,7 +253,7 @@ std::string Config::defaults =
|
||||||
"list.all.projects=no # Include old project names in 'projects' command\n"
|
"list.all.projects=no # Include old project names in 'projects' command\n"
|
||||||
"list.all.tags=no # Include old tag names in 'tags' command\n"
|
"list.all.tags=no # Include old tag names in 'tags' command\n"
|
||||||
"debug=no # Display diagnostics\n"
|
"debug=no # Display diagnostics\n"
|
||||||
"hooks=off # Hook system master switch\n"
|
"extensions=off # Extension system master switch\n"
|
||||||
"fontunderline=yes # Uses underlines rather than -------\n"
|
"fontunderline=yes # Uses underlines rather than -------\n"
|
||||||
"shell.prompt=task> # Prompt used by the shell command\n"
|
"shell.prompt=task> # Prompt used by the shell command\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
|
|
@ -1178,7 +1178,7 @@ int handleShow (std::string& outs)
|
||||||
"nag next journal.time journal.time.start.annotation journal.info "
|
"nag next journal.time journal.time.start.annotation journal.info "
|
||||||
"journal.time.stop.annotation project shadow.command shadow.file "
|
"journal.time.stop.annotation project shadow.command shadow.file "
|
||||||
"shadow.notify weekstart editor edit.verbose import.synonym.id import.synonym.uuid "
|
"shadow.notify weekstart editor edit.verbose import.synonym.id import.synonym.uuid "
|
||||||
"complete.all.projects complete.all.tags search.case.sensitive hooks "
|
"complete.all.projects complete.all.tags search.case.sensitive extensions "
|
||||||
"active.indicator tag.indicator recurrence.indicator recurrence.limit "
|
"active.indicator tag.indicator recurrence.indicator recurrence.limit "
|
||||||
"list.all.projects list.all.tags undo.style verbose rule.precedence.color "
|
"list.all.projects list.all.tags undo.style verbose rule.precedence.color "
|
||||||
"merge.autopush merge.default.uri pull.default.uri push.default.uri "
|
"merge.autopush merge.default.uri pull.default.uri push.default.uri "
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue