Bug Fix - #401
- Fixed bug that ignored the search.case.sensitive configuration setting when filtering on project names (thank to John Florian).
This commit is contained in:
@@ -18,6 +18,8 @@
|
|||||||
message when called without an ID.
|
message when called without an ID.
|
||||||
+ Fixed bug #402 which failed compilation on Arch Linux (thanks to
|
+ Fixed bug #402 which failed compilation on Arch Linux (thanks to
|
||||||
Johannes Schlatow).
|
Johannes Schlatow).
|
||||||
|
+ Fixed bug #401 that ignored the search.case.sensitive configuration
|
||||||
|
setting when filtering on project names (thank to John Florian).
|
||||||
|
|
||||||
------ old releases ------------------------------
|
------ old releases ------------------------------
|
||||||
|
|
||||||
@@ -83,8 +85,7 @@
|
|||||||
+ Added a new 'task-color' man page detailing how to set up and use color in
|
+ Added a new 'task-color' man page detailing how to set up and use color in
|
||||||
task.
|
task.
|
||||||
+ Added feature #176, which allows for configurable case-sensitivity for
|
+ Added feature #176, which allows for configurable case-sensitivity for
|
||||||
keyword
|
keyword searches and substitutions (thanks to John Florian).
|
||||||
searches and substitutions (thanks to John Florian).
|
|
||||||
+ Task can now use an alternate tag indicator by setting the tag.indicator
|
+ Task can now use an alternate tag indicator by setting the tag.indicator
|
||||||
configuration variable to something other than the default of +.
|
configuration variable to something other than the default of +.
|
||||||
+ Task can now use an alternate active indicator by setting the
|
+ Task can now use an alternate active indicator by setting the
|
||||||
|
|||||||
@@ -537,7 +537,7 @@ bool Att::match (const Att& other) const
|
|||||||
if (other.mValue.length () < mValue.length ())
|
if (other.mValue.length () < mValue.length ())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (!compare (mValue, other.mValue.substr (0, mValue.length ())))
|
if (!compare (mValue, other.mValue.substr (0, mValue.length ()), (bool) case_sensitive))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user