mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
TW-262
- TW-262 Attribute modifiers not working within parentheses (thanks to Johannes Schlatow).
This commit is contained in:
parent
ae667a7e9e
commit
a894a3dedb
3 changed files with 8 additions and 4 deletions
2
AUTHORS
2
AUTHORS
|
@ -228,3 +228,5 @@ suggestions:
|
||||||
lolilolicon
|
lolilolicon
|
||||||
Lee Lieske
|
Lee Lieske
|
||||||
Peter Vitt
|
Peter Vitt
|
||||||
|
dev-zero
|
||||||
|
|
||||||
|
|
|
@ -57,6 +57,8 @@
|
||||||
- TW-257 limit: not working properly (thanks to Aikido Guy).
|
- TW-257 limit: not working properly (thanks to Aikido Guy).
|
||||||
- TW-259 Hyphenated words are split when added (thanks to Ben Boeckel).
|
- TW-259 Hyphenated words are split when added (thanks to Ben Boeckel).
|
||||||
- TW-261 Easy to create "not deletable" task (thanks to Jan Kunder).
|
- TW-261 Easy to create "not deletable" task (thanks to Jan Kunder).
|
||||||
|
- TW-262 Attribute modifiers not working within parentheses (thanks to Johannes
|
||||||
|
Schlatow).
|
||||||
- TW-266 Allow project auto-completion to search completed tasks (thanks to
|
- TW-266 Allow project auto-completion to search completed tasks (thanks to
|
||||||
Kosta Harlan).
|
Kosta Harlan).
|
||||||
- TW-271 Parser still looks for task id even when -- is used (thanks to Jim B).
|
- TW-271 Parser still looks for task id even when -- is used (thanks to Jim B).
|
||||||
|
@ -1071,7 +1073,7 @@ Bugs
|
||||||
- Fixed bug #494, causing imported text files to ultimately lack uuids
|
- Fixed bug #494, causing imported text files to ultimately lack uuids
|
||||||
(thanks to Elizabeth Maxson).
|
(thanks to Elizabeth Maxson).
|
||||||
- Fixed problem with command line configuration overrides that had no
|
- Fixed problem with command line configuration overrides that had no
|
||||||
values.
|
values.
|
||||||
- Fixed problem with the 'undo' command not observing the rc.color or the
|
- Fixed problem with the 'undo' command not observing the rc.color or the
|
||||||
rc._forcecolor settings.
|
rc._forcecolor settings.
|
||||||
- Fixed problem with extra blank line in the ghistory reports.
|
- Fixed problem with extra blank line in the ghistory reports.
|
||||||
|
@ -1094,7 +1096,7 @@ Bugs
|
||||||
configuration settings or just the ones matching a search string.
|
configuration settings or just the ones matching a search string.
|
||||||
'task config' is now only used to set new configuration values.
|
'task config' is now only used to set new configuration values.
|
||||||
- Added feature #298, supporting a configurable number of future recurring
|
- Added feature #298, supporting a configurable number of future recurring
|
||||||
tasks that are generated.
|
tasks that are generated.
|
||||||
- Added feature #412, which allows the 'projects' and 'tags' commands to be
|
- Added feature #412, which allows the 'projects' and 'tags' commands to be
|
||||||
list all used projects/tags, not just the ones used in current pending tasks.
|
list all used projects/tags, not just the ones used in current pending tasks.
|
||||||
Controlled by the 'list.all.projects' and 'list.all.tags' configuration
|
Controlled by the 'list.all.projects' and 'list.all.tags' configuration
|
||||||
|
@ -1323,7 +1325,7 @@ Bugs
|
||||||
1.8.1 (8/20/2009) 35792e7874d2bb664abb1a0a67960b7fe7e0fccf
|
1.8.1 (8/20/2009) 35792e7874d2bb664abb1a0a67960b7fe7e0fccf
|
||||||
- Fixed bug #231 that broke the build on OpenBSD 32-bit due to a time_t
|
- Fixed bug #231 that broke the build on OpenBSD 32-bit due to a time_t
|
||||||
and int collision (thanks to Pietro Cerutti).
|
and int collision (thanks to Pietro Cerutti).
|
||||||
- Fixed bug #241 that prevented bash's tab-completion of projects in Fedora
|
- Fixed bug #241 that prevented bash's tab-completion of projects in Fedora
|
||||||
11 and likely anything using bash-4 (thanks to John Florian).
|
11 and likely anything using bash-4 (thanks to John Florian).
|
||||||
- Fixed bug #242 that sometimes causes the ID echoed after a task is added
|
- Fixed bug #242 that sometimes causes the ID echoed after a task is added
|
||||||
to be incorrect (thanks to John Florian).
|
to be incorrect (thanks to John Florian).
|
||||||
|
|
|
@ -94,7 +94,7 @@ void Parser::initialize (int argc, const char** argv)
|
||||||
// Create top-level nodes.
|
// Create top-level nodes.
|
||||||
for (int i = 0; i < argc; ++i)
|
for (int i = 0; i < argc; ++i)
|
||||||
{
|
{
|
||||||
std::string raw = argv[i];
|
std::string raw = trim (argv[i]);
|
||||||
Tree* branch = _tree->addBranch (new Tree (format ("arg{1}", i)));
|
Tree* branch = _tree->addBranch (new Tree (format ("arg{1}", i)));
|
||||||
branch->attribute ("raw", raw);
|
branch->attribute ("raw", raw);
|
||||||
branch->tag ("ORIGINAL");
|
branch->tag ("ORIGINAL");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue