Todo TUI powered by plaintext with full mouse support

build: add windows back into cross compilation array

reykjalin.org d7b8a6a7 9b997933

verified
+1 -3
+1 -3
build.zig
··· 13 13 .{ .cpu_arch = .aarch64, .os_tag = .linux }, 14 14 .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .gnu }, 15 15 .{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .musl }, 16 - // Windows support not available due to a call to self.tty.write(). 17 - // Re-enable once that has been removed following a libvaxis update. 18 - // .{ .cpu_arch = .x86_64, .os_tag = .windows }, 16 + .{ .cpu_arch = .x86_64, .os_tag = .windows }, 19 17 }; 20 18 21 19 // Based on https://ziglang.org/learn/build-system/#release.