Problem
cloudlink.py hardcodes CL_VERSION = "1.2.1" but manifest.json declares "version": "1.4.1".
The healthcheck on startup compares CL_VERSION against the version returned by the API. Since these don't match, the plugin will always log a "New version available" warning on every RotorHazard startup — even when fully up to date.
Fix
# cloudlink.py
CL_VERSION = "1.4.1"
Impact
- False upgrade warning logged on every startup
- Confusing for race operators
Problem
cloudlink.pyhardcodesCL_VERSION = "1.2.1"butmanifest.jsondeclares"version": "1.4.1".The healthcheck on startup compares
CL_VERSIONagainst the version returned by the API. Since these don't match, the plugin will always log a "New version available" warning on every RotorHazard startup — even when fully up to date.Fix
Impact