From e6f46747b6e3fbedd9eef880993c2ae4fd772185 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 9 Aug 2025 17:59:01 +0200 Subject: [PATCH] fix: Add missing Updates path to About screen --- lib/libimhex/include/hex/helpers/default_paths.hpp | 3 ++- plugins/builtin/source/content/views/view_about.cpp | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/libimhex/include/hex/helpers/default_paths.hpp b/lib/libimhex/include/hex/helpers/default_paths.hpp index 2054d2ae7..962cddf03 100644 --- a/lib/libimhex/include/hex/helpers/default_paths.hpp +++ b/lib/libimhex/include/hex/helpers/default_paths.hpp @@ -86,9 +86,10 @@ namespace hex::paths { const static inline impl::DataPath Workspaces("workspaces"); const static inline impl::DataPath Disassemblers("disassemblers"); - constexpr static inline std::array All = { + constexpr static inline std::array All = { &Config, &Recent, + &Updates, &Libraries, &Plugins, diff --git a/plugins/builtin/source/content/views/view_about.cpp b/plugins/builtin/source/content/views/view_about.cpp index 73bd6f84c..e5b4d1d04 100644 --- a/plugins/builtin/source/content/views/view_about.cpp +++ b/plugins/builtin/source/content/views/view_about.cpp @@ -473,6 +473,7 @@ namespace hex::plugin::builtin { { "Yara Patterns", &paths::Yara }, { "Yara Advaned Analysis", &paths::YaraAdvancedAnalysis }, { "Config", &paths::Config }, + { "Updates", &paths::Updates }, { "Backups", &paths::Backups }, { "Resources", &paths::Resources }, { "Constants lists", &paths::Constants },