Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | LV2: Added Aura, Average and AverMatrix plugins. | Harald Eilertsen | 2020-07-22 | 13 | -3/+408 |
| | | | | | | Tried a way to get the units/labels for the AverMatrix controls to better fit. It's not perfect, and I'm not sure if it's possible to make it fit 100% either. I'll have to explore this some more. | ||||
* | Added airwindows-cheatsheet from ajboni & al as submodule. | Harald Eilertsen | 2020-07-22 | 2 | -0/+3 |
| | | | | | | | | | | | The json data from that project will be very handy for getting the plugin types and descriptions correct. Original repo here: https://github.com/ajboni/airwindows-cheatsheet/ Nice searchable overview here: https://airwindowscheatsheet.aboni.dev/ | ||||
* | LV2: Add Atmosphere plugins (buss and channel.) | Harald Eilertsen | 2020-07-21 | 9 | -2/+347 |
| | |||||
* | LV2: Add template plugin and script. | Harald Eilertsen | 2020-07-21 | 5 | -0/+151 |
| | | | | | | | | | To ease booting up a new plugin. The script just reads the template files, replaces the placeholders with the new plugin name, and writes them out as the proper plugin files in the right directory. Primitive, but does the job. The script should work with any version of ruby. | ||||
* | LV2: Add plugin AQuickVoiceClip | Harald Eilertsen | 2020-07-20 | 5 | -1/+176 |
| | |||||
* | LV2: Add plugin Apicolypse. | Harald Eilertsen | 2020-07-20 | 5 | -1/+147 |
| | |||||
* | LV2: Refactor in, out and params to base class. | Harald Eilertsen | 2020-07-20 | 9 | -290/+48 |
| | | | | | | | | | Base class is now a template taking number of params, inputs and outputs as template args. The last two defaults to 2 (stereo pair), but number of params have to be given. Now if only we could find a smart template for generating the run function too... | ||||
* | LV2: Add plugin Air | Harald Eilertsen | 2020-07-19 | 5 | -1/+284 |
| | |||||
* | LV2: Add plugin ADT. | Harald Eilertsen | 2020-07-19 | 5 | -1/+247 |
| | |||||
* | LV2: Refactor common code to base class. | Harald Eilertsen | 2020-07-19 | 5 | -37/+32 |
| | |||||
* | LV2: Refactor common LV2Wrapper. | Harald Eilertsen | 2020-07-19 | 8 | -140/+89 |
| | | | | | Move the common wrapper code into a template class that can be instantiated from each plugin. | ||||
* | LV2: Port plugin ADClip7. | Harald Eilertsen | 2020-07-18 | 6 | -1/+305 |
| | | | | | See https://www.airwindows.com/adclip-7/ for a great introduction to what this plugin does. | ||||
* | LV2: Add readme and license files. | Harald Eilertsen | 2020-07-18 | 3 | -0/+107 |
| | | | | | Also add a README in the root of the project to clarify that this is merely a port of the official plugins. | ||||
* | LV2: Move built plugins to an lv2 subfolder under the build dir. | Harald Eilertsen | 2020-07-18 | 1 | -4/+4 |
| | |||||
* | LV2: Tighten compiler warnings and drop optimization | Harald Eilertsen | 2020-07-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | We want as much warnings as we can get, and we treat any warnings not explicitly disabled as an error. We have to explicitly disable the `unused-value` warning, as the VST processing code triggers it. This patch also removes the hardwired optimization flag, as that is better handled by the built in build type mechanism of cmake. Build as a release build to get full optimizations: mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. Similarly specify `CMAKE_BUILD_TYPE=Debug` for debug builds. | ||||
* | LV2/Acceleration: Use the LinuxVST processing code | Harald Eilertsen | 2020-07-18 | 2 | -6/+59 |
| | |||||
* | LV2: Split lv2 interface code and actual plugin. | Harald Eilertsen | 2020-07-16 | 3 | -115/+131 |
| | | | | | | | Let's keep the LV2 interfacing and the actual plugin separate. For now the actual plugin is completely independent of the plugin system, and the wrapper code just forwards everything that's plugin specific to the plugin proper. | ||||
* | LV2: Move actual processing into Acceleration class. | Harald Eilertsen | 2020-07-16 | 1 | -34/+50 |
| | |||||
* | LV2: Make Acceleration class instead of POD struct. | Harald Eilertsen | 2020-07-16 | 1 | -5/+6 |
| | | | | | The sneaky plan is to have this make use of the processing function(s) from the LinuxVST variant, so we don't have to copy code. | ||||
* | LV2: Add stereo ports to Acceleration. | Harald Eilertsen | 2020-07-15 | 2 | -16/+37 |
| | |||||
* | LV2: Fix ttl manifest and plugin description. | Harald Eilertsen | 2020-07-15 | 2 | -7/+7 |
| | | | | | It appears the `doap:name` property needs to be in the `manifest.ttl`, so then we move both doap properties there. | ||||
* | LV2: Just copy input to output for now. | Harald Eilertsen | 2020-07-15 | 1 | -0/+3 |
| | |||||
* | LV2: Use anon namespace instead of static funcs. | Harald Eilertsen | 2020-07-15 | 1 | -5/+44 |
| | |||||
* | Start off on LV2 support. | Harald Eilertsen | 2020-07-12 | 6 | -0/+354 |
| | |||||
* | DeRez Dither Updates (Beam, Dark, NJAD) | Chris Johnson | 2020-07-05 | 41 | -1617/+1797 |
| | |||||
* | BrightAmbience | Chris Johnson | 2020-06-28 | 44 | -0/+12649 |
| | |||||
* | Beam | Chris Johnson | 2020-06-21 | 44 | -0/+11391 |
| | |||||
* | Dark Redux | Chris Johnson | 2020-06-14 | 16 | -173/+255 |
| | |||||
* | AverMatrix and Dark | Chris Johnson | 2020-06-08 | 87 | -0/+22302 |
| | |||||
* | Laserbat spotted an interesting bug in legacy NJAD code! | Chris Johnson | 2020-05-28 | 21 | -80/+80 |
| | |||||
* | ChromeOxide | Chris Johnson | 2020-05-24 | 44 | -0/+11621 |
| | |||||
* | Elation | Chris Johnson | 2020-05-17 | 44 | -0/+12415 |
| | |||||
* | PurestFade | Chris Johnson | 2020-05-03 | 44 | -0/+11159 |
| | |||||
* | Precious | Chris Johnson | 2020-04-26 | 44 | -0/+11688 |
| | |||||
* | Tape Redux | Chris Johnson | 2020-04-19 | 16 | -97/+160 |
| | | | | Modifications to allow for a Bump control that enables level setting on the head bump | ||||
* | Distortion | Chris Johnson | 2020-04-12 | 44 | -0/+11431 |
| | |||||
* | Cider | Chris Johnson | 2020-03-29 | 44 | -0/+11706 |
| | |||||
* | Calibre | Chris Johnson | 2020-03-22 | 44 | -0/+11705 |
| | |||||
* | Luxor | Chris Johnson | 2020-03-09 | 44 | -0/+11701 |
| | |||||
* | DigitalBlack | Chris Johnson | 2020-03-01 | 44 | -0/+11137 |
| | |||||
* | Apicolypse | Chris Johnson | 2020-02-23 | 44 | -0/+11721 |
| | |||||
* | Neverland | Chris Johnson | 2020-02-09 | 44 | -0/+11684 |
| | |||||
* | Tape plugins update | Chris Johnson | 2020-02-04 | 18 | -226/+360 |
| | |||||
* | Tape. Just 'Tape'. | Chris Johnson | 2020-01-26 | 44 | -0/+12380 |
| | |||||
* | ToTape6 | Chris Johnson | 2020-01-20 | 44 | -0/+12928 |
| | |||||
* | Srsly | Chris Johnson | 2020-01-05 | 45 | -0/+12323 |
| | |||||
* | Inexplicable Bugfix: Baxandall | Chris Johnson | 2019-12-30 | 8 | -46/+49 |
| | | | | This frequency must be twice as high as it's supposed to be, for no reason that I can understand | ||||
* | Baxandall | Chris Johnson | 2019-12-29 | 44 | -0/+11434 |
| | |||||
* | BiquadOneHalf | Chris Johnson | 2019-12-22 | 44 | -0/+11638 |
| | |||||
* | Coils (bugfix before actual release) | Chris Johnson | 2019-12-15 | 8 | -76/+119 |
| |