- Fixed bug #1128, which caused 'age' columns to be right-justified instead of
  left-justified (thanks to Steve Rader).
This commit is contained in:
Paul Beckingham 2012-12-22 11:06:38 -05:00
parent 5d0e4249e3
commit 9b63fd6068
2 changed files with 5 additions and 3 deletions

View file

@ -14,11 +14,11 @@ Features
string for the column name (thanks to Uli Martens). string for the column name (thanks to Uli Martens).
+ Added Feature #1069, which gives a clearer error when a UDA + Added Feature #1069, which gives a clearer error when a UDA
is added without the uda.<uda-name>.type variable. is added without the uda.<uda-name>.type variable.
+ Added Feature #1099, which supports the 'color.uda.<uda-name>' color rule
(thanks to Florian Hollerweger).
+ Added Feature #1124, which provides a '_show' command that displays all + Added Feature #1124, which provides a '_show' command that displays all
configuration defaults and settings, for use by third-party software (thanks configuration defaults and settings, for use by third-party software (thanks
to Jake Bell). to Jake Bell).
+ Added Feature #1099, which supports the 'color.uda.<uda-name>' color rule
(thanks to Florian Hollerweger).
+ Added feature #1147, applying patch to display duration of each activity + Added feature #1147, applying patch to display duration of each activity
session (thanks to Justin Forest). session (thanks to Justin Forest).
+ The 'projects' command now outputs abstract parents and reduces + The 'projects' command now outputs abstract parents and reduces
@ -56,6 +56,8 @@ Bugs
pending task (thanks to Aikido Guy). pending task (thanks to Aikido Guy).
+ Fixed bug #1123, which caused the undo of a 'log' command to corrupt the data + Fixed bug #1123, which caused the undo of a 'log' command to corrupt the data
file (thanks to Tim None). file (thanks to Tim None).
+ Fixed bug #1128, which caused 'age' columns to be right-justified instead of
left-justified (thanks to Steve Rader).
+ Fixed bug #1150, which referenced deprecated features in the tutorial man + Fixed bug #1150, which referenced deprecated features in the tutorial man
page (thanks to Benjamin Weber). page (thanks to Benjamin Weber).
+ Improved hyphenation by splitting on commas (even if no whitespace after). + Improved hyphenation by splitting on commas (even if no whitespace after).

View file

@ -178,7 +178,7 @@ void ColumnDate::render (
lines.push_back ( lines.push_back (
color.colorize ( color.colorize (
rightJustify ( leftJustify (
Duration (now - date).formatCompact (), width))); Duration (now - date).formatCompact (), width)));
} }
} }