The new Release 20.03 is out! You can download binaries for Windows and many major Linux distros here .
From 63c1c31529667c9985c4ab96087ef1bf591f0e70 Mon Sep 17 00:00:00 2001From: asmwarrior <a@b.com>Date: Sun, 30 Oct 2022 13:39:30 +0800Subject: use the %llu for unsigned long long value, otherwise, an alert will happendiff --git a/src/sdk/toolsmanager.cpp b/src/sdk/toolsmanager.cppindex 616fb2d1..ac6395bf 100644--- a/src/sdk/toolsmanager.cpp+++ b/src/sdk/toolsmanager.cpp@@ -264,7 +264,7 @@ void ToolsManager::LoadTools() AddTool(&tool, false); }- Manager::Get()->GetLogManager()->Log(wxString::Format(_("Configured %d tools"), m_Tools.GetCount()));+ Manager::Get()->GetLogManager()->Log(wxString::Format(_("Configured %llu tools"), m_Tools.GetCount())); } void ToolsManager::SaveTools()
Fixed in r12997.