Browse Source

Tweak doc comments and changelog.

tags/v2.6.0
Andrew Belt 10 months ago
parent
commit
535fb0b1c2
4 changed files with 7 additions and 4 deletions
  1. +1
    -1
      CHANGELOG.md
  2. +2
    -1
      include/dsp/midi.hpp
  3. +3
    -1
      include/engine/Port.hpp
  4. +1
    -1
      src/core/Audio.cpp

+ 1
- 1
CHANGELOG.md View File

@@ -4,7 +4,7 @@ In this document, Ctrl means Cmd on Mac.

### 2.5.2 (2024-05-09)
- Add configurable cable color labels.
- When duplicating module with cables, duplicate cables connected to outputs as well as inputs.
- When duplicating module with cables, duplicate cables connected to module's outputs as well as inputs.
- Allow building multi-arch x64+arm64 "Universal" Mac binary.
- Optimize engine's cable stepping algorithm to be as CPU-efficient as non-stackable inputs.
- Limit log file size to 10 MB.


+ 2
- 1
include/dsp/midi.hpp View File

@@ -248,12 +248,13 @@ struct MidiParser {
/** Enables pitch-wheel and mod-wheel exponential smoothing */
bool smooth;

/** Clock output pulses per quarter note */
/** Number of 24 PPQN clocks between clock divider pulses */
uint32_t clockDivision;

/** Actual number of polyphonic channels */
uint8_t channels;

/** Method for assigning notes to polyphony channels */
enum PolyMode {
ROTATE_MODE,
REUSE_MODE,


+ 3
- 1
include/engine/Port.hpp View File

@@ -193,7 +193,9 @@ struct Port {
return channels > 1;
}

/** Use getNormalVoltage() instead. */
/** Use getNormalVoltage() instead.
"Normal" voltage is the correct term, not "normalized" voltage.
*/
DEPRECATED float normalize(float normalVoltage) {
return getNormalVoltage(normalVoltage);
}


+ 1
- 1
src/core/Audio.cpp View File

@@ -265,7 +265,7 @@ struct Audio : Module {
float v = 0.f;
if (inputs[AUDIO_INPUTS + i].isConnected())
v = inputs[AUDIO_INPUTS + i].getVoltageSum() / 10.f;
// Normalize right input to left on Audio-2
// Normal right input to left on Audio-2
else if (i == 1 && NUM_AUDIO_INPUTS == 2)
v = inputFrame.samples[0];



Loading…
Cancel
Save