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