mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Feature #471
- Added feature #471, which makes greater use of projects by reporting changes to the completion percentage when it changes. - Added unit tests.
This commit is contained in:
parent
d460e604ff
commit
5c235ce1ef
6 changed files with 193 additions and 6 deletions
|
@ -42,10 +42,6 @@
|
|||
#include "Color.h"
|
||||
#include "../auto.h"
|
||||
|
||||
// task.cpp
|
||||
void gatherNextTasks (std::vector <Task>&);
|
||||
void onChangeCallback ();
|
||||
|
||||
// recur.cpp
|
||||
void handleRecurrence ();
|
||||
Date getNextRecurrence (Date&, std::string&);
|
||||
|
@ -107,8 +103,11 @@ int handleReportGHistoryAnnual (std::string &);
|
|||
int handleReportCalendar (std::string &);
|
||||
int handleReportStats (std::string &);
|
||||
int handleReportTimesheet (std::string &);
|
||||
void gatherNextTasks (std::vector <Task>&);
|
||||
std::string getFullDescription (Task&, const std::string&);
|
||||
std::string getDueDate (Task&, const std::string&);
|
||||
std::string onProjectChange (Task&, bool scope = true);
|
||||
std::string onProjectChange (Task&, Task&);
|
||||
|
||||
// custom.cpp
|
||||
int handleCustomReport (const std::string&, std::string &);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue