Bug #964
- Fixed bug #964, where the 'projects' command showed the wrong priority labels (thanks to Ali Mousavi).
This commit is contained in:
1
AUTHORS
1
AUTHORS
@@ -130,4 +130,5 @@ suggestions:
|
|||||||
Philipp Woelfel
|
Philipp Woelfel
|
||||||
Tuomas Toivola
|
Tuomas Toivola
|
||||||
Adam Gibbins
|
Adam Gibbins
|
||||||
|
Ali Mousavi
|
||||||
|
|
||||||
|
|||||||
@@ -9,6 +9,8 @@ Features
|
|||||||
+ The 'summary' report now uses 'project.indented' format.
|
+ The 'summary' report now uses 'project.indented' format.
|
||||||
|
|
||||||
Bugs
|
Bugs
|
||||||
|
+ Fixed bug #964, where the 'projects' command showed the wrong priority labels
|
||||||
|
(thanks to Ali Mousavi).
|
||||||
+ Fixed grammar in feedback string (thanks to Uli Martens).
|
+ Fixed grammar in feedback string (thanks to Uli Martens).
|
||||||
+ Addressed valgrind complaints (thanks to Bryce Harrington).
|
+ Addressed valgrind complaints (thanks to Bryce Harrington).
|
||||||
+ Removed default configuration value for the obsolete 'annotations' setting.
|
+ Removed default configuration value for the obsolete 'annotations' setting.
|
||||||
|
|||||||
@@ -109,9 +109,9 @@ int CmdProjects::execute (std::string& output)
|
|||||||
view.add (Column::factory ("string", STRING_COLUMN_LABEL_PROJECT));
|
view.add (Column::factory ("string", STRING_COLUMN_LABEL_PROJECT));
|
||||||
view.add (Column::factory ("string.right", STRING_COLUMN_LABEL_TASKS));
|
view.add (Column::factory ("string.right", STRING_COLUMN_LABEL_TASKS));
|
||||||
view.add (Column::factory ("string.right", STRING_CMD_PROJECTS_PRI_N));
|
view.add (Column::factory ("string.right", STRING_CMD_PROJECTS_PRI_N));
|
||||||
view.add (Column::factory ("string.right", STRING_CMD_PROJECTS_PRI_H));
|
|
||||||
view.add (Column::factory ("string.right", STRING_CMD_PROJECTS_PRI_M));
|
|
||||||
view.add (Column::factory ("string.right", STRING_CMD_PROJECTS_PRI_L));
|
view.add (Column::factory ("string.right", STRING_CMD_PROJECTS_PRI_L));
|
||||||
|
view.add (Column::factory ("string.right", STRING_CMD_PROJECTS_PRI_M));
|
||||||
|
view.add (Column::factory ("string.right", STRING_CMD_PROJECTS_PRI_H));
|
||||||
|
|
||||||
std::map <std::string, int>::iterator project;
|
std::map <std::string, int>::iterator project;
|
||||||
for (project = unique.begin (); project != unique.end (); ++project)
|
for (project = unique.begin (); project != unique.end (); ++project)
|
||||||
|
|||||||
Reference in New Issue
Block a user