···1# Changelog
20003## v0.9.8 (2025-04-04)
4- fix: Ensure complete Git branch is displayed.
5- refactor: Audit try usage to improve system resiliance.
6- refactor: Removed need for enum based notifications.
78## v0.9.7 (2025-04-01)
9-- feat: Added ability to copy folders.
10 This is done by (y)anking the file, then (p)asting in the desired directory.
11 This action can be (u)ndone and behind the scenes is a deletion.
12- fix: Allow the cursor to be moved left and right.
···1# Changelog
23+## v0.9.9 (2025-04-06)
4+- feat: Added ability to copy folders.
5+6## v0.9.8 (2025-04-04)
7- fix: Ensure complete Git branch is displayed.
8- refactor: Audit try usage to improve system resiliance.
9- refactor: Removed need for enum based notifications.
1011## v0.9.7 (2025-04-01)
12+- feat: Added ability to copy files.
13 This is done by (y)anking the file, then (p)asting in the desired directory.
14 This action can be (u)ndone and behind the scenes is a deletion.
15- fix: Allow the cursor to be moved left and right.
+2-2
PROJECT_BOARD.md
···8## v1.0 release
910### New features
11-- [ ] File/Folder movement.
12 - [x] Copy files.
13- - [ ] Copy folders.
14- [ ] Keybind to unzip archives.
15- [x] Keybind to hard delete items (bypass trash).
16- [x] Ability to unbind keys.
···8## v1.0 release
910### New features
11+- [x] File/Folder movement.
12 - [x] Copy files.
13+ - [x] Copy folders.
14- [ ] Keybind to unzip archives.
15- [x] Keybind to hard delete items (bypass trash).
16- [x] Ability to unbind keys.
+1-1
build.zig
···2const builtin = @import("builtin");
34///Must match the `version` in `build.zig.zon`.
5-const version = std.SemanticVersion{ .major = 0, .minor = 9, .patch = 8 };
67const targets: []const std.Target.Query = &.{
8 .{ .cpu_arch = .aarch64, .os_tag = .macos },
···2const builtin = @import("builtin");
34///Must match the `version` in `build.zig.zon`.
5+const version = std.SemanticVersion{ .major = 0, .minor = 9, .patch = 9 };
67const targets: []const std.Target.Query = &.{
8 .{ .cpu_arch = .aarch64, .os_tag = .macos },