mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
CmdFill: Disabled for beta. It is not ready.
This commit is contained in:
parent
489626de10
commit
4c1568533e
3 changed files with 7 additions and 0 deletions
1
NEWS
1
NEWS
|
@ -6,6 +6,7 @@ New Features in 1.0.0
|
|||
Features not implemented in 1.0.0
|
||||
|
||||
- The 'undo' command.
|
||||
- The 'fill' command and ':adjust' hint are disabled for beta.
|
||||
- Rules.
|
||||
|
||||
Known Issues
|
||||
|
|
|
@ -43,7 +43,9 @@ int CmdHelpUsage ()
|
|||
<< " timew diagnostics\n"
|
||||
<< " timew export [<interval>] [<tag> ...]\n"
|
||||
<< " timew extensions\n"
|
||||
/*
|
||||
<< " timew fill @<id> [@<id> ...]\n"
|
||||
*/
|
||||
<< " timew gaps [<interval>] [<tag> ...]\n"
|
||||
<< " timew get <DOM> [<DOM> ...]\n"
|
||||
<< " timew help [<command> | interval | hints | date | duration]\n"
|
||||
|
@ -426,6 +428,7 @@ int CmdHelp (const CLI& cli)
|
|||
|
||||
// Ruler 1 2 3 4 5 6 7 8
|
||||
// 12345678901234567890123456789012345678901234567890123456789012345678901234567890
|
||||
/*
|
||||
else if (words[0] == "fill")
|
||||
std::cout << '\n'
|
||||
<< "Syntax: timew fill @<id> [@<id> ...]\n"
|
||||
|
@ -447,6 +450,7 @@ int CmdHelp (const CLI& cli)
|
|||
<< '\n'
|
||||
<< "See also 'hints'.\n"
|
||||
<< '\n';
|
||||
*/
|
||||
|
||||
// Ruler 1 2 3 4 5 6 7 8
|
||||
// 12345678901234567890123456789012345678901234567890123456789012345678901234567890
|
||||
|
|
|
@ -263,7 +263,9 @@ int dispatchCommand (
|
|||
else if (command == "diagnostics") status = CmdDiagnostics ( rules, database, extensions);
|
||||
else if (command == "export") status = CmdExport (cli, rules, database );
|
||||
else if (command == "extensions") status = CmdExtensions ( rules, extensions);
|
||||
/*
|
||||
else if (command == "fill") status = CmdFill (cli, rules, database );
|
||||
*/
|
||||
else if (command == "gaps") status = CmdGaps (cli, rules, database );
|
||||
else if (command == "get") status = CmdGet (cli, rules, database );
|
||||
else if (command == "help") status = CmdHelp (cli );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue