mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 03:50:11 +02:00
[yabridgectl] Change copied to synced in status
This makes more sense since the symlink based installation method is no more.
This commit is contained in:
+2
-1
@@ -100,7 +100,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
directories, not just directories that are called `VST3`. This, of course,
|
directories, not just directories that are called `VST3`. This, of course,
|
||||||
should not be needed.
|
should not be needed.
|
||||||
- The previously deprecated symlink installation method has now been removed
|
- The previously deprecated symlink installation method has now been removed
|
||||||
from yabridgectl, along with the `yabridgectl set --method` option.
|
from yabridgectl, along with the `yabridgectl set --method` option. The
|
||||||
|
terminology in `yabridgectl status` has changed accordingly.
|
||||||
- `yabridgectl status` now lists the architecture of
|
- `yabridgectl status` now lists the architecture of
|
||||||
`libyabridge-chainloader-vst2.so` just like it already did for the VST3
|
`libyabridge-chainloader-vst2.so` just like it already did for the VST3
|
||||||
library.
|
library.
|
||||||
|
|||||||
@@ -172,14 +172,14 @@ pub fn show_status(config: &Config) -> Result<()> {
|
|||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: With the symlink installation method gone this does not make a lot of sense
|
// This made more sense when we supported symlinking `libyabridge-*.so`, but we should
|
||||||
// anymore, but it does seem useful to have some sort of label telling you that a
|
// display _something_ to indicate that the plugin is set up correctly
|
||||||
// plugin has been set up
|
|
||||||
let status_str = match status {
|
let status_str = match status {
|
||||||
Some(NativeFile::Regular(_)) => "copy".green(),
|
Some(NativeFile::Regular(_)) => "synced".green(),
|
||||||
Some(NativeFile::Symlink(_)) => "symlink".green(),
|
// This should not occur, but we'll display it just in case it does happen
|
||||||
|
Some(NativeFile::Symlink(_)) => "symlink".yellow(),
|
||||||
Some(NativeFile::Directory(_)) => "invalid".red(),
|
Some(NativeFile::Directory(_)) => "invalid".red(),
|
||||||
None => "not yet installed".into(),
|
None => "not yet synced".into(),
|
||||||
};
|
};
|
||||||
|
|
||||||
println!(
|
println!(
|
||||||
|
|||||||
Reference in New Issue
Block a user