diff --git a/ChangeLog b/ChangeLog index 14bff99ff..4b8fb7539 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,12 @@ + Fixed bug that was causing the 'completed' report to sort incorrectly. + Fixed bug #322 which failed to propagate rc overrides to shell commands. + Fixed redundant messages when exiting shell mode. + + Fixed bug #333 which failed to display the ID of a duplicated task (thanks + to Cory Donnelly). + + Fixed bug #332 where task complained that the 'recur_ind' custom report + column was invalid. It was misnamed in the documentation, which should + have read 'recurrence_indicator'. Also, the 'tag_indicator' column was + not mentioned anywhere (thanks to T. Charles Yun). ------ old releases ------------------------------ diff --git a/src/Config.cpp b/src/Config.cpp index c34654d95..b99a98acb 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -150,8 +150,8 @@ void Config::createDefaultRC (const std::string& rc, const std::string& data) << "#default.priority=M # Unless otherwise specified\n" << "default.command=list # Unless otherwise specified\n" << "\n" - << "# Fields: id,uuid,project,priority,entry,start,due,recur,recur_ind,age,\n" - << "# age_compact,active,tags,description,description_only\n" + << "# Fields: id,uuid,project,priority,entry,start,due,recur,recurrence_indicator,age,\n" + << "# age_compact,active,tags,tag_indicator,description,description_only\n" << "# Description: This report is ...\n" << "# Sort: due+,priority-,project+\n" << "# Filter: pro:x pri:H +bug limit:10\n"