1
0
Fork 0

Rename the Soft Vacuum package

This commit is contained in:
Robbert van der Helm 2023-04-05 20:07:13 +02:00
parent ad5f0ce72a
commit e1c7508624
11 changed files with 14 additions and 14 deletions

16
Cargo.lock generated
View file

@ -348,14 +348,6 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "aw_soft_vacuum"
version = "0.1.0"
dependencies = [
"approx 0.5.1",
"nih_plug",
]
[[package]]
name = "backtrace"
version = "0.3.67"
@ -3760,6 +3752,14 @@ dependencies = [
"winapi",
]
[[package]]
name = "soft_vacuum"
version = "0.1.0"
dependencies = [
"approx 0.5.1",
"nih_plug",
]
[[package]]
name = "spectral_compressor"
version = "0.4.3"

View file

@ -31,7 +31,7 @@ members = [
"plugins/examples/stft",
"plugins/examples/sysex",
"plugins/aw_soft_vacuum",
"plugins/soft_vacuum",
"plugins/buffr_glitch",
"plugins/crisp",
"plugins/crossover",

View file

@ -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
plugin development and intense sound design sessions, but maybe you'll find it
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
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

View file

@ -4,7 +4,7 @@
# [package_name]
# name = "Human Readable Plugin Name" # defaults to <package_name>
[aw_soft_vacuum]
[soft_vacuum]
name = "Soft Vacuum"
[buffr_glitch]

View file

@ -1,10 +1,10 @@
[package]
name = "aw_soft_vacuum"
name = "soft_vacuum"
version = "0.1.0"
edition = "2021"
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
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]
crate-type = ["cdylib"]

View file

@ -24,5 +24,5 @@ After installing [Rust](https://rustup.rs/), you can compile Safety Limiter as
follows:
```shell
cargo xtask bundle aw_soft_vacuum --release
cargo xtask bundle soft_vacuum --release
```