mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
Merge branch 'master' into feature/vst3
This commit is contained in:
@@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
and this project adheres to [Semantic
|
and this project adheres to [Semantic
|
||||||
Versioning](https://semver.org/spec/v2.0.0.html).
|
Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased] - 2020-12-12
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Changed part of the build process considering [this Wine
|
||||||
|
bug](https://bugs.winehq.org/show_bug.cgi?id=49138). Building with Wine 5.7
|
||||||
|
and 5.8 required a change, but that change now breaks builds using Wine 6.0
|
||||||
|
and up, so this change has been reverted.
|
||||||
|
|
||||||
## [2.2.1] - 2020-12-12
|
## [2.2.1] - 2020-12-12
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|||||||
@@ -35,12 +35,8 @@
|
|||||||
* provided socket. After that initialization step both the regular individual
|
* provided socket. After that initialization step both the regular individual
|
||||||
* plugin host and this group plugin host will function identically on both the
|
* plugin host and this group plugin host will function identically on both the
|
||||||
* plugin and the Wine VST host side.
|
* plugin and the Wine VST host side.
|
||||||
*
|
|
||||||
* The explicit calling convention is needed to work around a bug introduced in
|
|
||||||
* Wine 5.7: https://bugs.winehq.org/show_bug.cgi?id=49138
|
|
||||||
*/
|
*/
|
||||||
int __cdecl __attribute__((visibility("default")))
|
int __attribute__((visibility("default"))) main(int argc, char* argv[]) {
|
||||||
main(int argc, char* argv[]) {
|
|
||||||
set_realtime_priority();
|
set_realtime_priority();
|
||||||
|
|
||||||
// Instead of directly hosting a plugin, this process will receive a UNIX
|
// Instead of directly hosting a plugin, this process will receive a UNIX
|
||||||
|
|||||||
@@ -31,12 +31,8 @@
|
|||||||
* This is the default plugin host application. It will load the specified
|
* This is the default plugin host application. It will load the specified
|
||||||
* plugin plugin, and then connect back to the `libyabridge-{vst2,vst3}.so`
|
* plugin plugin, and then connect back to the `libyabridge-{vst2,vst3}.so`
|
||||||
* instance that spawned this over the socket.
|
* instance that spawned this over the socket.
|
||||||
*
|
|
||||||
* The explicit calling convention is needed to work around a bug introduced in
|
|
||||||
* Wine 5.7: https://bugs.winehq.org/show_bug.cgi?id=49138
|
|
||||||
*/
|
*/
|
||||||
int __cdecl __attribute__((visibility("default")))
|
int __attribute__((visibility("default"))) main(int argc, char* argv[]) {
|
||||||
main(int argc, char* argv[]) {
|
|
||||||
set_realtime_priority();
|
set_realtime_priority();
|
||||||
|
|
||||||
// We pass plugin format, the name of the VST2 plugin .dll file or VST3
|
// We pass plugin format, the name of the VST2 plugin .dll file or VST3
|
||||||
|
|||||||
Reference in New Issue
Block a user