feat: Add option to check for updates to the Extras menu

This commit is contained in:
WerWolv
2025-08-09 23:46:15 +02:00
parent 6be0eeff72
commit 0870ab4d3c
5 changed files with 99 additions and 61 deletions

View File

@@ -680,6 +680,12 @@ EXPORT_MODULE namespace hex {
*/
bool isNightlyBuild();
/**
* @brief Checks if there's an update available for the current version of ImHex
* @return Optional string returning the version string of the new version, or std::nullopt if no update is available
*/
std::optional<std::string> checkForUpdate();
enum class UpdateType {
Stable,
Nightly