Skip to content

Commit

Permalink
bump version to v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stoermelder committed Dec 25, 2019
1 parent cf2f78e commit f9c8c9f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 1.x.x (in development)
### 1.4.0

- Module [INTERMIX](./docs/Intermix.md)
- New module, precision adder 8x8 switch matrix with support for 8 scenes
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# stoermelder PackOne

<!-- Version and License Badges -->
![Version](https://img.shields.io/badge/version-1.3.0-green.svg?style=flat-square)
![Version](https://img.shields.io/badge/version-1.4.0-green.svg?style=flat-square)
![Rack SDK](https://img.shields.io/badge/Rack--SDK-1.1.6-red.svg?style=flat-square)
![License](https://img.shields.io/badge/license-GPLv3-blue.svg?style=flat-square)
![Language](https://img.shields.io/badge/language-C++-yellow.svg?style=flat-square)
Expand All @@ -19,6 +19,7 @@ The PackOne plugin gives you some utility modules for [VCV Rack](https://www.vcv
- [CV-MAP](./docs/CVMap.md): control 32 knobs/sliders/switches of any module by CV even when the module has no CV input
- [CV-PAM](./docs/CVPam.md): generate CV voltage by observing 32 knobs/sliders/switches of any module
- [INFIX, µINFIX](./docs/Infix.md): insert for polyphonic cables
- [INTERMIX](./docs/Intermix.md): precision adder 8x8 advanced switch matrix with support for 8 scenes
- [MAZE](./docs/Maze.md): 4 channel sequencer running on a 2-dimensional grid
- [µMAP](./docs/CVMapMicro.md): a single instance of CV-MAP's slots with attenuverters
- [MIDI-CAT](./docs/MidiCat.md): map parameters to midi controllers similar to MIDI-MAP with midi feedback and note mapping
Expand Down
9 changes: 9 additions & 0 deletions docs/Intermix.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# stoermelder INTERMIX

INTERMIX is a precision-adder matrix with 8 inputs and 8 outputs.

- Support for 8 different scenes
- Various input-modes, e.g. constant voltages
- Supports fading between scenes with adjustable time for fade-in and fade-out
- Optional visualization of input-voltage on the switch-pads
- Compatible with MIDI-mapping
- Very low CPU-usage

INTERMIX was added in v1.4.0 of PackOne.
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"slug": "Stoermelder-P1",
"version": "1.3.0",
"version": "1.4.0",
"license": "GPL-3.0-only",
"author": "Benjamin Dill",
"name": "PackOne",
Expand Down
2 changes: 1 addition & 1 deletion scripts/resetversion.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

gitrev=`git rev-parse --short HEAD`
version="1.3.${gitrev}"
version="1.4.${gitrev}"
echo "Updating to version=$version"
tf=`mktemp`
jq --arg VERSION "$version" '.version=$VERSION' plugin.json > $tf
Expand Down
4 changes: 2 additions & 2 deletions src/Intermix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ struct IntermixModule : Module {
int sceneNext = -1;

LinearFade fader[PORTS][PORTS];
dsp::TSlewLimiter<simd::float_4> outputAtSlew[PORTS / 4];
//dsp::TSlewLimiter<simd::float_4> outputAtSlew[PORTS / 4];

dsp::SchmittTrigger sceneTrigger;
dsp::ClockDivider sceneDivider;
Expand All @@ -120,7 +120,7 @@ struct IntermixModule : Module {
configParam(MATRIX_PARAM + i * PORTS + j, 0.f, 1.f, 0.f, string::f("Input %i to Output %i", j + 1, i + 1));
}
configParam(OUTPUT_PARAM + i, 0.f, 1.f, 0.f, string::f("Output %i disable", i + 1));
configParam(AT_PARAM + i, -1.f, 1.f, 1.f, string::f("Output %i attenuverter", i + 1), "x");
configParam(AT_PARAM + i, -2.f, 2.f, 1.f, string::f("Output %i attenuverter", i + 1), "x");
}
configParam(FADEIN_PARAM, 0.f, 4.f, 0.f, "Fade in", "s");
configParam(FADEOUT_PARAM, 0.f, 4.f, 0.f, "Fade out", "s");
Expand Down

0 comments on commit f9c8c9f

Please sign in to comment.