fix(plugin): clean up MangoHud version display
This commit is contained in:
@@ -170,6 +170,9 @@ class Plugin:
|
|||||||
capture_output=True, text=True, timeout=5
|
capture_output=True, text=True, timeout=5
|
||||||
)
|
)
|
||||||
version = version_result.stdout.strip() if version_result.returncode == 0 else "unknown"
|
version = version_result.stdout.strip() if version_result.returncode == 0 else "unknown"
|
||||||
|
# Clean up version string (remove git hash suffix)
|
||||||
|
if version and "-" in version:
|
||||||
|
version = version.split("-")[0]
|
||||||
return {"installed": True, "path": mangohud_path, "version": version}
|
return {"installed": True, "path": mangohud_path, "version": version}
|
||||||
else:
|
else:
|
||||||
return {"installed": False, "path": "", "version": ""}
|
return {"installed": False, "path": "", "version": ""}
|
||||||
|
|||||||
Reference in New Issue
Block a user