-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plugins updated with actual plugin info
- Loading branch information
Showing
7 changed files
with
134 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,47 @@ | ||
import * as React from "react"; | ||
|
||
import {CardMedia} from "@mui/material"; | ||
import {Box, CardMedia, Typography} from "@mui/material"; | ||
|
||
export function Destruktor({plugin_link}) { | ||
return ( | ||
<> | ||
<a href={plugin_link}> | ||
<CardMedia | ||
component="img" | ||
height="300" | ||
image={"/assets/destruktor.png"} | ||
alt={"Destruktor Screenshot"} | ||
sx={{ padding: "1em 1em 0 1em", objectFit: "contain" }} | ||
/> | ||
</a> | ||
<Box sx={{position: 'relative', marginBottom: '30px'}}> | ||
<a href={plugin_link}> | ||
<CardMedia | ||
component="img" | ||
height="300" | ||
image={"/assets/destruktor.png"} | ||
alt={"Destruktor Screenshot"} | ||
sx={{padding: "1em 1em 0 1em", objectFit: "contain"}} | ||
/> | ||
</a> | ||
</Box> | ||
<Typography variant="body" color="text.secondary"> | ||
A distortion module that works as a... | ||
</Typography> | ||
<ul> | ||
<li> | ||
<Typography variant="body" color="text.secondary"> | ||
Waveshaper | ||
</Typography> | ||
</li> | ||
<li> | ||
<Typography variant="body" color="text.secondary"> | ||
Wavefolder | ||
</Typography> | ||
</li> | ||
<li> | ||
<Typography variant="body" color="text.secondary"> | ||
Hard Clipper (if required) | ||
</Typography> | ||
</li> | ||
</ul> | ||
<Typography variant="body" color="text.secondary"> | ||
...with lots of possibilities for modulation. It allows for anything from subtle saturation to making white | ||
noise out of almost any input, but is more comfortable at the extremes of its sonic possibilities. | ||
<br/><br/> | ||
<strong>No oversampling</strong>, so be prepared for aliasing. | ||
</Typography> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import * as React from "react"; | ||
|
||
import {Box, Typography} from "@mui/material"; | ||
|
||
export function FreeStamp() { | ||
return ( | ||
<> | ||
<Box | ||
sx={{ | ||
position: 'absolute', | ||
top: 10, | ||
right: 10, | ||
backgroundColor: '#f50057', | ||
color: 'white', | ||
borderRadius: '50%', | ||
width: 80, | ||
height: 80, | ||
display: 'flex', | ||
justifyContent: 'center', | ||
alignItems: 'center', | ||
transform: 'rotate(15deg)', | ||
boxShadow: '0 0 0 5px #f50057', | ||
'&::before': { | ||
content: '""', | ||
position: 'absolute', | ||
top: -5, | ||
left: -5, | ||
right: -5, | ||
bottom: -5, | ||
borderRadius: '50%', | ||
border: '2px dashed white', | ||
}, | ||
}} | ||
> | ||
<Typography variant="subtitle1" fontWeight="bold"> | ||
FREE | ||
</Typography> | ||
</Box> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
import {CardMedia} from "@mui/material"; | ||
import * as React from "react"; | ||
|
||
import {Box, CardMedia, Typography} from "@mui/material"; | ||
|
||
import {FreeStamp} from "./FreeStamp"; | ||
|
||
export function Haaschen({plugin_link}) { | ||
return ( | ||
<> | ||
<a href={plugin_link}> | ||
<CardMedia | ||
component="img" | ||
height="300" | ||
image={"/assets/haaschen.png"} | ||
alt={"Hääschen Screenshot"} | ||
sx={{ padding: "1em 1em 0 1em", objectFit: "contain" }} | ||
/> | ||
</a> | ||
<Box sx={{position: 'relative', marginBottom: '30px'}}> | ||
<FreeStamp/> | ||
<a href={plugin_link}> | ||
<CardMedia | ||
component="img" | ||
height="300" | ||
image={"/assets/haaschen.png"} | ||
alt={"Hääschen Screenshot"} | ||
sx={{padding: "1em 1em 0 1em", objectFit: "contain"}} | ||
/> | ||
</a> | ||
</Box> | ||
<Typography variant="body2" color="text.secondary"> | ||
The Haas effect is a stereo effect where one of the channels is delayed by a very short delay time. The two | ||
sounds that reach the listener's ears are then perceived as one binaural auditory event. The position of the | ||
sound in the stereo field as well as the width of the sound are influenced by the delay time used. | ||
<br/><br/> | ||
This free module allows you to use the effect on any mono or stereo signal, and also has a CV input for any kind | ||
of modulations. | ||
</Typography> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,31 @@ | ||
import {CardMedia} from "@mui/material"; | ||
import * as React from "react"; | ||
|
||
import {Box, CardMedia, Typography} from "@mui/material"; | ||
|
||
import {FreeStamp} from "./FreeStamp"; | ||
|
||
export function Ploink({plugin_link}) { | ||
return ( | ||
<> | ||
<a href={plugin_link}> | ||
<CardMedia | ||
component="img" | ||
height="300" | ||
image={"/assets/ploink.png"} | ||
alt={"Ploink Screenshot"} | ||
sx={{ padding: "1em 1em 0 1em", objectFit: "contain" }} | ||
/> | ||
</a> | ||
<Box sx={{position: 'relative', marginBottom: '30px'}}> | ||
<FreeStamp/> | ||
<a href={plugin_link}> | ||
<CardMedia | ||
component="img" | ||
height="300" | ||
image={"/assets/ploink.png"} | ||
alt={"Ploink Screenshot"} | ||
sx={{padding: "1em 1em 0 1em", objectFit: "contain"}} | ||
/> | ||
</a> | ||
</Box> | ||
<Typography variant="body2" color="text.secondary"> | ||
Ploink is a trigger / gate module that generates a series of triggers or gates out of one incoming trigger. Each | ||
trigger goes faster and faster, until the minimum length is reached and the sequence of triggers / gates stops. | ||
<br/><br/> | ||
<strong>This module does not generate sound.</strong> You can use the gates for an envelope, or the triggers for | ||
advancing a sequence, as a sync signal for sample&hold modules, that kind of thing. | ||
</Typography> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters