Problem
When launching qodercli on Windows 10, the following warning is displayed every single time:
⚠ Warning: Windows 10 detected. Some UI features like smooth scrolling may be degraded. Windows 11 is recommended for the best experience.
This warning is hardcoded in the qodercli binary and cannot be disabled through any configuration option.
Details
After inspecting the binary, I found that the warning is generated by a function that checks os.release() for 10.0.x < 22000. The warning is added with priority: "high" to the startupWarnings array.
Unlike low priority warnings (which are automatically dismissed after 3 displays via startupWarningCounts), high priority warnings persist on every launch.
Request
Please consider one of the following:
- Add a configuration option (e.g., in
settings.json or via CLI flag like --suppress-startup-warnings) to hide this warning.
- Reduce the priority to
low so it auto-dismisses after a few launches.
- Add an environment variable (e.g.,
QODER_SUPPRESS_WARNINGS=1) to skip all startup warnings.
Environment
- qodercli version: 0.2.6
- OS: Windows 10 (build < 22000)
- Terminal: Git Bash (msys)
Thanks!
Problem
When launching qodercli on Windows 10, the following warning is displayed every single time:
This warning is hardcoded in the qodercli binary and cannot be disabled through any configuration option.
Details
After inspecting the binary, I found that the warning is generated by a function that checks
os.release()for10.0.x < 22000. The warning is added withpriority: "high"to thestartupWarningsarray.Unlike
lowpriority warnings (which are automatically dismissed after 3 displays viastartupWarningCounts),highpriority warnings persist on every launch.Request
Please consider one of the following:
settings.jsonor via CLI flag like--suppress-startup-warnings) to hide this warning.lowso it auto-dismisses after a few launches.QODER_SUPPRESS_WARNINGS=1) to skip all startup warnings.Environment
Thanks!