diff --git a/include/fluidsynth/event.h b/include/fluidsynth/event.h index ae53c4e4..19f7efea 100644 --- a/include/fluidsynth/event.h +++ b/include/fluidsynth/event.h @@ -56,7 +56,7 @@ enum fluid_seq_event_type { FLUID_SEQ_TIMER, /**< Timer event (useful for giving a callback at a certain time) */ FLUID_SEQ_ANYCONTROLCHANGE, /**< DOCME (used for remove_events only) */ FLUID_SEQ_CHANNELPRESSURE, /**< Channel aftertouch event @since 1.1.0 */ - FLUID_SEQ_KEYPRESSURE, /**< Polyphonic aftertouch event @since 1.1.7 */ + FLUID_SEQ_KEYPRESSURE, /**< Polyphonic aftertouch event @since @NEXT_RELEASE@ */ FLUID_SEQ_SYSTEMRESET, /**< System reset event @since 1.1.0 */ FLUID_SEQ_UNREGISTERING, /**< Called when a sequencer client is being unregistered. @since 1.1.0 */ FLUID_SEQ_LASTEVENT /**< Defines the count of event enums @deprecated As of 1.1.7 this enum value is deprecated and will be removed in a future release, because it prevents adding new enum values without breaking ABI compatibility. */ diff --git a/src/synth/fluid_event.c b/src/synth/fluid_event.c index e32ed614..4231c798 100644 --- a/src/synth/fluid_event.c +++ b/src/synth/fluid_event.c @@ -438,7 +438,7 @@ fluid_event_channel_pressure(fluid_event_t* evt, int channel, short val) * @param channel MIDI channel number * @param key MIDI note number (0-127) * @param val Aftertouch amount (0-127) - * @since 1.1.7 + * @since @NEXT_RELEASE@ */ void fluid_event_key_pressure(fluid_event_t* evt, int channel, short key, short val) diff --git a/src/synth/fluid_synth.c b/src/synth/fluid_synth.c index 3207b53b..911c8ae0 100644 --- a/src/synth/fluid_synth.c +++ b/src/synth/fluid_synth.c @@ -1732,6 +1732,7 @@ fluid_synth_update_channel_pressure_LOCAL(fluid_synth_t* synth, int chan) * @param key MIDI key number (0-127) * @param val MIDI key pressure value (0-127) * @return FLUID_OK on success, FLUID_FAILED otherwise + * @since @NEXT_RELEASE@ */ int fluid_synth_key_pressure(fluid_synth_t* synth, int chan, int key, int val)