mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-10 13:10:37 +02:00
Enhancement
- The 'diagnostics' command now reports libuuid details.
This commit is contained in:
parent
0ac6578899
commit
275132c1fa
2 changed files with 11 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
Features
|
Features
|
||||||
+ Stop consider new tasks after quitting a bulk change.
|
+ Stop consider new tasks after quitting a bulk change.
|
||||||
+ Removed deprecated 'fg:' and 'bg:' attributes.
|
+ Removed deprecated 'fg:' and 'bg:' attributes.
|
||||||
|
+ The 'diagnostics' command now reports libuuid details.
|
||||||
|
|
||||||
Bugs
|
Bugs
|
||||||
+ Fixed bug #1038, which prints blank lines with bulk changes and when the
|
+ Fixed bug #1038, which prints blank lines with bulk changes and when the
|
||||||
|
|
|
@ -140,6 +140,16 @@ int CmdDiagnostics::execute (std::string& output)
|
||||||
<< LUA_RELEASE
|
<< LUA_RELEASE
|
||||||
#else
|
#else
|
||||||
<< "n/a"
|
<< "n/a"
|
||||||
|
#endif
|
||||||
|
<< "\n";
|
||||||
|
|
||||||
|
out << " libuuid: "
|
||||||
|
#if defined (HAVE_UUID) and defined (HAVE_UUID_UNPARSE_LOWER)
|
||||||
|
<< "libuuid + uuid_unparse_lower"
|
||||||
|
#elif defined (HAVE_UUID) and !defined (HAVE_UUID_UNPARSE_LOWER)
|
||||||
|
<< "libuuid, no uuid_unparse_lower"
|
||||||
|
#else
|
||||||
|
<< "n/a"
|
||||||
#endif
|
#endif
|
||||||
<< "\n\n";
|
<< "\n\n";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue