You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
- #include <common.hpp>
-
-
- namespace rack {
-
-
- /** Automatically updates the application.
- */
- namespace updater {
-
-
- extern std::string version;
- extern std::string changelogUrl;
- extern float progress;
-
- void init();
- bool isUpdateAvailable();
- /** Updates Rack automatically or opens the browser to the URL.
- Blocking. Call on a detached thread.
- */
- void update();
-
-
- } // namespace updater
- } // namespace rack
|