Todo TUI powered by plaintext with full mouse support

cli: update todui version on main branch and in changelog

reykjalin.org 7f25f808 7f88b85e

verified
+17 -1
+16
CHANGELOG.md
··· 4 4 For example, the first release in a given month will usually be `<year>.<month>`, e.g. `2024.10`. 5 5 If another release is tagged in the same month I would add a patch number, such as `2024.10.1`. 6 6 7 + ## 2024.11.2-dev 8 + 9 + ### Features 10 + 11 + * 12 + 13 + ### Known issues and missing features 14 + 15 + * Multiple selections are not a thing yet. 16 + * The currently active filter is not displayed. 17 + * You can't scroll by clicking and dragging the scroll bar, or clicking the scroll area. 18 + * The scrollbar doesn't always scroll all the way down, sometimes there 19 + is a 1 cell gap between the scrollbar and the scroll down button. 20 + * You can't select and copy text in the details view. 21 + 22 + 7 23 ## 2024.11 8 24 9 25 ### Features
+1 -1
src/main.zig
··· 1961 1961 } 1962 1962 if (args.len > 1 and (std.mem.eql(u8, args[1], "--version") or std.mem.eql(u8, args[1], "-v"))) { 1963 1963 const writer = std.io.getStdOut().writer(); 1964 - try writer.print("2024.11\n", .{}); 1964 + try writer.print("2024.11.2-dev\n", .{}); 1965 1965 std.process.exit(0); 1966 1966 } 1967 1967 if (args.len > 1) {