Skip to content

Commit

Permalink
Restructured app
Browse files Browse the repository at this point in the history
- Moved render and event handling logic to their own functions.
- Fixed rename issue where it could not be undone.
- Fixed issue where images would stop rendering if an event was emitted
  without changing selected item.
  • Loading branch information
BrookJeynes committed May 30, 2024
1 parent f84cc7a commit 3660bff
Show file tree
Hide file tree
Showing 8 changed files with 739 additions and 681 deletions.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const std = @import("std");
const builtin = @import("builtin");

const min_zig_string = "0.12.0";
const version = std.SemanticVersion{ .major = 0, .minor = 2, .patch = 0 };
const version = std.SemanticVersion{ .major = 0, .minor = 3, .patch = 0 };

const targets: []const std.Target.Query = &.{
.{ .cpu_arch = .aarch64, .os_tag = .macos },
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.{
.name = "zfe",
.version = "0.2.0",
.version = "0.3.0",

.minimum_zig_version = "0.12.0",

Expand Down
Loading

0 comments on commit 3660bff

Please sign in to comment.