From 1d74c41657afedfc577e0293ec52be64949550fc Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 24 Apr 2026 15:25:44 +0300 Subject: [PATCH] Show release version in app header --- src/app_shell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app_shell.cpp b/src/app_shell.cpp index 3311186..a12133a 100644 --- a/src/app_shell.cpp +++ b/src/app_shell.cpp @@ -89,7 +89,7 @@ void App::draw() { attron(A_REVERSE); mvhline(header_y, 0, ' ', width); - std::string header_label = std::string("shinoa ") + TELEGRAM_TUI_BUILD_VERSION; + std::string header_label = std::string("shinoa ") + TELEGRAM_TUI_PROJECT_VERSION; if (use_test_dc_) { header_label += " [TEST DC]"; }