From 7a01b57735bb0cb18da048e4eb5b303b85b30c4d Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 9 Jan 2024 19:26:52 +0100 Subject: [PATCH] Update the copyright headers Happy new year! --- LICENSE | 2 +- plugins/buffr_glitch/src/buffer.rs | 2 +- plugins/buffr_glitch/src/envelope.rs | 2 +- plugins/buffr_glitch/src/lib.rs | 2 +- plugins/crisp/src/editor.rs | 2 +- plugins/crisp/src/filter.rs | 2 +- plugins/crisp/src/lib.rs | 2 +- plugins/crisp/src/pcg.rs | 2 +- plugins/crossover/src/crossover.rs | 2 +- plugins/crossover/src/crossover/fir.rs | 2 +- plugins/crossover/src/crossover/fir/filter.rs | 2 +- plugins/crossover/src/crossover/iir.rs | 2 +- plugins/crossover/src/crossover/iir/biquad.rs | 2 +- plugins/crossover/src/lib.rs | 2 +- plugins/diopser/src/editor.rs | 2 +- plugins/diopser/src/editor/analyzer.rs | 2 +- plugins/diopser/src/editor/button.rs | 2 +- plugins/diopser/src/editor/slider.rs | 2 +- plugins/diopser/src/editor/xy_pad.rs | 2 +- plugins/diopser/src/filter.rs | 2 +- plugins/diopser/src/lib.rs | 2 +- plugins/diopser/src/spectrum.rs | 2 +- plugins/loudness_war_winner/src/filter.rs | 2 +- plugins/loudness_war_winner/src/lib.rs | 2 +- plugins/puberty_simulator/src/lib.rs | 2 +- plugins/safety_limiter/src/lib.rs | 2 +- plugins/soft_vacuum/src/hard_vacuum.rs | 2 +- plugins/soft_vacuum/src/lib.rs | 2 +- plugins/soft_vacuum/src/oversampling.rs | 2 +- plugins/spectral_compressor/Cargo.toml | 4 ++-- plugins/spectral_compressor/src/analyzer.rs | 2 +- plugins/spectral_compressor/src/compressor_bank.rs | 2 +- plugins/spectral_compressor/src/dry_wet_mixer.rs | 2 +- plugins/spectral_compressor/src/editor.rs | 2 +- plugins/spectral_compressor/src/editor/analyzer.rs | 2 +- plugins/spectral_compressor/src/editor/mode_button.rs | 2 +- plugins/spectral_compressor/src/lib.rs | 2 +- 37 files changed, 38 insertions(+), 38 deletions(-) diff --git a/LICENSE b/LICENSE index add01c69..b5699300 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ ISC License -Copyright (c) 2022-2023 Robbert van der Helm +Copyright (c) 2022-2024 Robbert van der Helm Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/plugins/buffr_glitch/src/buffer.rs b/plugins/buffr_glitch/src/buffer.rs index 7ba82c88..a3bb7c3b 100644 --- a/plugins/buffr_glitch/src/buffer.rs +++ b/plugins/buffr_glitch/src/buffer.rs @@ -1,5 +1,5 @@ // Buffr Glitch: a MIDI-controlled buffer repeater -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/buffr_glitch/src/envelope.rs b/plugins/buffr_glitch/src/envelope.rs index ad9f8da3..764ed31b 100644 --- a/plugins/buffr_glitch/src/envelope.rs +++ b/plugins/buffr_glitch/src/envelope.rs @@ -1,5 +1,5 @@ // Buffr Glitch: a MIDI-controlled buffer repeater -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/buffr_glitch/src/lib.rs b/plugins/buffr_glitch/src/lib.rs index c7276b7d..3ce6a976 100644 --- a/plugins/buffr_glitch/src/lib.rs +++ b/plugins/buffr_glitch/src/lib.rs @@ -1,5 +1,5 @@ // Buffr Glitch: a MIDI-controlled buffer repeater -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crisp/src/editor.rs b/plugins/crisp/src/editor.rs index 873513e6..5415bb92 100644 --- a/plugins/crisp/src/editor.rs +++ b/plugins/crisp/src/editor.rs @@ -1,5 +1,5 @@ // Crisp: a distortion plugin but not quite -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crisp/src/filter.rs b/plugins/crisp/src/filter.rs index 5e65013a..7388a2e0 100644 --- a/plugins/crisp/src/filter.rs +++ b/plugins/crisp/src/filter.rs @@ -1,5 +1,5 @@ // Crisp: a distortion plugin but not quite -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crisp/src/lib.rs b/plugins/crisp/src/lib.rs index 0cb88449..38ab609c 100644 --- a/plugins/crisp/src/lib.rs +++ b/plugins/crisp/src/lib.rs @@ -1,5 +1,5 @@ // Crisp: a distortion plugin but not quite -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crisp/src/pcg.rs b/plugins/crisp/src/pcg.rs index 2b49c109..68af187a 100644 --- a/plugins/crisp/src/pcg.rs +++ b/plugins/crisp/src/pcg.rs @@ -1,5 +1,5 @@ // Crisp: a distortion plugin but not quite -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crossover/src/crossover.rs b/plugins/crossover/src/crossover.rs index 65f90455..eb466a7d 100644 --- a/plugins/crossover/src/crossover.rs +++ b/plugins/crossover/src/crossover.rs @@ -1,5 +1,5 @@ // Crossover: clean crossovers as a multi-out plugin -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crossover/src/crossover/fir.rs b/plugins/crossover/src/crossover/fir.rs index d889161a..1b4c3884 100644 --- a/plugins/crossover/src/crossover/fir.rs +++ b/plugins/crossover/src/crossover/fir.rs @@ -1,5 +1,5 @@ // Crossover: clean crossovers as a multi-out plugin -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crossover/src/crossover/fir/filter.rs b/plugins/crossover/src/crossover/fir/filter.rs index 59156bfa..e8fe6276 100644 --- a/plugins/crossover/src/crossover/fir/filter.rs +++ b/plugins/crossover/src/crossover/fir/filter.rs @@ -1,5 +1,5 @@ // Crossover: clean crossovers as a multi-out plugin -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crossover/src/crossover/iir.rs b/plugins/crossover/src/crossover/iir.rs index a95553b8..9a21fc41 100644 --- a/plugins/crossover/src/crossover/iir.rs +++ b/plugins/crossover/src/crossover/iir.rs @@ -1,5 +1,5 @@ // Crossover: clean crossovers as a multi-out plugin -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crossover/src/crossover/iir/biquad.rs b/plugins/crossover/src/crossover/iir/biquad.rs index 69d2aa2e..5685ae8a 100644 --- a/plugins/crossover/src/crossover/iir/biquad.rs +++ b/plugins/crossover/src/crossover/iir/biquad.rs @@ -1,5 +1,5 @@ // Crossover: clean crossovers as a multi-out plugin -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/crossover/src/lib.rs b/plugins/crossover/src/lib.rs index 5f163957..ab39da0e 100644 --- a/plugins/crossover/src/lib.rs +++ b/plugins/crossover/src/lib.rs @@ -1,5 +1,5 @@ // Crossover: clean crossovers as a multi-out plugin -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/diopser/src/editor.rs b/plugins/diopser/src/editor.rs index c255ee38..7c4a0283 100644 --- a/plugins/diopser/src/editor.rs +++ b/plugins/diopser/src/editor.rs @@ -1,5 +1,5 @@ // Diopser: a phase rotation plugin -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/diopser/src/editor/analyzer.rs b/plugins/diopser/src/editor/analyzer.rs index 6aeb9f9c..86aed922 100644 --- a/plugins/diopser/src/editor/analyzer.rs +++ b/plugins/diopser/src/editor/analyzer.rs @@ -1,5 +1,5 @@ // Diopser: a phase rotation plugin -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/diopser/src/editor/button.rs b/plugins/diopser/src/editor/button.rs index 083b778b..813a9e80 100644 --- a/plugins/diopser/src/editor/button.rs +++ b/plugins/diopser/src/editor/button.rs @@ -1,5 +1,5 @@ // Diopser: a phase rotation plugin -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/diopser/src/editor/slider.rs b/plugins/diopser/src/editor/slider.rs index 230bff5c..6e2f4125 100644 --- a/plugins/diopser/src/editor/slider.rs +++ b/plugins/diopser/src/editor/slider.rs @@ -1,5 +1,5 @@ // Diopser: a phase rotation plugin -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/diopser/src/editor/xy_pad.rs b/plugins/diopser/src/editor/xy_pad.rs index ba3a2a99..100072d0 100644 --- a/plugins/diopser/src/editor/xy_pad.rs +++ b/plugins/diopser/src/editor/xy_pad.rs @@ -1,5 +1,5 @@ // Diopser: a phase rotation plugin -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/diopser/src/filter.rs b/plugins/diopser/src/filter.rs index c005fd83..9882b84c 100644 --- a/plugins/diopser/src/filter.rs +++ b/plugins/diopser/src/filter.rs @@ -1,5 +1,5 @@ // Diopser: a phase rotation plugin -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/diopser/src/lib.rs b/plugins/diopser/src/lib.rs index aa01deb1..d963041d 100644 --- a/plugins/diopser/src/lib.rs +++ b/plugins/diopser/src/lib.rs @@ -1,5 +1,5 @@ // Diopser: a phase rotation plugin -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/diopser/src/spectrum.rs b/plugins/diopser/src/spectrum.rs index 1ba70cfd..5680e21b 100644 --- a/plugins/diopser/src/spectrum.rs +++ b/plugins/diopser/src/spectrum.rs @@ -1,5 +1,5 @@ // Diopser: a phase rotation plugin -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/loudness_war_winner/src/filter.rs b/plugins/loudness_war_winner/src/filter.rs index 1a7029f6..0d3469d0 100644 --- a/plugins/loudness_war_winner/src/filter.rs +++ b/plugins/loudness_war_winner/src/filter.rs @@ -1,5 +1,5 @@ // Loudness War Winner: Because negative LUFS are boring -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/loudness_war_winner/src/lib.rs b/plugins/loudness_war_winner/src/lib.rs index 124c6a70..b61d701d 100644 --- a/plugins/loudness_war_winner/src/lib.rs +++ b/plugins/loudness_war_winner/src/lib.rs @@ -1,5 +1,5 @@ // Loudness War Winner: Because negative LUFS are boring -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/puberty_simulator/src/lib.rs b/plugins/puberty_simulator/src/lib.rs index b0dbc52e..17ed0bc3 100644 --- a/plugins/puberty_simulator/src/lib.rs +++ b/plugins/puberty_simulator/src/lib.rs @@ -1,5 +1,5 @@ // Puberty Simulator: the next generation in voice change simulation technology -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/safety_limiter/src/lib.rs b/plugins/safety_limiter/src/lib.rs index 144b42b1..a5806eb8 100644 --- a/plugins/safety_limiter/src/lib.rs +++ b/plugins/safety_limiter/src/lib.rs @@ -1,5 +1,5 @@ // Safety limiter: ear protection for the 21st century -// Copyright (C) 2022-2023 Robbert van der Helm +// Copyright (C) 2022-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/soft_vacuum/src/hard_vacuum.rs b/plugins/soft_vacuum/src/hard_vacuum.rs index 683d4ee1..4733c124 100644 --- a/plugins/soft_vacuum/src/hard_vacuum.rs +++ b/plugins/soft_vacuum/src/hard_vacuum.rs @@ -1,5 +1,5 @@ // Soft Vacuum: Airwindows Hard Vacuum port with oversampling -// Copyright (C) 2023 Robbert van der Helm +// Copyright (C) 2023-2024 Robbert van der Helm // Copyright (c) 2018 Chris Johnson // // This program is free software: you can redistribute it and/or modify diff --git a/plugins/soft_vacuum/src/lib.rs b/plugins/soft_vacuum/src/lib.rs index cadc611d..935d35ee 100644 --- a/plugins/soft_vacuum/src/lib.rs +++ b/plugins/soft_vacuum/src/lib.rs @@ -1,5 +1,5 @@ // Soft Vacuum: Airwindows Hard Vacuum port with oversampling -// Copyright (C) 2023 Robbert van der Helm +// Copyright (C) 2023-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/soft_vacuum/src/oversampling.rs b/plugins/soft_vacuum/src/oversampling.rs index ff45d92f..0bb8a8c2 100644 --- a/plugins/soft_vacuum/src/oversampling.rs +++ b/plugins/soft_vacuum/src/oversampling.rs @@ -1,5 +1,5 @@ // Soft Vacuum: Airwindows Hard Vacuum port with oversampling -// Copyright (C) 2023 Robbert van der Helm +// Copyright (C) 2023-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/spectral_compressor/Cargo.toml b/plugins/spectral_compressor/Cargo.toml index 0d5c92a2..a87e5a8f 100644 --- a/plugins/spectral_compressor/Cargo.toml +++ b/plugins/spectral_compressor/Cargo.toml @@ -7,10 +7,10 @@ license = "GPL-3.0-or-later" homepage = "https://github.com/robbert-vdh/nih-plug/tree/master/plugins/spectral_compressor" [lib] -crate-type = ["cdylib"] +crate-type = ["lib", "cdylib"] [dependencies] -nih_plug = { path = "../../", features = ["assert_process_allocs"] } +nih_plug = { path = "../../", features = ["assert_process_allocs", "standalone"] } nih_plug_vizia = { path = "../../nih_plug_vizia" } realfft = "3.0" diff --git a/plugins/spectral_compressor/src/analyzer.rs b/plugins/spectral_compressor/src/analyzer.rs index 1ff632b7..dcea9bfb 100644 --- a/plugins/spectral_compressor/src/analyzer.rs +++ b/plugins/spectral_compressor/src/analyzer.rs @@ -1,5 +1,5 @@ // Spectral Compressor: an FFT based compressor -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/spectral_compressor/src/compressor_bank.rs b/plugins/spectral_compressor/src/compressor_bank.rs index 9e097434..ac362da7 100644 --- a/plugins/spectral_compressor/src/compressor_bank.rs +++ b/plugins/spectral_compressor/src/compressor_bank.rs @@ -1,5 +1,5 @@ // Spectral Compressor: an FFT based compressor -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/spectral_compressor/src/dry_wet_mixer.rs b/plugins/spectral_compressor/src/dry_wet_mixer.rs index 3944ce6b..15834309 100644 --- a/plugins/spectral_compressor/src/dry_wet_mixer.rs +++ b/plugins/spectral_compressor/src/dry_wet_mixer.rs @@ -1,5 +1,5 @@ // Spectral Compressor: an FFT based compressor -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/spectral_compressor/src/editor.rs b/plugins/spectral_compressor/src/editor.rs index 48c11f05..1b20be02 100644 --- a/plugins/spectral_compressor/src/editor.rs +++ b/plugins/spectral_compressor/src/editor.rs @@ -1,5 +1,5 @@ // Spectral Compressor: an FFT based compressor -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/spectral_compressor/src/editor/analyzer.rs b/plugins/spectral_compressor/src/editor/analyzer.rs index 1be9967d..33950e82 100644 --- a/plugins/spectral_compressor/src/editor/analyzer.rs +++ b/plugins/spectral_compressor/src/editor/analyzer.rs @@ -1,5 +1,5 @@ // Spectral Compressor: an FFT based compressor -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/spectral_compressor/src/editor/mode_button.rs b/plugins/spectral_compressor/src/editor/mode_button.rs index 866a1e29..0ba830b5 100644 --- a/plugins/spectral_compressor/src/editor/mode_button.rs +++ b/plugins/spectral_compressor/src/editor/mode_button.rs @@ -1,5 +1,5 @@ // Spectral Compressor: an FFT based compressor -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/plugins/spectral_compressor/src/lib.rs b/plugins/spectral_compressor/src/lib.rs index 4a8ea593..204d1234 100644 --- a/plugins/spectral_compressor/src/lib.rs +++ b/plugins/spectral_compressor/src/lib.rs @@ -1,5 +1,5 @@ // Spectral Compressor: an FFT based compressor -// Copyright (C) 2021-2023 Robbert van der Helm +// Copyright (C) 2021-2024 Robbert van der Helm // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by