From 8ef6aa4bce421b5cafe48c9a581135d08e9f1f0a Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 2 Oct 2021 13:11:31 -0400 Subject: [PATCH] CmdNews: Guide users about minor highlights --- src/commands/CmdNews.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/commands/CmdNews.cpp b/src/commands/CmdNews.cpp index 8954f8a15..0794a9fd9 100644 --- a/src/commands/CmdNews.cpp +++ b/src/commands/CmdNews.cpp @@ -552,5 +552,12 @@ int CmdNews::execute (std::string& output) output = "Thank you for catching up on the new features!\n"; } + if (! full_summary && major_items) + Context::getContext ().footnote (format ( + "\nOnly major higlights were displayed.\n" + "If you're interested in more release highlights, run 'task news {1} minor'.", + version + )); + return 0; }