From 5e5a68e045f065d14b12cd002fb59f8bbcede49b Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 2 Oct 2021 16:24:57 -0400 Subject: [PATCH] CmdNews: Mark more higlights as major --- src/commands/CmdNews.cpp | 48 ++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/src/commands/CmdNews.cpp b/src/commands/CmdNews.cpp index f94295a1e..59c918de0 100644 --- a/src/commands/CmdNews.cpp +++ b/src/commands/CmdNews.cpp @@ -290,32 +290,11 @@ void CmdNews::version2_6_0 (std::vector& items) { ); items.push_back(uint64_support); - ///////////////////////////////////////////////////////////////////////////// - // - Reports outside of context - - NewsItem contextless_reports ( - false, - "Context-less reports", - "", - " By default, every report is affected by currently active context.", - " You can now make a selected report ignore currently active context by setting\n" - " 'report..context' configuration variable to 0.", - "", - " This is useful for users who utilize a single place (such as project:Inbox)\n" - " to collect their new tasks that are then triaged on a regular basis\n" - " (such as in GTD methodology).\n" - " \n" - " In such a case, defining a report that filters for project:Inbox and making it\n" - " fully accessible from any context is a major usability improvement.", - "" - ); - items.push_back(contextless_reports); - ///////////////////////////////////////////////////////////////////////////// // - Waiting is a virtual status NewsItem waiting_status ( - false, + true, "Deprecation of the status:waiting", "", " If a task has a 'wait' attribute set to a date in the future, it is modified.\n" @@ -336,7 +315,7 @@ void CmdNews::version2_6_0 (std::vector& items) { // - Support for environment variables in the taskrc NewsItem env_vars ( - false, + true, "Environment variables in the taskrc", "", "", @@ -350,6 +329,27 @@ void CmdNews::version2_6_0 (std::vector& items) { ); items.push_back(env_vars); + ///////////////////////////////////////////////////////////////////////////// + // - Reports outside of context + + NewsItem contextless_reports ( + true, + "Context-less reports", + "", + " By default, every report is affected by currently active context.", + " You can now make a selected report ignore currently active context by setting\n" + " 'report..context' configuration variable to 0.", + "", + " This is useful for users who utilize a single place (such as project:Inbox)\n" + " to collect their new tasks that are then triaged on a regular basis\n" + " (such as in GTD methodology).\n" + " \n" + " In such a case, defining a report that filters for project:Inbox and making it\n" + " fully accessible from any context is a major usability improvement.", + "" + ); + items.push_back(contextless_reports); + ///////////////////////////////////////////////////////////////////////////// // - Exporting a particular report @@ -459,7 +459,7 @@ void CmdNews::version2_6_0 (std::vector& items) { // - XDG config home support NewsItem xdg_support ( - false, + true, "Support for XDG Base Directory Specification", "", " The XDG Base Directory specification provides standard locations to store\n"