From 4c1568533e5f64f72d7292d436010f038a1ecadc Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 24 Jul 2016 17:31:43 -0400 Subject: [PATCH] CmdFill: Disabled for beta. It is not ready. --- NEWS | 1 + src/commands/CmdHelp.cpp | 4 ++++ src/init.cpp | 2 ++ 3 files changed, 7 insertions(+) diff --git a/NEWS b/NEWS index 63bb99e2..9ad16a23 100644 --- a/NEWS +++ b/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 diff --git a/src/commands/CmdHelp.cpp b/src/commands/CmdHelp.cpp index b04a1cd2..c8a01abc 100644 --- a/src/commands/CmdHelp.cpp +++ b/src/commands/CmdHelp.cpp @@ -43,7 +43,9 @@ int CmdHelpUsage () << " timew diagnostics\n" << " timew export [] [ ...]\n" << " timew extensions\n" +/* << " timew fill @ [@ ...]\n" +*/ << " timew gaps [] [ ...]\n" << " timew get [ ...]\n" << " timew help [ | 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 @ [@ ...]\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 diff --git a/src/init.cpp b/src/init.cpp index ee4fda8a..667200b8 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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 );