- Added task server details to the 'diagnostics' command output.
- Added new configuration variables to the 'show' command.
- rc.taskd.server specifies host:port of the task server.
- rc.taskd.credentials specifies user credentials for the task server.
- rc.taskd.certificate specifies the task server certificate.
- rc.debug.tls shows TLS log information, for debugging.
This commit is contained in:
Paul Beckingham 2013-05-11 16:49:39 -04:00
parent a973ccf8f2
commit 6d2cbd77f8
4 changed files with 11 additions and 2 deletions

View file

@ -14,7 +14,7 @@ Features
+ #1256 Supports default values for UDA fields (thanks to Thomas Sullivan). + #1256 Supports default values for UDA fields (thanks to Thomas Sullivan).
+ Stores un-synched transactions in <data.location>/backlog.data. + Stores un-synched transactions in <data.location>/backlog.data.
+ Adds a new 'synchronize' command to sync data with a task server. + Adds a new 'synchronize' command to sync data with a task server.
+ Adds a new 'sync' verbosity token, which will reminds when a backlog builds + Adds a new 'sync' verbosity token, which will remind when a backlog builds
up and needs a sync. up and needs a sync.
+ Supports IPv4 and IPv6 server addresses. + Supports IPv4 and IPv6 server addresses.
+ Began fr-FR localization. + Began fr-FR localization.

5
NEWS
View file

@ -15,7 +15,10 @@ New commands in taskwarrior 2.3.0
New configuration options in taskwarrior 2.3.0 New configuration options in taskwarrior 2.3.0
- - 'taskd.server' specifies host:port of the task server.
- 'taskd.credentials' specifies user credentials for the task server.
- 'taskd.certificate' specifies the task server certificate.
- 'debug.tls' shows TLS log information, for debugging.
Newly deprecated features in taskwarrior 2.3.0 Newly deprecated features in taskwarrior 2.3.0

View file

@ -217,6 +217,10 @@ int CmdDiagnostics::execute (std::string& output)
<< context.config.get ("taskd.server") << context.config.get ("taskd.server")
<< "\n"; << "\n";
out << " Cert: "
<< context.config.get ("taskd.certificate")
<< "\n";
out << " Locking: " out << " Locking: "
<< (context.config.getBoolean ("locking") << (context.config.getBoolean ("locking")
? STRING_CMD_DIAG_ENABLED ? STRING_CMD_DIAG_ENABLED

View file

@ -133,6 +133,7 @@ int CmdShow::execute (std::string& output)
" dateformat.info" " dateformat.info"
" dateformat.report" " dateformat.report"
" debug" " debug"
" debug.tls"
" default.command" " default.command"
" default.due" " default.due"
" default.priority" " default.priority"
@ -187,6 +188,7 @@ int CmdShow::execute (std::string& output)
" shell.prompt" " shell.prompt"
" tag.indicator" " tag.indicator"
" taskd.server" " taskd.server"
" taskd.certificate"
" taskd.credentials" " taskd.credentials"
" undo.style" " undo.style"
" urgency.active.coefficient" " urgency.active.coefficient"