diff options
author | saturneric <[email protected]> | 2025-06-22 14:20:50 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-06-22 14:20:50 +0000 |
commit | 3a2f17c613d812cbe3bab4be51a5a35ef262596c (patch) | |
tree | a10214f9cda422882eadcd0cd2b8fab3987ae6a4 /src/m_ver_check/SoftwareVersion.h | |
parent | fix(UpdateTab): correct condition for showing unpublished commit message (diff) | |
download | Modules-3a2f17c613d812cbe3bab4be51a5a35ef262596c.tar.gz Modules-3a2f17c613d812cbe3bab4be51a5a35ef262596c.zip |
refactor: remove git commit hash verification from version check
- remove remote commit hash tracking from version check logic
- simplify version check by removing tag info parsing
- update UI to remove commit hash mismatch warning
- clean up related code and remove unused fields
Diffstat (limited to '')
-rw-r--r-- | src/m_ver_check/SoftwareVersion.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/m_ver_check/SoftwareVersion.h b/src/m_ver_check/SoftwareVersion.h index 59db3fa..6267554 100644 --- a/src/m_ver_check/SoftwareVersion.h +++ b/src/m_ver_check/SoftwareVersion.h @@ -46,7 +46,6 @@ struct SoftwareVersion { QString publish_date; ///< QString release_note; ///< - QString remote_commit_hash_by_tag; QString local_commit_hash; QDateTime timestamp; @@ -83,14 +82,6 @@ struct SoftwareVersion { * @return true * @return false */ - [[nodiscard]] auto GitCommitHashMismatch() const -> bool; - - /** - * @brief - * - * @return true - * @return false - */ [[nodiscard]] auto CurrentVersionReleased() const -> bool; /** |