From 872c57068f22a25580a99504f216c30993b4b2a1 Mon Sep 17 00:00:00 2001 From: saturneric Date: Sun, 1 Jun 2025 01:18:00 +0200 Subject: feat(ver_check): add bktus version check support - implement BKTUSVersionCheckTask for bktus.com version checking - refactor version checking logic into Utils.cpp - update version checking module to support multiple sources - improve version status display messages --- src/m_ver_check/SoftwareVersion.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/m_ver_check/SoftwareVersion.h') diff --git a/src/m_ver_check/SoftwareVersion.h b/src/m_ver_check/SoftwareVersion.h index f66c0dd..ed89964 100644 --- a/src/m_ver_check/SoftwareVersion.h +++ b/src/m_ver_check/SoftwareVersion.h @@ -35,15 +35,14 @@ * */ struct SoftwareVersion { - QString latest_version; ///< - QString current_version; ///< - bool latest_prerelease_version_from_remote = false; ///< - bool latest_draft_from_remote = false; ///< - bool current_version_is_a_prerelease = false; ///< - bool current_version_is_drafted = false; ///< + QString latest_version; ///< + QString current_version; ///< + bool current_version_publish_in_remote = false; ///< - QString publish_date; ///< - QString release_note; ///< + bool current_commit_hash_publish_in_remote = false; ///< + + QString publish_date; ///< + QString release_note; ///< QString remote_commit_hash_by_tag; QString local_commit_hash; -- cgit v1.2.3