Skip to content

Releases: Falcosoft/BASS_VST

v2.4.0.15

30 Apr 01:00
ee7e28e

Choose a tag to compare

Added support for plugins with 32+ input/output channels by replacing static buffer arrays with dynamic ones.

v2.4.0.14

22 May 10:39

Choose a tag to compare

  1. Added BASS_VST_SetVendorProductStr() function.
  2. Fixed bug that prevented unloading plugins when Bass_VST is unloaded.
  3. Fixed VST parameter query.
  4. Bass_VST_SetCallback/BASS_VST_AUDIO_MASTER 64-bit fix.

v2.4.0.13

24 Mar 10:49
104b299

Choose a tag to compare

Fixed: Plugin's delta time reset should be in a Midi critical section.

v2.4.0.12

01 Feb 19:19
1f5e70c

Choose a tag to compare

Changes from last release (2.4.0.10)

  1. Applied important fixes from origin master.
  2. BASS_VST_SetCallback() improvements:
    a. Added possibility for host to define its accurate tempo and time signature info instead of fake ones generated by Bass_VST.
    b. With flags you can define what events should generate callbacks (with backward compatibility so the default is still all).
  3. Fixed Roland cloud plugins related bug where editor cannot be displayed (e.g. TR-808 plugin).
  4. Added direct JBridge support.
    https://jstuff.wordpress.com/jbridge/
  5. Added proper deltaFrames calculation for improved Midi timing instead of fixed 0.

version 2.4.0.10

15 Dec 06:37

Choose a tag to compare

Fork of Bass_VST for Soundfont Midi Player by Zoltan Bacsko(Falcosoft)

version 2.4.0.10

  • Modified IDLE_UNLOAD_PENDING_COUNTDOWN from 10 to 5 sec.
    Since some plugins require complete unload before reload 10 sec wait time is too much.

  • Added cleanUpPlugins() function to remove loaded plugins before unload. It matters when you load/unload bass_vst dynamically.

  • Added Visual C++ 6 project for x86 version. Later VC++ versions depend on different version dependendt runtime (msvcrt8x, msvcrt10 etc.).
    Contrary VC6 compiled binaries always depend on msvcrt.dll that is part of every windows operating system.
    So this way even Win9x/Win2000 is supported by the x86 version.

  • Added BASS_VST_SetEditKnobMode (knobMode 0: circular, 1: circular relativ, 2: linear)

  • Modified BASS_VST_PARAM_INFO members maximum characters to 24.
    (I know VST specification dictates maximum 8 character but it is ridiculously low and no plugins/hosts respect this limit.)

  • X64 version no longer depends on MS Visual C++ 2010 x64 redistributable.