feat(daemon): add blender detection to probe_capabilities() fallback

This commit is contained in:
123kupola 2026-06-28 08:16:19 +02:00
parent 0a1c6b3604
commit 282ca550c2

View file

@ -936,6 +936,16 @@ fn probe_capabilities() -> Vec<String> {
}
}
// blender
if let Ok(out) = std::process::Command::new("blender")
.arg("--version")
.output()
{
if out.status.success() {
caps.push("blender".to_string());
}
}
caps
}