Paul Beckingham
5489cc5a0c
Enhancement - task_completion.sh
...
- Applied Fredde's patch.
2009-07-12 22:54:02 -04:00
Paul Beckingham
8bf0f1176b
Enhancement - _config
...
- Merged Fredde's _config command with prior bug fix.
2009-07-12 22:48:38 -04:00
Paul Beckingham
e2da1d0a9a
Bug Fix - #205
...
- Fixed bug in modify and append that was erroneously reporting "No
changes" when a bulk update occurred.
- Added bug.bulk.t unit tests to cover this example.
2009-07-12 18:38:57 -04:00
Paul Beckingham
b02c11be0e
Bug Fix - #203
...
- Zero-length command line project was being compared to a zero-length
truncated task project, and always matching. Thanks to John Florian.
2009-07-12 14:27:26 -04:00
Paul Beckingham
ab3de212bf
Bug Fix
...
- Conditional compilation (via FEATURE_NCURSES_COLS) to either use
ncurses COLS and LINES global variables, or determine these from
the WINDOW structure.
2009-07-12 14:01:36 -04:00
Paul Beckingham
9fb5b34759
Code Cleanup
...
- Removed parse.t from .gitignore.
2009-07-12 13:49:24 -04:00
Paul Beckingham
1aa856d078
Merge branch '1.8.0' of git@github.com:pbeckingham/task into 1.8.0
2009-07-12 13:10:45 -04:00
Paul Beckingham
81df2f2b19
Bug Fix
...
- ncurses failed to build on Snow Leopard without this change.
2009-07-12 13:09:52 -04:00
Federico Hernandez
4511d87bc0
Added missing wait: attribute.
2009-07-10 23:43:23 +02:00
Paul Beckingham
4439c07516
Bug Fix - #196
...
- Fixed bug that caused an unexpected number of tasks to be displayed
by the next command.
2009-07-09 23:07:50 -04:00
Paul Beckingham
f790d52f62
Bug Fix - #194
...
- Fixed bug that causes tasks awaking from their waiting state to not
be written back to the pending file.
2009-07-09 22:16:58 -04:00
Paul Beckingham
c275ded443
Bug Fix - #195
...
- Fixed problem where the date 7/31/2009, when interpreted with
rc.dateformat:m/d/y, is truncated to 7/31/20.
2009-07-09 21:58:19 -04:00
Paul Beckingham
1900ee93f7
Merge branch '1.8.0' of git@github.com:pbeckingham/task into 1.8.0
2009-07-08 23:18:33 -04:00
Paul Beckingham
9095934bc0
Bug Fix - #171
...
- Fixed bug that caused redundant information to be displayed when the
"done" command was run. Thanks to John Florian.
2009-07-08 23:17:33 -04:00
Federico Hernandez
2d79e59647
From: John Florian <jflorian@doubledog.org>
...
Improved VIM Support
- added vim support for undo.data
- eliminated misc. whitespace per Bram Moolenaar's request
- added Updated time stamp per Bram Moolenaar's request
2009-07-09 02:29:58 +02:00
Paul Beckingham
84f48fd056
Bug Fix
...
- Updated the version number.
2009-07-08 08:55:41 -04:00
Paul Beckingham
bf3e69add6
Bug Fix #191
...
- Fixed bug that failed to anchor to end of string when searching for
"cal" or "itask", but instead matched on elements of the path,
like /usr/local/bin. Thanks to Eric Farris.
2009-07-08 08:41:29 -04:00
Paul Beckingham
844dd473e6
Bug Fix
...
- Unescaped - in file.
2009-07-06 20:41:10 -04:00
Federico Hernandez
6ca39b51b6
Merge branch '1.8.0' of git@github.com:pbeckingham/task into 1.8.0
2009-07-07 01:15:19 +02:00
Federico Hernandez
466cc4c362
Spell checking on man pages
2009-07-07 01:14:41 +02:00
Paul Beckingham
56a0997ecf
Bug Fix
...
- Next report once again shows up in the help output.
2009-07-06 19:06:04 -04:00
Federico Hernandez
d45ce09ccc
Added license information required for distributions
2009-07-07 00:59:51 +02:00
Paul Beckingham
98553e0196
Merge branch '1.8.0' of git@github.com:pbeckingham/task into 1.8.0
2009-07-06 18:52:19 -04:00
Paul Beckingham
75054617c4
Bug Fix
...
- Fixed bug found by John Florian that fails to delete all recurring
tasks, after task has confirmed that is what is wanted.
2009-07-06 18:51:18 -04:00
Federico Hernandez
3e5355bc39
Updated man pages for new release
2009-07-07 00:46:45 +02:00
Paul Beckingham
e8716e68ae
Bug Fix
...
- t.t.cpp was throwing an error because UUID is no longer set in Task::Task
and so the sample task t3 was 'empty', which doesn't sit well with the
round trip testing.
2009-07-06 01:24:35 -04:00
Paul Beckingham
cb1313779b
Bug Fix
...
- Fixed bug that caused '--' arguments to be swallowed during processing
for rc. parameters.
2009-07-06 00:58:05 -04:00
Paul Beckingham
8af0953b63
Vim Syntax Files (John Florian)
...
- Added the files on behalf of John Florian.
2009-07-06 00:34:47 -04:00
Paul Beckingham
51ad77e952
Bug Fix
...
- Fixed bug that was causing more non-unique UUIDs. Here are the
changes made:
- Task.cpp, tasks are no longer provided with a UUID in Task::Task.
This prevents the global context.task from being constructed before
srandom/srand is called.
- main.cpp, instead of srandom/srand (time (NULL)), it now uses
struct timeval tv_usec member, which has a micro-second granularity,
instead of time (NULL) which has a second granularity. When
"task add ..." is called in a unit test, several calls are made per
second, this the random number generator is seeded with the same
value.
- Modified the unit test to cover all 6 tasks created, instead of
5.
2009-07-05 23:59:11 -04:00
Federico Hernandez
28ab9e36cd
Vim syntax highlighting (thanks to John Florian)
2009-07-06 03:31:58 +02:00
Federico Hernandez
b5d8045eb3
Updated man pages and task help documentation
2009-07-06 03:08:41 +02:00
Paul Beckingham
4c6d58549d
Code Cleanup
...
- Working toward a clean build on Ubuntu.
2009-07-05 19:09:43 -04:00
Paul Beckingham
ebff1f48c2
Code Cleanup
...
- Working toward a clean build on Ubuntu.
2009-07-05 19:01:24 -04:00
Paul Beckingham
6e87e05e15
Enhancement
...
- Info report now includes number of undo transactions.
2009-07-05 13:51:30 -04:00
Paul Beckingham
fbeadfa313
Code Cleanup
...
- Removed unnecessary #include <iostream>
2009-07-05 13:48:09 -04:00
Paul Beckingham
e20e05ab54
Bug Fix
...
- Now allows abbreviations of aliases.
- No longer truncates commands after --.
2009-07-05 13:26:53 -04:00
Paul Beckingham
f2af6cc2dd
Bug Fix
...
- Improved the misleading confirmation for bulk changes. Now displays
the task id and description before enumerating differences.
2009-07-05 12:43:03 -04:00
Paul Beckingham
9d85a0e0e2
Merge branch '1.8.0' of git@github.com:pbeckingham/task into 1.8.0
2009-07-05 11:33:45 -04:00
Paul Beckingham
519ee9a7a9
Code Cleanup
...
- Bumped version to 1.8.0.beta1.
- Fixed compiler warning on Ubuntu.
2009-07-05 11:33:02 -04:00
Federico Hernandez
d5d4de403f
Added information about cygwin packaging
2009-07-05 17:29:40 +02:00
Paul Beckingham
6a55549588
Unit Tests - export
...
- Corrected unit tests after a change was made to the export format,
to accomodate 1.8.0 -> 1.7.1 export/import downgrade.
2009-07-05 00:58:27 -04:00
Paul Beckingham
d63d396386
Unit Tests - alias
...
- Implemented unit tests to verify alias -> command, and alias ->
alias -> command functionality.
2009-07-05 00:46:31 -04:00
Paul Beckingham
f7f8b1aee5
Bug Fix
...
- Fixed bug that generated an export file that was incompatible with
task 1.7.1 import. Now there is a smooth migration path back to
1.7.1 in case 1.8.0 proves unacceptable.
2009-07-05 00:07:24 -04:00
Paul Beckingham
605eb397fc
Bug Fix
...
- Fixed bug whereby rc: and rc. processing ignored the -- argument.
2009-07-05 00:06:41 -04:00
Paul Beckingham
6f318ecdcf
Documentation Update
...
- ChangeLog is now completely up to date.
2009-07-04 23:19:20 -04:00
Federico Hernandez
0d349bab92
Added information about cal arguments
2009-07-05 02:18:00 +02:00
Federico Hernandez
131f6687ea
Enhancement:
...
- Completion list for commands is now compiled dynamicaly using a task command.
- Completion now also works for direct task manipulations with IDs
eg task 3 -FOO pro:ERNIE or task 2 done
2009-07-05 00:43:34 +02:00
Paul Beckingham
6612f3e276
Enhancement - aliases
...
- Implemented command aliases.
2009-07-04 14:33:44 -04:00
Paul Beckingham
4af2b2dc13
Unit Tests - color.t
...
- Implemented tests for round-trip color name <--> code testing.
2009-07-04 14:11:10 -04:00
Paul Beckingham
69e839724d
Documentation Update
...
- Removed a comment for 'ncurses' that looked a little too much like
sarcasm.
2009-07-04 12:32:45 -04:00