FF4/JSON Interop
- Removed the \n characters from Task::composeFF4 and Task::ComposeJSON. - Tasks in backlog.data file are now written as JSON. - Tasks are recognized in FF4 or JSON format.
This commit is contained in:
@@ -182,10 +182,10 @@ std::string Taskmod::toString ()
|
||||
|
||||
if (_bBeforeSet)
|
||||
{
|
||||
stream << STRING_TASKMOD_OLD << _before.composeF4();
|
||||
stream << STRING_TASKMOD_OLD << _before.composeF4() << "\n";
|
||||
}
|
||||
|
||||
stream << STRING_TASKMOD_NEW << _after.composeF4();
|
||||
stream << STRING_TASKMOD_NEW << _after.composeF4() << "\n";
|
||||
stream << "---\n";
|
||||
|
||||
return stream.str ();
|
||||
|
||||
Reference in New Issue
Block a user