mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Remove old workaround for rare Ubuntu path issue
This got fixed properly in `get_file_location()`, but this function still contained an old hack.
This commit is contained in:
@@ -8,6 +8,11 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed rare plugin location detection issue related to the plugin and host
|
||||||
|
detection fix in yabridge 1.2.0.
|
||||||
|
|
||||||
### yabridgectl
|
### yabridgectl
|
||||||
|
|
||||||
- Added a check to `yabridgectl sync` to verify that the currently installed
|
- Added a check to `yabridgectl sync` to verify that the currently installed
|
||||||
|
|||||||
@@ -138,8 +138,7 @@ fs::path find_vst_host(PluginArchitecture plugin_arch, bool use_plugin_groups) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fs::path find_vst_plugin() {
|
fs::path find_vst_plugin() {
|
||||||
const fs::path this_plugin_path =
|
const fs::path this_plugin_path = get_this_file_location();
|
||||||
"/" / fs::path("/" + get_this_file_location().string());
|
|
||||||
|
|
||||||
fs::path plugin_path(this_plugin_path);
|
fs::path plugin_path(this_plugin_path);
|
||||||
plugin_path.replace_extension(".dll");
|
plugin_path.replace_extension(".dll");
|
||||||
|
|||||||
Reference in New Issue
Block a user