Skip to content

Commit aa5c787

Browse files
committed
dev sync 0cbb427
1 parent 3a8df50 commit aa5c787

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
== 2025-0-05
5+
== 2025-01-11
6+
* Changes
7+
* M-OSC/Waveforms - Chords paramter text eg. 1+3+5+7 instead of 0+2+4+6
8+
== 2025-01-05
69
* Bugfix
710
* Plaits drums - pitch parameter no effect
811
* IO-config - accent input was set eq trigger input

app/M-OSC/Waveforms.bin

12 Bytes
Binary file not shown.

app/M-OSC/Waveforms.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ namespace braids
7070

7171
int32_t Quantizer::Process(int32_t pitch, int32_t root, int8_t *note)
7272
{
73-
pitch -= root + DEFAULT_PITCH;
73+
pitch -= root + DEFAULT_PITCH;
7474
auto ret = engine::qz_process(pitch, note);
7575
ret += root + DEFAULT_PITCH;
7676
return ret;
@@ -252,12 +252,12 @@ void engine::draw()
252252
else
253253
{
254254
char *p = color_vals;
255-
p += sprintf(p, "Chord-%d\t0", _color + 1);
255+
p += sprintf(p, "Chord-%d\t1", _color + 1);
256256
for (int i = 1; i < LEN_OF(braids::diatonic_chords[_color]); i++)
257257
{
258258
if (braids::diatonic_chords[_color][i] != 0)
259259
{
260-
p += sprintf(p, "+%X", braids::diatonic_chords[_color][i]);
260+
p += sprintf(p, "+%d", 1 + braids::diatonic_chords[_color][i]);
261261
}
262262
}
263263

platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99

1010
[env:squares-and-circles]
1111
apps_json = ./app/index.json
12-
squares_and_circles_loader = 1b0b8eb ; minimum loader version
12+
squares_and_circles_loader = 0cbb427 ; minimum loader version
1313
platform = .pio/

0 commit comments

Comments
 (0)