diff options
author | saturneric <[email protected]> | 2023-10-24 07:55:29 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-10-24 07:55:29 +0000 |
commit | 52f809414e485f81e58a0aa3fec99bd27e38c9cf (patch) | |
tree | 21bc601b510e01eec1b38ae256f6c252533ef91f /src/module/integrated/version_checking_module/SoftwareVersion.h | |
parent | fix: solve some issues on log system (diff) | |
download | GpgFrontend-52f809414e485f81e58a0aa3fec99bd27e38c9cf.tar.gz GpgFrontend-52f809414e485f81e58a0aa3fec99bd27e38c9cf.zip |
feat: try to use GRT as a info exchange center of modules and ui
Diffstat (limited to 'src/module/integrated/version_checking_module/SoftwareVersion.h')
-rw-r--r-- | src/module/integrated/version_checking_module/SoftwareVersion.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/module/integrated/version_checking_module/SoftwareVersion.h b/src/module/integrated/version_checking_module/SoftwareVersion.h index a95c8b20..513ab1b9 100644 --- a/src/module/integrated/version_checking_module/SoftwareVersion.h +++ b/src/module/integrated/version_checking_module/SoftwareVersion.h @@ -36,16 +36,16 @@ namespace GpgFrontend::Module::Integrated::VersionCheckingModule { * */ struct SoftwareVersion { - std::string latest_version; ///< - std::string current_version; ///< - bool latest_prerelease = false; ///< - bool latest_draft = false; ///< - bool current_prerelease = false; ///< - bool current_draft = false; ///< - bool load_info_done = false; ///< - bool current_version_found = false; ///< - std::string publish_date; ///< - std::string release_note; ///< + std::string latest_version; ///< + std::string 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; ///< + bool loading_done = false; ///< + bool current_version_publish_in_remote = false; ///< + std::string publish_date; ///< + std::string release_note; ///< /** * @brief @@ -53,7 +53,7 @@ struct SoftwareVersion { * @return true * @return false */ - [[nodiscard]] bool InfoValid() const { return load_info_done; } + [[nodiscard]] bool InfoValid() const { return loading_done; } /** * @brief @@ -69,7 +69,7 @@ struct SoftwareVersion { * @return true * @return false */ - [[nodiscard]] bool VersionWithDrawn() const; + [[nodiscard]] bool VersionWithdrawn() const; /** * @brief |