Rename the Soft Vacuum package
This commit is contained in:
parent
ad5f0ce72a
commit
e1c7508624
16
Cargo.lock
generated
16
Cargo.lock
generated
|
@ -348,14 +348,6 @@ version = "1.1.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "aw_soft_vacuum"
|
|
||||||
version = "0.1.0"
|
|
||||||
dependencies = [
|
|
||||||
"approx 0.5.1",
|
|
||||||
"nih_plug",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "backtrace"
|
name = "backtrace"
|
||||||
version = "0.3.67"
|
version = "0.3.67"
|
||||||
|
@ -3760,6 +3752,14 @@ dependencies = [
|
||||||
"winapi",
|
"winapi",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "soft_vacuum"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"approx 0.5.1",
|
||||||
|
"nih_plug",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spectral_compressor"
|
name = "spectral_compressor"
|
||||||
version = "0.4.3"
|
version = "0.4.3"
|
||||||
|
|
|
@ -31,7 +31,7 @@ members = [
|
||||||
"plugins/examples/stft",
|
"plugins/examples/stft",
|
||||||
"plugins/examples/sysex",
|
"plugins/examples/sysex",
|
||||||
|
|
||||||
"plugins/aw_soft_vacuum",
|
"plugins/soft_vacuum",
|
||||||
"plugins/buffr_glitch",
|
"plugins/buffr_glitch",
|
||||||
"plugins/crisp",
|
"plugins/crisp",
|
||||||
"plugins/crossover",
|
"plugins/crossover",
|
||||||
|
|
|
@ -73,7 +73,7 @@ Scroll down for more information on the underlying plugin framework.
|
||||||
again when the input returns back to safe levels. Made for personal use during
|
again when the input returns back to safe levels. Made for personal use during
|
||||||
plugin development and intense sound design sessions, but maybe you'll find it
|
plugin development and intense sound design sessions, but maybe you'll find it
|
||||||
useful too!
|
useful too!
|
||||||
- [**Soft Vacuum**](plugins/aw_soft_vacuum) is a straightforward port of
|
- [**Soft Vacuum**](plugins/soft_vacuum) is a straightforward port of
|
||||||
Airwindows' [Hard Vacuum](https://www.airwindows.com/hard-vacuum-vst/) plugin
|
Airwindows' [Hard Vacuum](https://www.airwindows.com/hard-vacuum-vst/) plugin
|
||||||
with 4x linear-phase oversampling and parameter smoothing, because I like the
|
with 4x linear-phase oversampling and parameter smoothing, because I like the
|
||||||
distortion effect and wish it had oversampling. All credit goes to Chris from
|
distortion effect and wish it had oversampling. All credit goes to Chris from
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# [package_name]
|
# [package_name]
|
||||||
# name = "Human Readable Plugin Name" # defaults to <package_name>
|
# name = "Human Readable Plugin Name" # defaults to <package_name>
|
||||||
|
|
||||||
[aw_soft_vacuum]
|
[soft_vacuum]
|
||||||
name = "Soft Vacuum"
|
name = "Soft Vacuum"
|
||||||
|
|
||||||
[buffr_glitch]
|
[buffr_glitch]
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aw_soft_vacuum"
|
name = "soft_vacuum"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
homepage = "https://github.com/robbert-vdh/nih-plug/tree/master/plugins/aw_soft_vacuum"
|
homepage = "https://github.com/robbert-vdh/nih-plug/tree/master/plugins/soft_vacuum"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
|
@ -24,5 +24,5 @@ After installing [Rust](https://rustup.rs/), you can compile Safety Limiter as
|
||||||
follows:
|
follows:
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
cargo xtask bundle aw_soft_vacuum --release
|
cargo xtask bundle soft_vacuum --release
|
||||||
```
|
```
|
Loading…
Reference in a new issue