From bb439b010729ab5fe646f9c9bc5042375258c8bd Mon Sep 17 00:00:00 2001 From: sowle Date: Wed, 10 Jul 2024 13:52:36 +0200 Subject: [PATCH 1/3] fixed a bug in transform_t_pod_array_to_hex_str_array() --- contrib/epee/include/serialization/keyvalue_helpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/epee/include/serialization/keyvalue_helpers.h b/contrib/epee/include/serialization/keyvalue_helpers.h index 9b5f0dcf3..d76fc641c 100644 --- a/contrib/epee/include/serialization/keyvalue_helpers.h +++ b/contrib/epee/include/serialization/keyvalue_helpers.h @@ -105,7 +105,7 @@ namespace epee std::string res; for (const auto& item : a) { - res += epee::string_tools::pod_to_hex(a) + ", "; + res += epee::string_tools::pod_to_hex(item) + ", "; } if (a.size()) { From 55358fc420b40ef79c1cbc0a71a96f8d8015c12d Mon Sep 17 00:00:00 2001 From: sowle Date: Thu, 11 Jul 2024 12:32:20 +0200 Subject: [PATCH 2/3] ui update --- src/gui/qt-daemon/layout | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/qt-daemon/layout b/src/gui/qt-daemon/layout index 91e7fb00d..2fb143cc6 160000 --- a/src/gui/qt-daemon/layout +++ b/src/gui/qt-daemon/layout @@ -1 +1 @@ -Subproject commit 91e7fb00d8fb3808f0b435bfecc1b8a650211fbd +Subproject commit 2fb143cc67280f0e0cfcd3165e1c087ba8279edf From c1d37852c5d539b0c26782e24f0ad714a4864de6 Mon Sep 17 00:00:00 2001 From: zano build machine Date: Thu, 11 Jul 2024 14:49:28 +0300 Subject: [PATCH 3/3] === build number: 331 -> 332 === --- src/version.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.h.in b/src/version.h.in index 611987c7b..ed1084e5a 100644 --- a/src/version.h.in +++ b/src/version.h.in @@ -8,6 +8,6 @@ #define PROJECT_REVISION "0" #define PROJECT_VERSION PROJECT_MAJOR_VERSION "." PROJECT_MINOR_VERSION "." PROJECT_REVISION -#define PROJECT_VERSION_BUILD_NO 331 +#define PROJECT_VERSION_BUILD_NO 332 #define PROJECT_VERSION_BUILD_NO_STR STRINGIFY_EXPAND(PROJECT_VERSION_BUILD_NO) #define PROJECT_VERSION_LONG PROJECT_VERSION "." PROJECT_VERSION_BUILD_NO_STR "[" BUILD_COMMIT_ID "]"