Skip to content

Commit 36a5c1a

Browse files
committed
cardinal 23.07
Signed-off-by: falkTX <falktx@falktx.com>
1 parent 4ea2550 commit 36a5c1a

File tree

3 files changed

+134
-0
lines changed

3 files changed

+134
-0
lines changed

News.php

+134
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,140 @@
1010

1111
<a href="" target="_blank"></a>
1212

13+
<p>
14+
<span style="font-size: 20px">&gt; Cardinal 23.07 released</span><br/>
15+
On <i>2023-07-15</i> by<i> falkTX</i>
16+
</p>
17+
<p>
18+
Hello again everyone, it is time for another <a href="https://github.com/DISTRHO/Cardinal" target="_blank">Cardinal</a> release.<br/>
19+
<a href="https://github.com/DISTRHO/Cardinal" target="_blank">Cardinal</a>
20+
is a free and open-source virtual modular synthesizer plugin.<br/>
21+
It is based on the popular <a href="https://github.com/VCVRack/Rack/" target="_blank">VCV Rack</a>
22+
but with a focus on being a fully self-contained plugin version.
23+
</p>
24+
<p>
25+
There are quite a few nice changes this time, from finally allowing global user settings to improved audio plugin hosting.<br/>
26+
Let's go throught the main changes...
27+
</p>
28+
29+
<h3>Global user settings</h3>
30+
<p>
31+
As per user request Cardinal now defines a user directory for patches, modules settings and other details.<br/>
32+
This came as a necessity for the updated Ildaeil module, which needs to store plugin cache between runs.<br/>
33+
With this now in place, many things that Cardinal was missing compared to VCV Rack are now enabled, including:
34+
</p>
35+
<ul>
36+
<li>Allow modules to save and load settings in a known location</li>
37+
<li>Allow to save, list and load module presets and general files from a known location</li>
38+
<li>Menu action "File" -&gt; "Open recent" is now enabled</li>
39+
<li>Menu action "File" -&gt; "Overwrite template" is now enabled</li>
40+
<li>Menu action "Help" -&gt; "Open user folder" is now enabled</li>
41+
<li>Save and load user settings globally</li>
42+
</ul>
43+
<p>
44+
Please note that user settings are saved <b>per-variant</b>, so e.g. CardinalSynth and CardinalFX will have differnet settings.<br/>
45+
This is 100% intentional, and found to be generally useful - we want to have different base templates and favorites on Synth vs FX.<br/>
46+
</p>
47+
<p>
48+
Also, something not done on VCV Rack side, a "File" -&gt; "New (factory template)" is now available.<br/>
49+
This allows to load the Cardinal's original template instead of the user-saved one.
50+
</p>
51+
52+
<h3>Ildaeil plugin hosting</h3>
53+
<p>
54+
The Ildaeil module allows to load audio plugins (such as LV2 and VST3) inside Cardinal.<br/>
55+
With this update, Ildaeil will automatically scan and list binary plugins, bringing support for LADSPA, DSSI, VST2, VST3 and CLAP.<br/>
56+
When supported by the plugin Ildaeil will also show the list of available presets.
57+
</p>
58+
<p>
59+
<img src="/screenshots/news/cardinal-23.07-ildaeil.png" alt="cardinal+ildaeil"/>
60+
</p>
61+
62+
<h3>AIDA-X module</h3>
63+
<p>
64+
This releases introduces a new module, a port of the <a href="https://github.com/AidaDSP/AIDA-X" target="_blank">AIDA-X audio plugin</a> (also available separately as a standalone plugin).<br/>
65+
AIDA-X is an Amp Model Player leveraging AI and machine learning, with a target of providing high fidelity simulations of guitar amplifiers.<br/>
66+
It is also possible to run entire signal chains consisting of any combination of amp, cab, dist, drive, fuzz, boost and eq.
67+
</p>
68+
<p>
69+
The module loads AIDA-X files that have been trained to match a desired sound output.<br>
70+
Right-click on the module and select "Load model file..." to load an AIDA-X model file from disk.
71+
</p>
72+
<p>
73+
A quick model pack can be downloaded from
74+
<a href="https://drive.google.com/drive/folders/18MwNhuo9fjK8hlne6SAdhpGtL4bWsVz-" target="_blank">AIDA DSP's Google Drive folder</a>.<br>
75+
Check out the
76+
<a href="https://forum.mod.audio/c/neural/62" target="_blank">MOD Forum's Neural Modelling section</a> for an online place for discussion, sharing and all things related to Amp Models.
77+
</p>
78+
<p>
79+
<img src="/screenshots/news/cardinal-23.07-aida-x.png" alt="cardinal+aida-x"/>
80+
</p>
81+
82+
<h3>Web browser persistent storage</h3>
83+
<p>
84+
A nice little addition to the Cardinal's online web version (running at <a href="https://cardinal.kx.studio/" target="_blank">cardinal.kx.studio</a> or easily self-hostable) is browser-side peristent storage.<br>
85+
This means we are able to locally save patches and user settings on the web version of Cardnal, making it a little bit more useful and not purely a test tool.<br>
86+
Previously saved patches can be accessed via "File" -&gt; "Open local patch" menu.
87+
</p>
88+
<p>
89+
Also on the web version, it will now automatically detect lack of Web-SIMD support and load a non-optimized version of Cardinal.<br>
90+
This allows to load Cardinal on Safari and other WebKit based browsers, or any other that does not support Web-SIMD.<br>
91+
Worth noting that latest WebKit has finally added support for Web-SIMD, so this is more of a temporary measure until the update is rolled out everywhere.
92+
</p>
93+
94+
<p>
95+
There are a few module updates too, and some important bug fixes too, see the changelog below.
96+
</p>
97+
<h3>Changelog</h3>
98+
<ul>
99+
<li>Add AIDA-X module</li>
100+
<li>Add Bogaudio AD to mini variant</li>
101+
<li>Add (binary) plugin scanning to Ildaeil plugin hosting (LADSPA, DSSI, VST2, VST3 and CLAP)</li>
102+
<li>Add plugin presets to Ildaeil, when exposed on the plugin side</li>
103+
<li>Add VST2 plugin folder option to Windows installer</li>
104+
<li>Allow custom URL for remote instance connections</li>
105+
<li>Allow usage of local user directory and configs, expose related options</li>
106+
<li>Fix focus to input text dialogs</li>
107+
<li>Fix missing menubar cpu usage</li>
108+
<li>Invert scroll X direction</li>
109+
<li>Rework file menu</li>
110+
<li>Update base VCV Rack to v2.3.0</li>
111+
<li>Update Sapphire to v2.2.2 (adds Tube Unit)</li>
112+
<li>Update MindMeldModular and SurgeXT, for Rack 2.3 compatibility</li>
113+
</ul>
114+
115+
<p><b>Build related changes</b></p>
116+
117+
<ul>
118+
<li>Bump minimum required macOS version to 10.15</li>
119+
<li>Fix build with GCC13</li>
120+
<li>Fix missing `make install` of mini variant</li>
121+
<li>LTO no longer enabled by default for release builds</li>
122+
<li>Only enable remote OSC control in headless builds</li>
123+
<li>Remove `NOPLUGINS` build option</li>
124+
<li>Remove use of `mingw-std-threads`</li>
125+
<li>Several optimizations and build tweaks</li>
126+
</ul>
127+
128+
<p><b>Web version related changes</b></p>
129+
130+
<ul>
131+
<li>Add persistent storage (automatic on save, can be manually triggered via File menu)</li>
132+
<li>Add local (browser-side) patch loading via File menu (under "Open local patch")</li>
133+
<li>Automaticly load no-simd version on browsers that do not support web-simd</li>
134+
<li>Disable cursor lock by default</li>
135+
</ul>
136+
137+
<h3>Downloads</h3>
138+
<p>
139+
The source code plus Linux, macOS and Windows binaries can be downloaded at
140+
<a href="https://github.com/DISTRHO/Cardinal/releases/tag/23.07" target="_blank">
141+
https://github.com/DISTRHO/Cardinal/releases/tag/23.07</a>.<br/>
142+
Cardinal is released as LV2, VST2, VST3 and CLAP plugin, plus AudioUnit and JACK/Standalone for certain systems.
143+
</p>
144+
145+
<hr/>
146+
13147
<p>
14148
<span style="font-size: 20px">&gt; Ildaeil v1.3 released</span><br/>
15149
On <i>2023-07-15</i> by<i> falkTX</i>
409 KB
Loading
192 KB
Loading

0 commit comments

Comments
 (0)