···11use nih_plug::prelude::*;
22use std::sync::Arc;
33+use ureq;
3445// This is a shortened version of the gain example with most comments removed, check out
56// https://github.com/robbert-vdh/nih-plug/blob/master/plugins/examples/gain/src/lib.rs to get
···8081 names: PortNames::const_default(),
8182 }];
82838383-8484 const MIDI_INPUT: MidiConfig = MidiConfig::None;
8585 const MIDI_OUTPUT: MidiConfig = MidiConfig::None;
8686···108108 // Resize buffers and perform other potentially expensive initialization operations here.
109109 // The `reset()` function is always called right after this function. You can remove this
110110 // function if you do not need it.
111111+ // Make a debug request to localhost:8080
112112+ let _ = ureq::get("http://localhost:8080/haiiiii").call();
111113 true
112114 }
113115···137139138140impl ClapPlugin for ShapemakerVST {
139141 const CLAP_ID: &'static str = "works.gwen.shapemakervst";
140140- const CLAP_DESCRIPTION: Option<&'static str> = Some("A VST plugin for Shapemaker, an experimental audiovisual SVG-based rendering engine");
142142+ const CLAP_DESCRIPTION: Option<&'static str> =
143143+ Some("A VST plugin for Shapemaker, an experimental audiovisual SVG-based rendering engine");
141144 const CLAP_MANUAL_URL: Option<&'static str> = Some(Self::URL);
142145 const CLAP_SUPPORT_URL: Option<&'static str> = None;
143146