From f684e8cac7a4a8f2874fac19d5c3ac1653832714 Mon Sep 17 00:00:00 2001 From: bubio Date: Sun, 26 Jul 2026 09:20:47 +0900 Subject: [PATCH] chore: bump version to 1.0.1 Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01HzDde6PsfNiqUcNLY73cUw --- assets/Info.plist | 4 ++-- build.zig.zon | 2 +- src/ui.zig | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/Info.plist b/assets/Info.plist index e6fefdb..7e81993 100644 --- a/assets/Info.plist +++ b/assets/Info.plist @@ -13,11 +13,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.0.0 + 1.0.1 CFBundleSignature ???? CFBundleVersion - 1 + 2 CFBundleIconFile AppIcon CFBundleIconName diff --git a/build.zig.zon b/build.zig.zon index 4af2f51..7577378 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -9,7 +9,7 @@ .name = .UsaProject, // This is a [Semantic Version](https://semver.org/). // In a future version of Zig it will be used for package deduplication. - .version = "1.0.0", + .version = "1.0.1", // Together with name, this represents a globally unique package // identifier. This field is generated by the Zig toolchain when the // package is first created, and then *never changes*. This allows diff --git a/src/ui.zig b/src/ui.zig index a419109..192c239 100644 --- a/src/ui.zig +++ b/src/ui.zig @@ -716,7 +716,7 @@ fn drawAbout(ctx: *c.nk_context, win_w: u32, win_h: u32) void { if (c.nk_group_begin(ctx, "about_text", c.NK_WINDOW_NO_SCROLLBAR) != 0) { c.nk_layout_row_dynamic(ctx, 20, 1); c.nk_label(ctx, "Usa Project", c.NK_TEXT_LEFT); - c.nk_label(ctx, "Version: 1.0.0", c.NK_TEXT_LEFT); + c.nk_label(ctx, "Version: 1.0.1", c.NK_TEXT_LEFT); c.nk_label(ctx, "Core: NP2kai 0.86", c.NK_TEXT_LEFT); c.nk_group_end(ctx); }