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:
Dustin J. Mitchell
2024-12-16 20:24:45 -05:00
committed by GitHub
parent 758ac8f850
commit cc505e4881
11 changed files with 525 additions and 1 deletions

View File

@@ -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();