Cleanup: Minor edits

This commit is contained in:
Paul Beckingham 2016-07-17 08:54:15 -04:00
parent 4f5d042f2b
commit 1e8709e0dc
3 changed files with 3 additions and 7 deletions

View file

@ -34,6 +34,7 @@
(thanks to Michael Meier). (thanks to Michael Meier).
- Fixed utf8 encoding in Taskwarrior integration hook - Fixed utf8 encoding in Taskwarrior integration hook
(thanks to Martin Boeker). (thanks to Martin Boeker).
- Added DOM support and a 'get' command.
------ current release --------------------------- ------ current release ---------------------------

View file

@ -7,8 +7,8 @@ tests, therefore it may harm your data. In fact, as a new project, it doesn't
have adequate tests to prove that everything works. We do not guarantee proper have adequate tests to prove that everything works. We do not guarantee proper
or even adequate functionality, performance or timely fixes. or even adequate functionality, performance or timely fixes.
We welcome bug reports from alpha-, beta- and release-level software, but We welcome bug reports from beta- and release-level software, but generally not
generally not development versions. If you are undaunted by this, please: development versions. If you are undaunted by this, please:
- Make proper backups. - Make proper backups.
- Expect broken and missing functionality. - Expect broken and missing functionality.

View file

@ -91,7 +91,6 @@ int CmdHelpUsage ()
// TODO clear // TODO clear
// TODO import // TODO import
// TODO undo // TODO undo
// TODO split
// TODO List all extensions. // TODO List all extensions.
@ -99,10 +98,6 @@ int CmdHelpUsage ()
} }
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// TODO Perhaps have a set of 'documents' to display, and a keyword index that
// maps to the the appropriate ones. Then display a list of any ambiguous
// requests, or the appropriate doc for single hits. Perhaps a 'See also'.
//
// TODO Should the CmdXxx functions themselves be responsible for providing both // TODO Should the CmdXxx functions themselves be responsible for providing both
// the command syntax and the help text? // the command syntax and the help text?
// A: Only if they are upgraded to objects. // A: Only if they are upgraded to objects.