Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Cyma #8

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
49fec38
wip cyma
magnetophon Apr 14, 2024
e3364b8
working cyma
magnetophon Apr 14, 2024
a2947de
less imports
magnetophon Apr 15, 2024
680d3a7
wip
magnetophon Apr 15, 2024
8484479
add GR outputs to DSP
magnetophon Apr 15, 2024
3a6b749
wip GR graph
magnetophon Apr 16, 2024
96f6bd6
Enqueue GR buffer using `enqueue()`
exa04 Apr 20, 2024
5900b68
Update to latest `cyma`
exa04 Apr 20, 2024
3dc049e
Correctly name GR buffer
exa04 Apr 20, 2024
ba56e6e
Appropriately style GR meter
exa04 Apr 20, 2024
bd060af
Fill GR curve from 0dB
exa04 Apr 20, 2024
bdfc6c0
Re-add output
exa04 Apr 21, 2024
62aff9b
Merge pull request #7 from 223230/cyma
magnetophon Apr 21, 2024
9aa6d10
add level graph
magnetophon Apr 21, 2024
460e924
remove old meters
magnetophon Apr 21, 2024
ec30cfe
update rust
magnetophon Apr 21, 2024
5eae5df
cargo fix --lib -p lamb
magnetophon Apr 21, 2024
bd27fa8
put ruler outside border
magnetophon Apr 21, 2024
8bab802
graph: smaller range, narrower meters
magnetophon Apr 21, 2024
69408e2
update credits
magnetophon Apr 21, 2024
76fdb1a
tweak look
magnetophon Apr 21, 2024
74ecad3
make meters stereo
magnetophon Apr 22, 2024
4a19fff
tweak colors
magnetophon Apr 22, 2024
d110904
switch to a three colomn layout
magnetophon Apr 22, 2024
e133e7d
make graph zoomable
magnetophon Apr 22, 2024
2c31161
tweak look
magnetophon Apr 22, 2024
202898f
switch between pre and post, WIP left/right
magnetophon Apr 24, 2024
74389c0
make left and right switchable on graph
magnetophon Apr 24, 2024
ca79add
consistent width between elements
magnetophon Apr 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 89 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ faust-types = { git = "https://github.com/Frando/rust-faust" }
nih_plug_vizia = { git = "https://github.com/robbert-vdh/nih-plug.git" }
atomic_float = "0.1"
default-boxed = { version = "0.2.0", optional=true }
cyma = { git = "https://github.com/223230/cyma.git" }

[profile.release]
lto = "thin"
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,12 @@ Therefore, Windows users currently need to build faust from source to be able to

This plugin would not have been possible without the following projects:
- [Faust](http://faust.grame.fr)
- [nih-plug](https://github.com/robbert-vdh/nih-plug)
- [NIH-plug](https://github.com/robbert-vdh/nih-plug)
- [lowpass-lr4-faust-nih-plug](https://codeberg.org/obsoleszenz/lowpass-lr4-faust-nih-plug)
- [Vizia](https://github.com/vizia/vizia)
- [Cyma](https://github.com/223230/cyma)

I would like to thank @sletz, @robbert-vdh, @obsoleszenz and @dariosanfilippo for their fantastic support and feedback!
I would like to thank [Stéphane Letz](https://github.com/sletz), [Robbert van der Helm](https://github.com/robbert-vdh), [obsoleszenz](https://github.com/obsoleszenz), [luna](https://github.com/223230), [Dr George Atkinson](https://github.com/geom3trik) and [Dario Sanfilippo](https://github.com/dariosanfilippo) for their fantastic support and feedback!

🐑

Expand Down
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ in with nixpkgs;
name = "moz_overlay_shell";
nativeBuildInputs = [ pkg-config clang lld ];
buildInputs = [
(nixpkgs.rustChannelOf { date = "2024-03-17"; channel = "nightly"; }).rust
(nixpkgs.rustChannelOf { date = "2024-04-20"; channel = "nightly"; }).rust
rustup
pkg-config

Expand Down
Loading