audacity/lib64-plugins-default-path.patch

49 lines
2.5 KiB
Diff
Raw Normal View History

- Update to 3.6.0 - Remove mod-script-pipe-disable-rpath.patch - no need anymore. Major changes * Master effects - Audacity now features master effects. Master effects are effects which apply to the entire project at once. More information can be found at Using master effects & realtime effects. * New compressor and limiter - A new compressor and limiter has been added, replacing the previous versions. A gain reduction history has been added to these effects when they're used as a realtime effect. - Factory Presets suitable for a wide range of use cases for these effects have been provided by Vladislav Isaev and Marek Iwaszkiewicz, available via the Presets & Settings button. * New themes - Audacity now features new and improved dark and light themes. You can switch between themes via Preferences -> Interface. - The theme previously used still is around as the Classic theme, and themes even older than that can be optionally installed as custom themes[1] from here[2]. Updated instructions on creating custom themes can be found here[3]. [1]https://support.audacityteam.org/basics/customizing-audacity/using-themes#installing-custom-themes [2]https://github.com/LWinterberg/classicTheme [3]https://audacity.gitbook.io/dev/scripting/creating-custom-themes * Increased performance - Audacity is now quite a bit snappier than before, especially when working on larger projects and on larger screens. Other changes * Added FFmpeg 7 support. * You now can paste audio files into Audacity using Ctrl+V. * Alternative waveform colors are now themeable by custom themes. * Removed the track name overlay preference and the "blend themes" preference. * Scripting: Added GetInfo: Type=Selection. (Thanks, Jonatã Bolzan Loss!) * Added an Extras > Export > Export Selected Audio option. * Import Raw: Added support for offsets larger than 2 GB. * Redesigned the "what's new" dialog. * Added an option to the View menu to show/hide RMS in waveforms. * OpenVINO AI effects can now be downloaded from audacityteam.org/download/openvino/ Bugfixes * #6340 When recording to a new track, the track is now scrolled back into view again. * #3825 The macro manager no longer shows parameterless actions as editable. (Thanks, Davi Nonnenmacher!) * #6138 Pressing Esc in some preference dialogs no longer saves them. * #4504 Fixed stray orange lines in the high contrast theme. * #5626 Fixed the quality slider for Ogg export on Linux. (Thanks, Devpriya Nalin!) * #6875 Fixed a bug which could open a project with the wrong sample rate. * Various compiler warning fixes and OpenBSD build fixes. (Thanks, Brad Smith!) OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/audacity?expand=0&rev=222
2024-07-18 19:18:54 +02:00
diff -ur audacity-Audacity-3.4.0.orig/cmake-proxies/lv2/CMakeLists.txt audacity-Audacity-3.4.0/cmake-proxies/lv2/CMakeLists.txt
--- audacity-Audacity-3.4.0.orig/cmake-proxies/lv2/CMakeLists.txt 2023-11-02 04:14:25.000000000 -0700
+++ audacity-Audacity-3.4.0/cmake-proxies/lv2/CMakeLists.txt 2023-11-05 16:29:31.976019263 -0800
@@ -217,7 +217,7 @@
elseif( UNIX )
set( LILV_PATH_SEP ":" )
set( LILV_DIR_SEP "/" )
- set( LILV_DEFAULT_LV2_PATH "~/.lv2:/usr/lib/lv2:/usr/local/lib/lv2" )
+ set( LILV_DEFAULT_LV2_PATH "~/.lv2:/usr/lib64/lv2:/usr/local/lib/lv2" )
set( SUIL_MODULE_DIR "" )
set( SUIL_DIR_SEP "" )
diff -ur audacity-Audacity-3.4.0.orig/libraries/lib-vst/VSTEffectsModule.cpp audacity-Audacity-3.4.0/libraries/lib-vst/VSTEffectsModule.cpp
--- audacity-Audacity-3.4.0.orig/libraries/lib-vst/VSTEffectsModule.cpp 2023-11-02 04:14:25.000000000 -0700
+++ audacity-Audacity-3.4.0/libraries/lib-vst/VSTEffectsModule.cpp 2023-11-05 16:28:29.117199672 -0800
@@ -238,7 +238,7 @@
pathList.push_back(wxT(LIBDIR) wxT("/vst"));
// These are the defaults used by other hosts
- pathList.push_back(wxT("/usr/lib/vst"));
+ pathList.push_back(wxT("/usr/lib64/vst"));
pathList.push_back(wxT("/usr/local/lib/vst"));
pathList.push_back(wxGetHomeDir() + wxFILE_SEP_PATH + wxT(".vst"));
}
diff -ur audacity-Audacity-3.4.0.orig/libraries/lib-vst3/module_linux.cpp audacity-Audacity-3.4.0/libraries/lib-vst3/module_linux.cpp
--- audacity-Audacity-3.4.0.orig/libraries/lib-vst3/module_linux.cpp 2023-11-02 04:14:25.000000000 -0700
+++ audacity-Audacity-3.4.0/libraries/lib-vst3/module_linux.cpp 2023-11-05 16:27:31.894953308 -0800
@@ -278,7 +278,7 @@
* Application : /$APPFOLDER/vst3/
*/
- const auto systemPaths = {"/usr/lib/vst3/", "/usr/local/lib/vst3/"};
+ const auto systemPaths = {"/usr/lib64/vst3/", "/usr/local/lib/vst3/"};
PathList list;
if (auto homeDir = getenv ("HOME"))
diff -ur audacity-Audacity-3.4.0.orig/libraries/lib-vst3/VST3EffectsModule.cpp audacity-Audacity-3.4.0/libraries/lib-vst3/VST3EffectsModule.cpp
--- audacity-Audacity-3.4.0.orig/libraries/lib-vst3/VST3EffectsModule.cpp 2023-11-02 04:14:25.000000000 -0700
+++ audacity-Audacity-3.4.0/libraries/lib-vst3/VST3EffectsModule.cpp 2023-11-05 16:27:31.894953308 -0800
@@ -169,7 +169,7 @@
pathList.push_back("/Network/Library/Audio/Plug-ins/VST3/");
#elif __WXGTK__
pathList.push_back(wxGetHomeDir() + "/.vst3/");
- pathList.push_back("/usr/lib/vst3/");
+ pathList.push_back("/usr/lib64/vst3/");
pathList.push_back("/usr/local/lib/vst3/");
#endif