diff --git a/ChangeLog b/ChangeLog index bc275d4a..e45e0cf2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ 1.0.0 () - +0.1.0 () - + - Introduced the new shared library as a git submodule. diff --git a/NEWS b/NEWS index 7d3da0e6..3a01cbba 100644 --- a/NEWS +++ b/NEWS @@ -13,8 +13,8 @@ Timewarrior has been built and tested on the following configurations: --- -While Timewarrior has undergone testing, bugs are sure to remain. If you -encounter a bug, please enter a new issue at: +While Timewarrior has undergone testing, bugs are sure to remain. If you find +a bug, please enter a new issue at: https://bug.tasktools.org diff --git a/src/Datafile.cpp b/src/Datafile.cpp index 716b2b87..f4b206a1 100644 --- a/src/Datafile.cpp +++ b/src/Datafile.cpp @@ -32,7 +32,6 @@ void Datafile::initialize (const std::string& name) { _name = name; - } //////////////////////////////////////////////////////////////////////////////// diff --git a/src/Rules.cpp b/src/Rules.cpp index 459d7eb8..ed4061ec 100644 --- a/src/Rules.cpp +++ b/src/Rules.cpp @@ -44,7 +44,8 @@ void Rules::load (const std::string& file, int nest /* = 1 */) // First time in, load the default values. if (nest == 1) { - // This is where defaults would be set. + // TODO This is where defaults would be set. + _original_file = File (file)._data; } @@ -154,7 +155,7 @@ std::string Rules::dump () const out << " Settings\n"; for (const auto& item : _settings) - out << " " << item.first << " " << item.second << "\n"; + out << " " << item.first << "=" << item.second << "\n"; return out.str (); }