Merge latest non-ladi main branch

This commit is contained in:
Nedko Arnaudov 2023-12-13 15:38:34 +02:00
commit e1df71ba02
3 changed files with 9 additions and 9 deletions

View File

@ -1,19 +1,19 @@
Change Log
==========
## Version 18 (2023-11-10)
## Version 18 (2023-11-09)
Fixed:
* Compilation with Cython >= 3 has been fixed (#176).
* Output channel name changes are properkly reflected in input channel control
* Output channel name changes are properly reflected in input channel control
groups (#177).
* Prefader kmeters now also fall at same rate regardless of jack buffer size.
* The Spanish translations was updated (#168).
Changes:
* `PyDG` has been replaced with `appdirs` (#150).
* `PyXDG` has been replaced with `appdirs` (#150).
* `mesonep517` has been replaced with `meson-python` for PEP-517 compliant
builds (for testing needs only) (#179).
* All log messages are now prefixed with `[jack_mixer]` so they can be better
@ -22,7 +22,7 @@ Changes:
Features:
* NSM implemntation now includes support for dirty/clean save status (#154).
* NSM implementation now includes support for dirty/clean save status (#154).
With contributions from Christopher Arndt, Daryl Hanlon, Nils Hilbricht, Mark
Knoop and Daniel Sheeler.

View File

@ -76,7 +76,7 @@ JACK AUDIO AND MIDI PORTS
output port (mono) or pair of output ports (stereo). These are named the same
as their input port(s) with " Out" resp. " Out L" / "Out R" appended.
* For each ouput channel it will create one (mono) or two (stereo) audio output
* For each output channel it will create one (mono) or two (stereo) audio output
ports.
* Additionally it will create one pair of audio monitor ports named "Monitor L"

View File

@ -64,7 +64,7 @@ cdef class Scale:
scale_destroy(self._scale)
cpdef bool add_threshold(self, float db, float scale_value):
"""Add scale treshold."""
"""Add scale threshold."""
return scale_add_threshold(self._scale, db, scale_value)
cpdef void remove_thresholds(self):
@ -72,7 +72,7 @@ cdef class Scale:
scale_remove_thresholds(self._scale)
cpdef void calculate_coefficients(self):
"""Calculate scale coefficents."""
"""Calculate scale coefficients."""
scale_calculate_coefficients(self._scale)
cpdef double db_to_scale(self, double db):
@ -147,7 +147,7 @@ cdef class Mixer:
cpdef add_channel(self, channel_name, stereo=None):
"""Add a stereo or mono input channel with given name to the mixer.
Returns a `Channel` instance when successfull or `None` if channel
Returns a `Channel` instance when successful or `None` if channel
creation failed.
"""
cdef jack_mixer_channel_t chan_ptr
@ -163,7 +163,7 @@ cdef class Mixer:
cpdef add_output_channel(self, channel_name, stereo=None, system=False):
"""Add a stereo or mono output channel with given name to the mixer.
Returns a `OutputChannel` instance when successfull or `None` if
Returns a `OutputChannel` instance when successful or `None` if
channel creation failed.
"""
cdef jack_mixer_output_channel_t chan_ptr