地圖 (Jido) is a lightweight Unix TUI file explorer designed for speed and simplicity.

fix(errors): Ensure logged enums are wrapped in `@tagName()` for readability. chore: Bump version number and update CHANGELOG.

+6 -3
+3
CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## v1.0.1 (2025-04-14) 4 + - fix(errors): Ensure logged enums are wrapped in `@tagName()` for readability. 5 + 3 6 ## v1.0.0 (2025-04-06) 4 7 - New Keybinds: 5 8 - Added ability to copy files.
+1 -1
build.zig
··· 2 2 const builtin = @import("builtin"); 3 3 4 4 ///Must match the `version` in `build.zig.zon`. 5 - const version = std.SemanticVersion{ .major = 1, .minor = 0, .patch = 0 }; 5 + const version = std.SemanticVersion{ .major = 1, .minor = 0, .patch = 1 }; 6 6 7 7 const targets: []const std.Target.Query = &.{ 8 8 .{ .cpu_arch = .aarch64, .os_tag = .macos },
+1 -1
build.zig.zon
··· 1 1 .{ 2 2 .name = .jido, 3 3 .fingerprint = 0xee45eabe36cafb57, 4 - .version = "1.0.0", 4 + .version = "1.0.1", 5 5 .minimum_zig_version = "0.14.0", 6 6 7 7 .dependencies = .{
+1 -1
src/events.zig
··· 288 288 }; 289 289 }, 290 290 else => { 291 - message = try std.fmt.allocPrint(app.alloc, "Failed to copy '{s}' - unsupported file type '{}'.", .{ entry.path, entry.kind }); 291 + message = try std.fmt.allocPrint(app.alloc, "Failed to copy '{s}' - unsupported file type '{s}'.", .{ entry.path, @tagName(entry.kind) }); 292 292 app.notification.write(message.?, .err) catch {}; 293 293 if (app.file_logger) |file_logger| file_logger.write(message.?, .err) catch {}; 294 294 errored = true;