2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-22 02:07:24 +00:00

Added suffix to version string for debug builds.

This commit is contained in:
23rd 2025-06-29 23:39:14 +03:00
parent ac243136b9
commit abfd37c045

View File

@ -153,5 +153,8 @@ QString currentVersionText() {
} else if (Platform::IsWindowsARM64()) {
result += " arm64";
}
#ifdef _DEBUG
result += " DEBUG";
#endif
return result;
}