Commit b200856
2 files changed
+78
-27
lines changed- Makefile.base.mk+24-4
- Makefile.plugins.mk+47-9
- cmake/DPF-plugin.cmake+52-1
- dgl/Base.hpp+17-13
- dgl/EventHandlers.hpp+2-2
- dgl/Makefile+1
- dgl/Window.hpp+1
- dgl/src/ApplicationPrivateData.cpp+33-9
- dgl/src/ApplicationPrivateData.hpp+6
- dgl/src/Cairo.cpp+7-7
- dgl/src/EventHandlers.cpp+5-5
- dgl/src/Layout.cpp+13-13
- dgl/src/OpenGL.cpp+11-11
- dgl/src/SubWidget.cpp+2-2
- dgl/src/Window.cpp+27-17
- dgl/src/WindowPrivateData.cpp+13-7
- dgl/src/WindowPrivateData.hpp+11-7
- dgl/src/pugl-upstream+1-1
- dgl/src/pugl.cpp+25-15
- distrho/DistrhoDetails.hpp+7-2
- distrho/DistrhoInfo.hpp+30-1
- distrho/DistrhoPlugin.hpp+19-2
- distrho/DistrhoPluginMain.cpp+6-2
- distrho/DistrhoUIMain.cpp+7-2
- distrho/DistrhoUtils.hpp+58-4
- distrho/extra/FileBrowserDialogImpl.cpp+38-3
- distrho/src/DistrhoDefines.h+3
- distrho/src/DistrhoPlugin.cpp+2-1
- distrho/src/DistrhoPluginAU.cpp+3.2k
- distrho/src/DistrhoPluginCLAP.cpp+16-24
- distrho/src/DistrhoPluginChecks.h+66-14
- distrho/src/DistrhoPluginExport.cpp+281
- distrho/src/DistrhoPluginInternal.hpp+44-10
- distrho/src/DistrhoPluginJACK.cpp+11-5
- distrho/src/DistrhoPluginLV2.cpp+11-23
- distrho/src/DistrhoPluginLV2export.cpp+6-4
- distrho/src/DistrhoPluginVST.hpp+1-1
- distrho/src/DistrhoPluginVST2.cpp+25-29
- distrho/src/DistrhoPluginVST3.cpp+49-43
- distrho/src/DistrhoUI.cpp+3-3
- distrho/src/DistrhoUIAU.mm+502
- distrho/src/DistrhoUIDSSI.cpp+12-3
- distrho/src/DistrhoUIInternal.hpp+5-2
- distrho/src/DistrhoUILV2.cpp+4-1
- distrho/src/DistrhoUIPrivateData.hpp+31-12
- distrho/src/DistrhoUIVST3.cpp+6-4
- distrho/src/DistrhoUtils.cpp+5-3
- examples/CairoUI/CairoExamplePlugin.cpp+1-10
- examples/CairoUI/DistrhoPluginInfo.h+17-1
- examples/CairoUI/Makefile+1-1
- examples/Info/DistrhoPluginInfo.h+4-1
- examples/Info/InfoExamplePlugin.cpp+1-10
- examples/Info/InfoExampleUI.cpp+16-6
- examples/Info/Makefile+1
- examples/Meters/DistrhoPluginInfo.h+4-1
- examples/Meters/ExamplePluginMeters.cpp+1-10
- examples/Meters/Makefile+1
- examples/MidiThrough/DistrhoPluginInfo.h+4-1
- examples/MidiThrough/Makefile+1
- examples/MidiThrough/MidiThroughExamplePlugin.cpp+1-10
- examples/Parameters/DistrhoPluginInfo.h+4-1
- examples/Parameters/ExamplePluginParameters.cpp+1-10
- examples/Parameters/ExampleUIParameters.cpp+6
- examples/Parameters/Makefile+1
- examples/SendNote/DistrhoPluginInfo.h+4-1
- examples/SendNote/Makefile+1
- examples/SendNote/SendNoteExamplePlugin.cpp+1-10
- examples/States/DistrhoPluginInfo.h+4-1
- examples/States/ExamplePluginStates.cpp+1-10
- examples/States/Makefile+1
- utils/au-services-restart.sh+7
- utils/generate-ttl.sh+1-1
- utils/package-osx-bundles.sh+14-5
- utils/state2json.cpp+139
- utils/symbols/au.exp+1
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
19 | 28 | | |
20 | 29 | | |
21 | 30 | | |
| |||
30 | 39 | | |
31 | 40 | | |
32 | 41 | | |
33 | | - | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
34 | 51 | | |
35 | 52 | | |
36 | | - | |
37 | | - | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
38 | 57 | | |
39 | | - | |
| 58 | + | |
40 | 59 | | |
41 | 60 | | |
42 | | - | |
| 61 | + | |
43 | 62 | | |
44 | 63 | | |
45 | 64 | | |
46 | 65 | | |
47 | 66 | | |
48 | 67 | | |
49 | | - | |
| 68 | + | |
50 | 69 | | |
51 | | - | |
| 70 | + | |
52 | 71 | | |
53 | | - | |
| 72 | + | |
54 | 73 | | |
55 | 74 | | |
56 | 75 | | |
57 | 76 | | |
58 | 77 | | |
59 | 78 | | |
60 | | - | |
| 79 | + | |
61 | 80 | | |
62 | | - | |
| 81 | + | |
63 | 82 | | |
64 | | - | |
| 83 | + | |
65 | 84 | | |
66 | 85 | | |
67 | 86 | | |
68 | 87 | | |
69 | 88 | | |
70 | 89 | | |
71 | | - | |
| 90 | + | |
72 | 91 | | |
73 | | - | |
| 92 | + | |
74 | 93 | | |
75 | | - | |
| 94 | + | |
76 | 95 | | |
77 | 96 | | |
78 | 97 | | |
79 | | - | |
| 98 | + | |
80 | 99 | | |
81 | 100 | | |
82 | | - | |
83 | | - | |
| 101 | + | |
| 102 | + | |
84 | 103 | | |
85 | | - | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
86 | 118 | | |
87 | 119 | | |
88 | | - | |
89 | | - | |
90 | | - | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
91 | 142 | | |
92 | 143 | | |
93 | 144 | | |
94 | 145 | | |
95 | 146 | | |
96 | | - | |
97 | | - | |
| 147 | + | |
| 148 | + | |
98 | 149 | | |
99 | | - | |
| 150 | + | |
100 | 151 | | |
101 | | - | |
| 152 | + | |
102 | 153 | | |
103 | 154 | | |
104 | 155 | | |
| |||
0 commit comments