bugfix: update hash compare

This commit is contained in:
semenov
2025-07-23 12:29:34 +03:00
parent aed40b4dd7
commit c4a3d503af
25 changed files with 26480 additions and 186 deletions

View File

@@ -274,6 +274,11 @@ void RecognizeSystem::recognize(QTcpSocket *socket)
mainWindow->checkUpdate();
}
if(packetType == PacketType::HASH_CALCULATE_START)
{
mainWindow->setInlineDebug(tr("Пересчет хэша на сервере..."));
}
if(packetType == PacketType::BUSY)
{
emit sigAnimationActivated(true);

View File

@@ -49,7 +49,8 @@ enum PacketType{
COPY_VERSION = 152,
DELETE_DATA_VERSION = 153,
BUSY = 154,
FREE = 155
FREE = 155,
HASH_CALCULATE_START = 156
};