Dustin J. Mitchell
Dustin J. Mitchell
It seems like it _mostly_ decodes these correctly, but https://github.com/GothenburgBitFactory/bugwarrior/pull/1052 mentions that sometimes this doesn't work. To add insult to injury, [`&open;` is not the appropriate entity encoding for `[`](https://symbl.cc/en/005B/)....
I just started up `task` in a context where I had a very old task database. It "hung", and some investigation showed it adding tasks for a recurrence. Presumably most...
Currently, if we make a release with no new news items, users will be reminded to run `task news` because the current version is newer than their `news.version` config. However,...
There is a message on some fraction of reports that says ``` Please run 'task news' to read highlights about the new release. ``` Let's add another `verbose` term (along...
locally, after installing the latest dprint and clearing ~/.cache/dprint, ``` from /usr/local/google/home/djmitche/p/comprehensive-rust/po/pl.po: 26052 26052| #~·"········let·Some(request_segment)·=·request_segments.next()·else·{\n" 26053 26053| #~·"············return·false;\n" 26054 26054| #~·"········};\n" 26055|-#~·"········if·request_segment·!=·prefix_segment·&&·prefix_segment·!=·" 26056|-#~·"\"*\"·{\n" 26055 |+#~·"········if·request_segment·!=·prefix_segment·&&·prefix_segment·!=·\"*\"·" 26056 |+#~·"{\n" 26057 26057| #~·"············return·false;\n"...
I cleared `$HOME/.cache/dprint` on my machine and re-ran `dprint check` (which had previously succeeded), and it generated these changes. Somewhat aside, it's frustrating that `dprint` is very much a moving...
In https://github.com/GothenburgBitFactory/taskwarrior/issues/3530 @snaka224 mentioned they edited the DB. They probably aren't the first or only person to do so! The result is a "corrupted" DB in the sense that an...
Right now, this method (known as `commit_undo_ops` before #372) just checks that the latest set of un-synchronized operations in the replica match the operations to undo. If that's the case,...
@lauft pointed out that the sync model would map well to the Git model. We could build a server implementation wrapping Git, using a similar set of files to those...
(This will make sense when #372 is finished) `Replica::expire_tasks` currently uses `Task` instead of `TaskData`, meaning that it is doing extra work to load task dependencies. Refactor it to use...