Support importing Taskwarrior v2.x data files (#3724)
This should ease the pain of upgrading from v2.x to v3.x.
This commit is contained in:
committed by
GitHub
parent
758ac8f850
commit
cc505e4881
@@ -66,6 +66,7 @@
|
||||
#include <CmdHistory.h>
|
||||
#include <CmdIDs.h>
|
||||
#include <CmdImport.h>
|
||||
#include <CmdImportV2.h>
|
||||
#include <CmdInfo.h>
|
||||
#include <CmdLog.h>
|
||||
#include <CmdLogo.h>
|
||||
@@ -188,6 +189,8 @@ void Command::factory(std::map<std::string, Command*>& all) {
|
||||
all[c->keyword()] = c;
|
||||
c = new CmdImport();
|
||||
all[c->keyword()] = c;
|
||||
c = new CmdImportV2();
|
||||
all[c->keyword()] = c;
|
||||
c = new CmdInfo();
|
||||
all[c->keyword()] = c;
|
||||
c = new CmdLog();
|
||||
|
||||
Reference in New Issue
Block a user