mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
[yabridgectl] Show VST2 architecture in status
This commit is contained in:
@@ -123,7 +123,9 @@ pub fn show_status(config: &Config) -> Result<()> {
|
|||||||
|
|
||||||
for (plugin_path, (plugin, status)) in search_results.installation_status() {
|
for (plugin_path, (plugin, status)) in search_results.installation_status() {
|
||||||
let plugin_type = match plugin {
|
let plugin_type = match plugin {
|
||||||
Plugin::Vst2(_) => "VST2".cyan().to_string(),
|
Plugin::Vst2(Vst2Plugin { architecture, .. }) => {
|
||||||
|
format!("{}, {}", "VST2".cyan(), architecture)
|
||||||
|
}
|
||||||
Plugin::Vst3(module) => format!(
|
Plugin::Vst3(module) => format!(
|
||||||
"{}, {}, {}",
|
"{}, {}, {}",
|
||||||
"VST3".magenta(),
|
"VST3".magenta(),
|
||||||
|
|||||||
Reference in New Issue
Block a user