Skip to content

HISE 3.6.2

Compare
Choose a tag to compare
@christoph-hart christoph-hart released this 23 Sep 12:54
· 685 commits to master since this release

Features

  • added Content.showModalTextInput()
  • added Settings.setSampleFolder()
  • added more properties to AudioWaveform LAF options
  • some minor changes to the LAF of script tables in multicolumn mode

Bugfixes

  • fix external clock resyncing with large buffer sizes
  • fix MIDI player external clock resyncing when using non 1.0 playback speed
  • fix a few multithreaded crashes related to custom automation model
  • multiple minor bugfixes (#409, #428, #429, #424, #425)
  • fixed crash when using high pitched sampler sounds > 3 octaves

Backwards compatibility issues:

  • added a failsafe that throws a compilation error when trying to define const variables in a (inline) function body. Before this was possible when the function was defined within a namespace, but this might lead to undefined behaviour and (possibly) subtle glitches.
    In order to solve that, just replace the const var definition with either a var definition (in a function) or a local definition (in an inline function).