Remove beta status, change some writing
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
0037795663
commit
8e1076caed
3 changed files with 21 additions and 10 deletions
26
README.md
26
README.md
|
@ -2,18 +2,24 @@
|
||||||
|
|
||||||
*Cardinal, the Rack!*
|
*Cardinal, the Rack!*
|
||||||
|
|
||||||
**! THIS PROJECT IS A WORK IN PROGRESS !**
|
A virtual Eurorack modular synthesizer platform,
|
||||||
|
available as JACK standalone and LV2, VST2 and VST3 audio plugin for Linux, macOS and Windows.
|
||||||
|
|
||||||
This is a [DPF-based](https://github.com/DISTRHO/DPF/) plugin wrapper around [VCV Rack](https://github.com/VCVRack/Rack/),
|
This is a [DPF-based](https://github.com/DISTRHO/DPF/) plugin wrapper around [VCV Rack](https://github.com/VCVRack/Rack/),
|
||||||
using its code directly instead of forking the project.
|
using its code directly instead of forking the project.
|
||||||
The target is to have a **proper, self-contained, fully free and open-source plugin version of Rack**.
|
The target is to have a **proper, self-contained, fully free and open-source plugin version of Rack**.
|
||||||
See [project overview](doc/OVERVIEW.md) document for an overview on how the project source code is structured.
|
See the [why section](#Why) below for the reasons Cardinal exists,
|
||||||
|
also perhaps the [project overview document](doc/OVERVIEW.md) for an overview on how the project source code is structured.
|
||||||
|
|
||||||
Cardinal contains Rack, some 3rd-party modules and a few internal utilities all in a single binary.
|
Cardinal contains Rack, some 3rd-party modules and a few internal utilities all in a single binary.
|
||||||
It does not load external modules and does not connect to the official Rack library/store.
|
All "Core" modules from Rack have been replaced by Cardinal equivalents, simplified to better work for an audio plugin.
|
||||||
|
|
||||||
|
Cardinal does not load external modules and does not connect to the official Rack library/store.
|
||||||
|
All VCV branding has been removed (to the best of our knowledge) in order to avoid any trademark issues.
|
||||||
|
|
||||||
|
Because it is using DPF, Cardinal already supports LV2 and VST2 with an extra JACK standalone mode for some systems.
|
||||||
|
The VST3 version is in progress, already part of the build but still experimental.
|
||||||
|
|
||||||
Because it is using DPF, Cardinal already supports LV2 and VST2 with an extra JACK standalone mode if self-compiled.
|
|
||||||
A VST3 version is in progress, already part of the build but still experimental.
|
|
||||||
|
|
||||||
## Plugin variants
|
## Plugin variants
|
||||||
|
|
||||||
|
@ -40,6 +46,7 @@ Plugin type is set as "instrument".
|
||||||
This variant provides 2 audio inputs and outputs, but no CV ports.
|
This variant provides 2 audio inputs and outputs, but no CV ports.
|
||||||
Plugin type is set as regular "effect".
|
Plugin type is set as regular "effect".
|
||||||
|
|
||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
Because people will ask for it. It is, well... Rack.
|
Because people will ask for it. It is, well... Rack.
|
||||||
|
@ -48,10 +55,11 @@ But a couple of modules background's have their colors flipped, because damn we
|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
|
||||||
## Current status
|
## Current status
|
||||||
|
|
||||||
Most of the features already work, you can assume things work in general except when stated otherwise.
|
With the exception of a few bugs, Cardinal can be considered stable.
|
||||||
Currently the following features are known NOT to work:
|
Though currently the following features are known NOT to work:
|
||||||
|
|
||||||
- VST3 support incomplete/experimental [#41](https://github.com/DISTRHO/Cardinal/issues/41)
|
- VST3 support incomplete/experimental [#41](https://github.com/DISTRHO/Cardinal/issues/41)
|
||||||
- Factory (plugin-provided) presets [#58](https://github.com/DISTRHO/Cardinal/issues/58)
|
- Factory (plugin-provided) presets [#58](https://github.com/DISTRHO/Cardinal/issues/58)
|
||||||
|
@ -68,11 +76,13 @@ Basic building instructions are available in [BUILDING.md](doc/BUILDING.md)
|
||||||
Currently we are all on #cardinal IRC room in irc.libera.chat server.
|
Currently we are all on #cardinal IRC room in irc.libera.chat server.
|
||||||
Come join us in your favorite IRC client or through a Matrix bridge.
|
Come join us in your favorite IRC client or through a Matrix bridge.
|
||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Cardinal is licensed under GPLv3+, see [LICENSE](LICENSE) for more details.
|
Cardinal is licensed under GPLv3+, see [LICENSE](LICENSE) for more details.
|
||||||
An overview of the included code and linked submodules can be seen [here](doc/LICENSES.md#code-license--binary).
|
An overview of the included code and linked submodules can be seen [here](doc/LICENSES.md#code-license--binary).
|
||||||
|
|
||||||
|
|
||||||
## Included modules
|
## Included modules
|
||||||
|
|
||||||
At the moment the following 3rd-party modules are provided:
|
At the moment the following 3rd-party modules are provided:
|
||||||
|
@ -140,6 +150,7 @@ Even the Rack "Component Library" (which can be considered the base widget eleme
|
||||||
|
|
||||||
Any artwork that uses a custom license has had explicit permission to be used in Cardinal.
|
Any artwork that uses a custom license has had explicit permission to be used in Cardinal.
|
||||||
|
|
||||||
|
|
||||||
## Why
|
## Why
|
||||||
|
|
||||||
Cardinal was created first and foremost as a way to have Rack as a **proper open-source audio plugin**.
|
Cardinal was created first and foremost as a way to have Rack as a **proper open-source audio plugin**.
|
||||||
|
@ -172,6 +183,7 @@ Other relevant reasons include:
|
||||||
- Works as a test case for [DPF](https://github.com/DISTRHO/DPF/) and [Carla](https://github.com/falkTX/Carla/)
|
- Works as a test case for [DPF](https://github.com/DISTRHO/DPF/) and [Carla](https://github.com/falkTX/Carla/)
|
||||||
- It is fun :)
|
- It is fun :)
|
||||||
|
|
||||||
|
|
||||||
## Vs. Rack Pro
|
## Vs. Rack Pro
|
||||||
|
|
||||||
It needs to be said that Cardinal project and its author(s) do not wish anything bad to the original/official Rack project.
|
It needs to be said that Cardinal project and its author(s) do not wish anything bad to the original/official Rack project.
|
||||||
|
|
|
@ -46,4 +46,4 @@ If you are a package maintainer, use the flag `SYSDEPS=true` to use the system d
|
||||||
|
|
||||||
Currently, the only existing packages we are aware of are in Arch's AUR: [cardinal.lv2-git](https://aur.archlinux.org/packages/cardinal.lv2-git/) and [cardinal-git](https://aur.archlinux.org/packages/cardinal-git/).
|
Currently, the only existing packages we are aware of are in Arch's AUR: [cardinal.lv2-git](https://aur.archlinux.org/packages/cardinal.lv2-git/) and [cardinal-git](https://aur.archlinux.org/packages/cardinal-git/).
|
||||||
|
|
||||||
Feel free to get in touch via Discussions tab or on [IRC](../README.md#community-chat)
|
Feel free to get in touch via Discussions tab or on [IRC](../README.md#community-chat)
|
||||||
|
|
|
@ -162,12 +162,11 @@ Bellow follows a list of artwork licenses from potentially coming plugins.
|
||||||
|
|
||||||
### Rack
|
### Rack
|
||||||
|
|
||||||
Below is a list of artwork licenses from Rack (note most of these will be unused soon)
|
Below is a list of artwork licenses from Rack
|
||||||
|
|
||||||
| Name | License(s) |
|
| Name | License(s) |
|
||||||
|---------------------------------|------------------|
|
|---------------------------------|------------------|
|
||||||
| ComponentLibrary/* | CC-BY-NC-4.0 |
|
| ComponentLibrary/* | CC-BY-NC-4.0 |
|
||||||
| Core/* | CC-BY-NC-ND-4.0 |
|
|
||||||
| fonts/DejaVuSans.ttf | Bitstream-Vera |
|
| fonts/DejaVuSans.ttf | Bitstream-Vera |
|
||||||
| fonts/DSEG*.ttf | OFL-1.1-RFN |
|
| fonts/DSEG*.ttf | OFL-1.1-RFN |
|
||||||
| fonts/Nunito-Bold.ttf | OFL-1.1-RFN |
|
| fonts/Nunito-Bold.ttf | OFL-1.1-RFN |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue