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