From abfd37c04585cc6bf713d0ed2609f2a5a6dfc24f Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Sun, 29 Jun 2025 23:39:14 +0300 Subject: [PATCH] Added suffix to version string for debug builds. --- Telegram/SourceFiles/boxes/about_box.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Telegram/SourceFiles/boxes/about_box.cpp b/Telegram/SourceFiles/boxes/about_box.cpp index 3fe076b512..129d59d076 100644 --- a/Telegram/SourceFiles/boxes/about_box.cpp +++ b/Telegram/SourceFiles/boxes/about_box.cpp @@ -153,5 +153,8 @@ QString currentVersionText() { } else if (Platform::IsWindowsARM64()) { result += " arm64"; } +#ifdef _DEBUG + result += " DEBUG"; +#endif return result; }