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

Merged
clawdie merged 1 commit from feat/blender-capability-fallback into main 2026-06-28 08:18:00 +02:00

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
}