Skip to content

Commit

Permalink
Dev random mix (#7)
Browse files Browse the repository at this point in the history
* Added: Random Mix x8 (RX8)
* Added: Simplex Noise (SN1)
* Added: Simplex Noise x8 (SN8)
* Fixed: Tint Trick Logic output to low max 1V (#6)
  • Loading branch information
thomassidor authored Oct 23, 2019
1 parent 30f4d12 commit a25c3db
Show file tree
Hide file tree
Showing 17 changed files with 4,216 additions and 2,971 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CXXFLAGS +=
LDFLAGS +=

# Add .cpp files to the build
SOURCES += $(wildcard src/*.cpp)
SOURCES += $(wildcard src/*.cpp src/utility/*.cpp)

# Add files to the ZIP package when running `make dist`
# The compiled plugin and "plugin.json" are automatically added.
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ Thomas René Sidor


## Changelog
Version 1.2.0
* Added: Random Mix x8 (RX8)
* Added: Simplex Noise (SN1)
* Added: Simplex Noise x8 (SN8)
* Fixed: Tint Trick Logic output to low max 1V (#6)

Version 1.1.1
* Fixed: RM8Base.svg missing or not needed ? (#4)
* Fixed: Oscillators not oscillating until you change frequency
Expand Down
6,314 changes: 3,355 additions & 2,959 deletions Rack Panels.ai

Large diffs are not rendered by default.

30 changes: 29 additions & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"slug": "TinyTricks",
"name": "Tiny Tricks",
"brand": "Tiny Tricks",
"version": "1.1.1",
"version": "1.2.0",
"license": "MIT",
"author": "Thomas René Sidor",
"authorEmail": "mail@thomassidor.com",
Expand Down Expand Up @@ -163,6 +163,34 @@
"tags": [
"oscillator"
]
},
{
"slug": "RX8",
"name": "Random Mix x8",
"description": "Randomly mix 8 channels.",
"tags": [
"switch",
"random",
"utility"
]
},
{
"slug": "SN1",
"name": "Simplex Noise LFO",
"description": "Low-frequency oscillator based on simplex noise.",
"tags": [
"low-frequency oscillator",
"random"
]
},
{
"slug": "SN8",
"name": "Simplex Noise LFO x8",
"description": "8x Low-frequency oscillators based on simplex noise.",
"tags": [
"low-frequency oscillator",
"random"
]
}
]
}
74 changes: 74 additions & 0 deletions res/panels/RX8.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a25c3db

Please sign in to comment.