doing 1.0.93 → 2.0.6.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHORS +19 -0
  3. data/CHANGELOG.md +616 -0
  4. data/COMMANDS.md +1181 -0
  5. data/Gemfile +2 -0
  6. data/Gemfile.lock +110 -0
  7. data/LICENSE +23 -0
  8. data/README.md +15 -699
  9. data/Rakefile +79 -0
  10. data/_config.yml +1 -0
  11. data/bin/doing +1055 -494
  12. data/doing.gemspec +34 -0
  13. data/doing.rdoc +1839 -0
  14. data/example_plugin.rb +209 -0
  15. data/generate_completions.sh +5 -0
  16. data/img/doing-colors.jpg +0 -0
  17. data/img/doing-printf-wrap-800.jpg +0 -0
  18. data/img/doing-show-note-formatting-800.jpg +0 -0
  19. data/lib/completion/_doing.zsh +203 -0
  20. data/lib/completion/doing.bash +449 -0
  21. data/lib/completion/doing.fish +329 -0
  22. data/lib/doing/array.rb +8 -0
  23. data/lib/doing/cli_status.rb +70 -0
  24. data/lib/doing/colors.rb +136 -0
  25. data/lib/doing/configuration.rb +312 -0
  26. data/lib/doing/errors.rb +109 -0
  27. data/lib/doing/hash.rb +31 -0
  28. data/lib/doing/hooks.rb +59 -0
  29. data/lib/doing/item.rb +155 -0
  30. data/lib/doing/log_adapter.rb +344 -0
  31. data/lib/doing/markdown_document_listener.rb +174 -0
  32. data/lib/doing/note.rb +59 -0
  33. data/lib/doing/pager.rb +95 -0
  34. data/lib/doing/plugin_manager.rb +208 -0
  35. data/lib/doing/plugins/export/csv_export.rb +48 -0
  36. data/lib/doing/plugins/export/html_export.rb +83 -0
  37. data/lib/doing/plugins/export/json_export.rb +140 -0
  38. data/lib/doing/plugins/export/markdown_export.rb +85 -0
  39. data/lib/doing/plugins/export/taskpaper_export.rb +34 -0
  40. data/lib/doing/plugins/export/template_export.rb +141 -0
  41. data/lib/doing/plugins/import/cal_to_json.scpt +0 -0
  42. data/lib/doing/plugins/import/calendar_import.rb +76 -0
  43. data/lib/doing/plugins/import/doing_import.rb +144 -0
  44. data/lib/doing/plugins/import/timing_import.rb +78 -0
  45. data/lib/doing/string.rb +348 -0
  46. data/lib/doing/symbol.rb +16 -0
  47. data/lib/doing/time.rb +18 -0
  48. data/lib/doing/util.rb +186 -0
  49. data/lib/doing/version.rb +1 -1
  50. data/lib/doing/wwid.rb +1868 -2349
  51. data/lib/doing/wwidfile.rb +117 -0
  52. data/lib/doing.rb +43 -3
  53. data/lib/examples/commands/autotag.rb +63 -0
  54. data/lib/examples/commands/wiki.rb +81 -0
  55. data/lib/examples/plugins/hooks.rb +22 -0
  56. data/lib/examples/plugins/say_export.rb +202 -0
  57. data/lib/examples/plugins/templates/wiki.css +169 -0
  58. data/lib/examples/plugins/templates/wiki.haml +27 -0
  59. data/lib/examples/plugins/templates/wiki_index.haml +18 -0
  60. data/lib/examples/plugins/wiki_export.rb +87 -0
  61. data/lib/templates/doing-markdown.erb +5 -0
  62. data/man/doing.1 +964 -0
  63. data/man/doing.1.html +711 -0
  64. data/man/doing.1.ronn +600 -0
  65. data/package-lock.json +3 -0
  66. data/rdoc_to_mmd.rb +42 -0
  67. data/rdocfixer.rb +13 -0
  68. data/scripts/generate_bash_completions.rb +211 -0
  69. data/scripts/generate_fish_completions.rb +204 -0
  70. data/scripts/generate_zsh_completions.rb +168 -0
  71. metadata +82 -7
  72. data/lib/doing/helpers.rb +0 -191
  73. data/lib/doing/markdown_export.rb +0 -16
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 380b90b3b544c9473bf4d73309178d7701a87f783ccc57eb8541f337d2e569f9
4
- data.tar.gz: 967d8fe4ece694713d1a3f739b39bb7c2f5507f19a80e6245eb996f7e2bdbc31
3
+ metadata.gz: 4d4fddc64823d36cba4ab47827377ed1c2ce4cafed9099cf55c2a7300ee40978
4
+ data.tar.gz: c7b328db1f957ad8ecef57fae7eeb4b9fc69d6b100b64ed4e829207dc6315a1e
5
5
  SHA512:
6
- metadata.gz: bd18bac215da59834c896b443d9645bc0d2bc99c37296574feb7c5cba5e683b5bb9d253b16f320cfd4e7ed0de8bab5cd12bd4eeaec42098d5be36652ebd1cae1
7
- data.tar.gz: 50947a9b30c7da30905da2bc1dd194f9489a172f379cf734f3f5a1fdae9df0c13f8a0655ca73ea054a44d5fa86d4958c339a0d15a8864d1e5b43ba7693711715
6
+ metadata.gz: 34bf1cf28cec078c5dde53e0917a6c01e4a0fb614f1858914bb51f6e2f92cd69ffee635b3175e6957eea660d328c22072063d1d1dad87a9082de1102b81743f0
7
+ data.tar.gz: 0ed7bd998d774e0d09245513bdc8cf26dbacf5610623415ebc9269ed7d9d5925e8313e2cde7a87b10a781603410d9512017bd02c578b8c3d6340c72507dac4c3
data/AUTHORS ADDED
@@ -0,0 +1,19 @@
1
+ Brett Terpstra
2
+ Daniel Schildt
3
+ Thomas Bradley
4
+ zugzug
5
+ Ben Tsai
6
+ Gabe Anzelini
7
+ Krzysztof Blacha
8
+ vinney cavallo
9
+ Benjamin Wuethrich
10
+ Michael Johnston
11
+ Pavlos Vinieratos
12
+ Sean M. Collins
13
+ Dmitry M
14
+ Yasuhito Takamiya
15
+ Zearin
16
+ gustafekeberg
17
+ led
18
+ Guillaume BROGI
19
+ Matte Edens
data/CHANGELOG.md ADDED
@@ -0,0 +1,616 @@
1
+ ### 2.0.6.pre
2
+
3
+ #### NEW
4
+
5
+ - If `doing view` and `doing show` are confused, offer option to run the other command
6
+ - `doing completion` to generate shell completion scripts for zsh, bash, and fish
7
+
8
+ #### IMPROVED
9
+
10
+ - More command line feedback
11
+ - Error formatting and output
12
+ - Add subcommand completion for `doing help` in fish shell
13
+ - Logging and error handling
14
+
15
+ #### FIXED
16
+
17
+ - Remove `--[no]` from non-negatable options
18
+ - `doing plugins -t export -c` not outputting columns
19
+ - View config not respecting tag_order setting
20
+
21
+ ### 2.0.5.pre
22
+
23
+ #### NEW
24
+
25
+ - Add 'timer_format' config with 'human' option for tag totals
26
+
27
+ ### 2.0.3.pre
28
+
29
+ #### NEW
30
+
31
+ - Import calendar events from Calendar.app on macOS
32
+ - `doing config --update` will add newly added config keys to your existing config file (handy with plugins that define their own config keys)
33
+ - Add %idnote template placeholder for "indented note" (entire note indented one tab)
34
+ - (loosely printf-esque) formatting options for `%note` template placeholder
35
+ - --interactive mode to act on results of `doing grep`
36
+ - Printf formatting for title and date
37
+ - Doing import plugin
38
+ - Plugins command to list plugins
39
+ - --dump option for `doing config` to output a key.path config key as JSON, YAML, or raw output
40
+ - --no-color global flag
41
+ - Log levels, with --quiet and --verbose global flags
42
+ - Convert CLI messaging to Logger-based system
43
+ - Use DOING_DEBUG, DOING_QUIET, or DOING_LOG_LEVEL environment variables to specify log levels before configuration is read
44
+ - Hooks, register plugins to run based on events
45
+ - --[no-]pager and paginate: config option to enable paging output
46
+ - Never_finish and never_time config options to prevent items matching tags/sections from ever receiving @done (never_finish) or @done timestamp (never_time) - More configuration refactoring
47
+
48
+ #### IMPROVED
49
+
50
+ - Timeline output formatting
51
+ - Major plugin architecture refactoring
52
+ - Fix regression where notes stored in doing file were outdented, breaking TaskPaper compatibility
53
+ - When accepting a date filter, allow end date to be in the future
54
+ - If an edited item has no changes, don't update/output notification - Don't start with query when using grep --interactive
55
+ - Select menu item formatting
56
+ - Output wrapping for terminal display
57
+ - Redirect warn to STDOUT when run with --stdout
58
+ - Fish autocomplete
59
+ - `--config_file` global flag deprected, now uses $DOING_CONFIG environment variable so that config overrides can be available before the initial configuration is run
60
+ - When --stdout or not a TTY, no color or output formatting
61
+ - Highlight tags when showing results. Because it looks nice.
62
+ - --tag and --search for `doing note`
63
+ - View/section fuzzy guessing
64
+ - Error reporting
65
+ - If `doing config` finds local doingrc files, offers a menu for editing
66
+ - More filtering options for `doing finish`
67
+ - Doing done accepts --unfinished flag to finish last entry not marked @done (instead of last entry)
68
+ - Doing done accepts --note flag to append a note when completing an entry
69
+
70
+ #### FIXED
71
+
72
+ - Multi-word unquoted arguments to add_section being truncated
73
+ - Show --from with date span
74
+ - Handling of arbitrary times in natural language dates
75
+ - Backward scope of since command with arbitrary times
76
+ - `doing rotate --keep` wasn't respecting keep value
77
+
78
+ ### 1.0.93
79
+
80
+ - Gemfile error
81
+
82
+ ### 1.0.91
83
+
84
+ - "taskpaper" format available for all output options
85
+ - "markdown" format available for all output commands (GFM-style task list, customizable template)
86
+ - `--rename` option for tag command to replace tags
87
+ - `--regex` option for tag command, for --remove and --rename
88
+
89
+ ### 1.0.90
90
+
91
+ - Minor fix for shell command in doing select
92
+ - Fix for doing finish --auto when matched item is last in list
93
+ - doing finish --auto now pulls from all sections, not just the section of the target entry
94
+
95
+ ### 1.0.89
96
+
97
+ - Pretty print JSON output
98
+ - --no-menu option for select command to use --query as a filter and act on matching entries without displaying menu
99
+
100
+ ### 1.0.88
101
+
102
+ - Add --before and --after time search to yesterday command
103
+ - Add --before and --after date search to search/grep command
104
+ - Add --tag_order to yesterday command
105
+
106
+ ### 1.0.87
107
+
108
+ - Add leading spaces to make %shortdate align properly, at least for the last week
109
+ - Add --tag, --bool, and --search to view command
110
+ - Add --before and --after date search to view command
111
+ - Add --before and --after date search to show command
112
+ - Add --before and --after time search to today command
113
+ - Add --search filter to show command
114
+ - More alignment/formatting fixes for %shortdate
115
+
116
+ ### 1.0.86
117
+
118
+ - Add `count` config option for templates->recent
119
+
120
+ ### 1.0.85
121
+
122
+ - Fix --auto for finish command
123
+ - Add --before DATE_STRING to archive and rotate commands
124
+ - Only create on rotate file per day, merge new entries into existing file
125
+
126
+ ### 1.0.84
127
+
128
+ - `rotate` command for archiving entries to new file
129
+ - Fixed current_section config key not being honored in some commands
130
+
131
+ ### 1.0.83
132
+
133
+ - Fixes for `doing view` options, additional config keys for views
134
+
135
+ ### 1.0.82
136
+
137
+ - Bugfixes
138
+
139
+ ### 1.0.81
140
+
141
+ - fzf menu improvements
142
+ - allow multiple selections `doing select` action menu
143
+
144
+ ### 1.0.80
145
+
146
+ - Convert all menus to fzf screens
147
+
148
+ ### 1.0.79
149
+
150
+ - Gem missing fzf
151
+ - Wildcard tag removal using `doing select -t "tag*" -r`
152
+ - fzf menu display polish
153
+
154
+ ### 1.0.78
155
+
156
+ - If no action is specified with select command, an interactive menu is
157
+ presented
158
+ - add output action select command with formatting and save options
159
+ - Don't link URLs in html output that don't have a protocol
160
+
161
+ ### 1.0.76
162
+
163
+ - Refine editing multiple selections (doing select)
164
+
165
+ ### 1.0.74
166
+
167
+ - Add --tag and --search flags to tag command to tag all entries matching search terms
168
+ - Add since command, which is the same as `doing on tuesday to now` but `doing since tuesday` just feels more intuitive.
169
+
170
+ ### 1.0.73
171
+
172
+ - Fix for timeline output
173
+
174
+ ### 1.0.72
175
+
176
+ - Add `doing select` to show menu of all tasks, searchable with fuzzy matching and the ability to perform certain tasks on multiple selections.
177
+
178
+ ### 1.0.71
179
+
180
+ - Fix for template command not working at all
181
+
182
+ ### 1.0.70
183
+
184
+ - Fix for `doing done --took 30m` setting the wrong @done timestamp when completing previous item
185
+
186
+ ### 1.0.69
187
+
188
+ - Add `--unfinished` option to finish and cancel commands
189
+
190
+ ### 1.0.68
191
+
192
+ - Fix error in `doing show --sort` argument parsing
193
+
194
+ ### 1.0.67
195
+
196
+ - Gem packaging error
197
+
198
+ ### 1.0.66
199
+
200
+ - Fix for some long flags being interpreted as arrays instead of strings
201
+ - More flexible boolean specification, can be: all, and, any, or, not, or none
202
+ - Fix for archive command not removing original entries from archived section
203
+
204
+ ### 1.0.65
205
+
206
+ - Prevent duplicates/overlapping entries when importing
207
+
208
+ ### 1.0.64
209
+
210
+ - Initial import feature for Timing.app reports
211
+
212
+ ### 1.0.63
213
+
214
+ - README updates
215
+ - If `doing done --took=X` results in completion date greater than current time, use current time as completion date and backdate the entry's timestamp to fit
216
+
217
+ ### 1.0.62
218
+
219
+ - Fix: `doing done` with `--took=` and without `--back=` should set end time to start date plus `--took` value
220
+
221
+ ### 1.0.61
222
+
223
+ - Add --search filter to `doing archive`
224
+
225
+ ### 1.0.60
226
+
227
+ #### FIXED
228
+
229
+ - Default value for `doing again --bool` was ALL, should be AND
230
+
231
+ ### 1.0.59
232
+
233
+ #### IMPROVED
234
+
235
+ - Improvements to `doing again --tag=` functionality
236
+
237
+ ### 1.0.58
238
+
239
+ #### IMPROVED
240
+
241
+ - Finish previous task if `doing again` and not already completed
242
+
243
+ ### 1.0.57
244
+
245
+ #### IMPROVED
246
+
247
+ - Unit tests
248
+
249
+ ### 1.0.56
250
+
251
+ #### IMPROVED
252
+
253
+ - Tag command tests
254
+
255
+ #### FIXED
256
+
257
+ - Doing not reading per-directory .doingrc configs
258
+
259
+ ### 1.0.55
260
+
261
+ #### NEW
262
+
263
+ - Added config_editor_app setting to config so you can have
264
+ - A parenthetical at the end of an entry title becomes an attached
265
+ - `--editor` flag for `doing last` to edit last entry
266
+ - `--tag=` flag to filter `doing last` by tag
267
+ - `--search=` to filter `doing last` by text/regex search
268
+ - `--search=` for `doing finish`, finish last X entries matching search
269
+ - Add `tags_color` as a primary config key to highlight @tags in displayed entries
270
+
271
+ #### IMPROVED
272
+
273
+ - Clean up command line help
274
+ - --editor improvements for all commands that use it
275
+
276
+ #### FIXED
277
+
278
+ - Doing finish --took throwing error
279
+ - Doing tag --remove was adding tags if they didn't exist
280
+ - Creating a meanwhile task with a note resulted in an error
281
+
282
+ ### 1.0.54
283
+
284
+ #### FIXED
285
+
286
+ - Bugfix for `finish --tag=TAG`
287
+
288
+ ### 1.0.53
289
+
290
+ #### NEW
291
+
292
+ - `--tag` and `--bool` filtering for again/resume, cancel
293
+ - `--in` flag for `again`/`resume` to specify to which section the new
294
+ - Finish command accepts `--tag=` flag, finishing last entry
295
+ - `doing cancel` to end X tasks without completion date (alias for
296
+
297
+ #### IMPROVED
298
+
299
+ - Add --no-color option to view command
300
+ - Add --tag to show for compatibility
301
+
302
+ #### FIXED
303
+
304
+ - Error running finish without --tag flag
305
+ - --archive flag on finish, done, and cancel causing error
306
+
307
+ ### 1.0.52
308
+
309
+ #### NEW
310
+
311
+ - Finish command accepts `--tag=` flag, finishing last entry
312
+ - `doing cancel` to end X tasks without completion date (alias for
313
+
314
+ #### FIXED
315
+
316
+ - --archive flag on finish, done, and cancel causing error
317
+
318
+ ### 1.0.49
319
+
320
+ - Fix for missing date on @done tags
321
+
322
+ ### 1.0.48
323
+
324
+ - Fix confirmation dialog for `doing tag -a -c 0` (autotag all)
325
+
326
+ ### 1.0.47
327
+
328
+ - Remove check for file existence before attempting to run run_after script
329
+ - Don't autotag entries restarted with `again/resume`
330
+ - Add short flags (`-b`) for `--back` on all commands that support it
331
+
332
+ ### 1.0.46
333
+
334
+ - Code cleanup
335
+
336
+ ### 1.0.45
337
+
338
+ - Only execute run_after script if changes are written
339
+
340
+ ### 1.0.44
341
+
342
+ - Remove unnecessary console logging
343
+
344
+ ### 1.0.43
345
+
346
+ - Add `again` command to repeat last entry without @done tag
347
+ - Add `run_after` configuration option to execute external script after any change
348
+
349
+ ### 1.0.42
350
+
351
+ - Fix note indentation in doing file
352
+
353
+ ### 1.0.41
354
+
355
+ - Fix for repeated backreferences in tag transform
356
+
357
+ ### 1.0.40
358
+
359
+ - Add `--tag_sort` to all subcommands with `--totals` option
360
+
361
+ ### 1.0.39
362
+
363
+ - Tag transforms
364
+ - Option to sort tags by name in --totals
365
+
366
+ ### 1.0.33
367
+
368
+ - Gem dependency updates
369
+
370
+ ### 1.0.30
371
+
372
+ - Fix for array comparison error
373
+
374
+ ### 1.0.29
375
+
376
+ - Bugfixes
377
+
378
+ ### 1.0.28
379
+
380
+ - Global option `-x` to skip autotags and default_tags from global/local .doingrc
381
+ - Remove extra spaces when creating entry
382
+
383
+ ### 1.0.27
384
+
385
+ - More graceful writing of default config (~/.doingrc) on first run
386
+ - Repaired testing setup. Needs moar tests.
387
+
388
+ ### 1.0.26
389
+
390
+ - Add `--at` flag for `doing done`, e.g. `doing done --at=1:35pm --took=15m A new task I already finished`
391
+ - Allow decimal quantities when using natural language for hours or days, e.g. `--took=2.5h`
392
+ - Add `did` as a synonym for `done` subcommand
393
+
394
+ ### 1.0.25
395
+
396
+ - Smarter method of getting user $HOME
397
+ - Improved avoiding duplicate tags when autotagging
398
+ - Improved autotag reporting
399
+
400
+ ### 1.0.24
401
+
402
+ - `doing note` operates on whatever is most recent, not just the last note in Currently
403
+ - `doing tag` with no count specified operates on most recent entry in any section, not just Currently
404
+ - `doing tag` with a count greater than 1 requires a section to be specified
405
+ - Improved results reporting for `doing tag`
406
+ - When removing tag do a whole-word match to avoid removing part of a longer tag
407
+
408
+ ### 1.0.23
409
+
410
+ - Apply default_tags after autotagging to avoid tags triggering tags
411
+ - Set `doing recent` to default to All sections instead of Currently
412
+ - Fix error in time reporting
413
+ - improved y/n prompt for TTY
414
+
415
+ ### 1.0.22
416
+
417
+ - Fix handling of "local" config files, allowing per-project configurations
418
+ - Allow cascading of local config files
419
+ - Allow `doing today` and `yesterday` to specify a section
420
+
421
+ ### 1.0.21
422
+
423
+ - Add legitimate regex search capabilities
424
+ - Synonyms for grep (search) and now (next)
425
+ - CSS fix
426
+
427
+ ### 1.0.20
428
+
429
+ - Rewrite HTML export templates with responsive layout and typography
430
+ - Ability to customize the HTML output using HAML and CSS
431
+ - New command `doing templates` to export default templates for HAML and CSS
432
+ - New config options under `html_template` for `haml` and `css`
433
+
434
+ ### 1.0.19
435
+
436
+ - For `doing note -e` include the entry title so you know what you're adding a note to
437
+ - For any other command that allows `-e` include a comment noting that anything after the first line creates a note
438
+ - Ignore # comments when parsing editor results
439
+ - Add a .md extension to the temp file passed to the editor so you can take advantage of any syntax highlighting and other features in your editor
440
+
441
+ ### 1.0.18
442
+
443
+ - Fix `undefined method [] for nil class` error in `doing view`
444
+ - Loosened up the template color resetting a bit more
445
+
446
+ ### 1.0.17
447
+
448
+ - Add `--stdout` global option to send reporting to STDOUT instead of STDERR (for use with LaunchBar et al)
449
+
450
+ ### 1.0.16
451
+
452
+ - Fixes overzealous color resetting
453
+
454
+ ### 1.0.15
455
+
456
+ - CLI/text totals block was outputting when HTML output was selected
457
+ - Have all template colors reset bold and background automatically when called
458
+
459
+ ### 1.0.14
460
+
461
+ Catching up on the changelog. Kind of. A lot has happened, mostly fixes.
462
+
463
+ - Fish completion
464
+ - views and sections subcommands have -c option to output single column
465
+ - Fix html title when tag_bool is NONE
466
+ - Fix @from tagging missing closing paren
467
+ - Fix tag coloring
468
+
469
+ ### 1.0.13
470
+
471
+ - Fix gsub error in doing meanwhile
472
+
473
+ ### 1.0.8pre
474
+
475
+ * JSON output option to view commands
476
+ * Added autotagging to tag command
477
+ * date filtering, improved date language
478
+ * added doing on command
479
+ * let view templates define output format (csv, json, html, template)
480
+ * add `%chompnote` template variable (item note with newlines and extra whitespace stripped)
481
+
482
+ ### 1.0.7pre
483
+
484
+ * fix for `-v` option
485
+ * Slightly fuzzier searching in the grep command
486
+ * cleaner exits, `only_timed` key for view configs
487
+ * making the note command append new notes better, and load existing notes in the editor if `-e` is called
488
+ * handle multiple tag input in `show` tag filter
489
+ * Global tag operations, better reporting
490
+
491
+ ### 1.0.4pre
492
+
493
+ * Improved HTML output
494
+ * `--only_timed` option for view/show commands that only outputs items with elapsed timers (interval between start and done dates)
495
+ * add seconds for timed items in CSV output, run `--only_timed` before chopping off `--count #`
496
+ * fix for 1.8.7 `Dir.home` issue
497
+ * version bump
498
+ * don't show tag totals with zero times
499
+ * zsh completion for doing
500
+ * HTML styling
501
+ * `--only_timed` option
502
+ * added zsh completion file to `README.md`
503
+ * add zsh completion file
504
+
505
+ ### 1.0.3pre
506
+
507
+ * `done` command: making `--took` modify start time if `--back` isn't specified
508
+ * Cleaned up time totals, improved HTML output
509
+ * fixes for `--back` and `--took` parsing
510
+ * Adding more complete terminal reporting to archive command
511
+
512
+ ### 1.0.0pre
513
+
514
+ * Skipped ahead in the version numbering. Because I don't care.
515
+ * Added a `note` command and `--note` flags for entry creation commands
516
+
517
+ * * *
518
+
519
+ ### 0.2.6pre
520
+
521
+ * `--totals`, `--[no-]times`, `--output [csv,html]` options for `yesterday` command.
522
+ * Add tests for Darwin to hide OS X-only features on other systems
523
+ * `-f` flag to `now` command for finishing last task when starting a new one (Looks back for the last unfinished task in the list)
524
+ * `--took` option for `done` and `finish` for specifying intervals from the start date for the completion date
525
+ * Basic command line reporting
526
+ * `--auto` flag for `finish` and `done` that will automatically set the completion time to 1 minute before the next start time in the list. You can use it retroactively to add times to sequential todos.
527
+ * `doing grep` for searching by text or regex
528
+
529
+ ### 0.2.5
530
+
531
+ * Default to showing times #26, show totals even if no tags exist #27, fix indentation #29
532
+ * Add section label to archived tasks automatically, excepting `Currently` section
533
+ * Today outputs and backdate for finish
534
+ * HTML styling and fix for 1.8.7 HAML errors
535
+ * Look, HTML output! (`--output html`)
536
+ * Also, `--output csv`
537
+ * let doing `archive` function on all sections
538
+ * option to exclude date from _@done_,
539
+ * output newlines in sections and views
540
+ * Flagging (`doing mark`)
541
+ * fix for view/section guess error
542
+ * Adding tag filtering to archive command (`doing archive \@done`)
543
+ * `doing yesterday`
544
+ * `doing done -r` to remove last doing tag (optionally from `-s Section`)
545
+ * Add `-f` flag to specify alternate doing file
546
+ * `meanwhile` command
547
+
548
+ ### 0.2.1
549
+
550
+ - CSV output for show command (`--csv`)
551
+ - HTML output for show command (`--output html`)
552
+ - fuzzy searching for all commands that specify a view.
553
+ - In the terminal, you'll see "Assume you meant XXX" to show what match it found, but this is output to STDERR (and won't show up if you're redirecting the output or using it in GeekTool, etc.)
554
+ - `tags_color` in view config to highlight tags at the end of the lines. Can be set to any of the `%colors`.
555
+ - Basic time tracking.
556
+ - `-t` on `show` and `view` will turn on time calculations
557
+ - Intervals between timestamps and dated _@done_ tags are calculated for each line, if the tag exists.
558
+ - You must include a `%interval` token in the appropriate template for it to show
559
+ - _@start(date)_ tags can optionally be used to override the timestamp in the calculation
560
+ - Any other tags in the line have that line's total added to them
561
+ - Totals for tags can be displayed at the end of output with `--totals`
562
+
563
+
564
+ ### 0.2.0
565
+
566
+ - `doing done` without argument tags last entry done
567
+ - `-a` archives them
568
+ - `doing finish` or `doing finish X` marks last X entries done
569
+ - `-a` archives them
570
+ - `doing tag tag1 [tag2]` tags last entry or `-c X` entries
571
+ - `doing tag -r tag1 [tag2]` removes said tag(s)
572
+ - custom views additions
573
+ - custom views can include `tags` and `tags_bool`
574
+ - `tags` is a space-separated list of tags to filter the results by
575
+ - `tags_bool` defines `AND` (all tags must exist), `OR` (any tag exists), or `NONE` (none of the tags exist)
576
+ - `order` key (`asc` or `desc`) defines output sort order by date
577
+ - section key can be set to `All` to combine sections
578
+ - `doing show` updates
579
+ - accepts `all` as a section
580
+ - arguments following section name are tags to filter by
581
+ - `-b` sets boolean (`AND`, `OR`, `NONE`) or (`ALL`, `ANY`, `NONE`) (default `OR`/`ANY`)
582
+ - use `-c X` to limit results
583
+ - use `-s` to set sort order (`asc` or `desc`)
584
+ - use `-a` to set age (`newest` or `oldest`)
585
+ - fuzzy section guessing when specified section isn't found
586
+ - fuzzy view guessing for `doing view` command
587
+
588
+ * * *
589
+
590
+ ### 0.1.9
591
+
592
+ - colors in templated output
593
+ - `open` command
594
+ - opens in the default app for file type
595
+ - `-a APPNAME` (`doing open -a TaskPaper`)
596
+ - `-b bundle_id` (`doing open -b com.sublimetext.3`)
597
+ - `-e` switch for `now`, `later` and `done` commands
598
+ - save a tmp file and open it in an editor
599
+ - allows multi-line entries, anything after first line is considered a note
600
+ - assumed when no input is provided (`doing now`)
601
+ - `doing views` shows all available custom views
602
+ - `doing view` without a view name will let you choose a view from a menu
603
+ - `doing archive` fixed so that `-k X` works to keep `X` number of entries in the section
604
+
605
+ ### 0.1.7
606
+
607
+ - colors in templated output
608
+ - `open` command
609
+ - opens in the default app for file type
610
+ - `-a APPNAME` (`doing open -a TaskPaper`)
611
+ - `-b bundle_id` (`doing open -b com.sublimetext.3`)
612
+ - `-e` switch for `now`, `later`, and `done` commands
613
+ - save a tmp file and open it in an editor
614
+ - allows multi-line entries, anything after first line is considered a note
615
+ - assumed when no input is provided (`doing now`)
616
+