fix: make pre/post fader metering switch label/tooltip translatable
[jack_mixer.git] / CHANGELOG.md
blob7d1524f3ebc18e4aebd8c98724ac1f7d60c81ea6
1 Change Log
2 ==========
3 ## Version 17 (2021-10-15)
5 Fixed:
7 * Uniform fall rate for kmeter peak indicators across different jack
8   period sizes was enforced (#133).
10 Features:
12 * Install a Ray Session template file that tells Ray Session this
13   version has nsm support (#131).
14 * A Spanish translation was added.
15 * Ability to reset absolute peak meter readings after a user chosen
16   time was added (#135).
17 * Custom slider mouse behavior was changed to mimic that of gtk slider,
18   in particular, the fader no longer jumps to click position but requires
19   a click and drag to move it (#137).
20 * Minimum and maximum width for custom sliders was added.
21 * Minimum and maximum width for meters was added.
22 * Meter redraw period as a user preference was added (#139).
23 * Ability to meter pre-fader signal was added (#97).
24 * Keypad plus and minus accelerator for channel shrink/expand (#141)
26 With contributions from Daniel Sheeler and Christopher Arndt and with
27 Daryl Hanlon providing the Spanish translation.
29 ## Version 16 (2021-04-15)
31 Fixed:
33 * Some global settings were not properly persisted in the settings file
34   when changed in the preferences dialog (#124).
35 * Selecting a custom default project path in the preferences dialog via
36   folder selection widget did not update the path in the text entry.
37 * The message formatting in error dialogs was corrected and when an error
38   dialog is shown, the error message printed to the console now only
39   contains a Python traceback when the debug option is active.
40 * Various debug log messages received minor fixes and improvements.
42 Features:
44 * Internationalization (i18n) support was added, making GUI labels and
45   messages and the command line help translatable.
46 * A German translation was added.
47 * A French translation was added.
48 * A global language setting was added to the preferences.
49 * French and German translations of the application description were added to
50   the XDG desktop file.
52 Documentation:
54 * A man page for `jack_mix_box` was added.
55 * A new [contributing guide](./docs/CONTRIBUTING.md) was added to repository.
56 * The section on environment variables in `jack_mixer's` man page was updated
57   and enhanced.
58 * The NSM project URL was updated in various documents.
60 This release was created by Christopher Arndt with Olivier Humbert providing
61 the French translation.
64 ## Version 15.1 (2021-03-15)
66 **Bugfix release**
68 Fixed:
70 * In fixing issue #81 a regression was introduced in version 15, which caused
71   channel volume levels to not be restored when loading a project XML file.
73 * The `Channel.autoset_*_midi_cc` methods in the Cython extension module didn't
74   return the int result from the C functions they call, causing mis-leading
75   debug log messages.
78 Project infrastructure and internals:
80 * A [wiki] was added to the `jack_mixer` GitHub project and a page with
81   instructions on how to install from source on debian / Ubuntu.
83 * The dependencies for building a Python wheel via `pip` were updated.
85 * When building from a Git checkout, the `cython` program is also found when it
86   is installed as `cython3`.
88 * Debug logging can be enabled by setting the `JACK_MIXER_DEBUG` environment
89   variable (for when the `-d` command line switch can't be used, e.g. when run
90   via NSM).
92 This release was created by Christopher Arndt.
95 [wiki]: https://github.com/jack-mixer/jack_mixer/wiki
98 ## Version 15 (2021-02-25)
100 **Important change:** `jack_mixer` now uses [meson] for building and
101 installation. See [INSTALL.md] for new build instructions.
104 New:
106 * A global setting for default project file path was added and can be changed
107   in the preference dialog.
109     The default value is `$XDG_DATA_HOME/jack_mixer` (which is normally
110     `~/.local/share/jack_mixer`).
112 * A "Recent projects" menu was added, to allow loading recently used / saved
113   projects more quickly.
115 * Direct channel output ports are now optional and can be enabled/disabled in
116   the channel preferences dialog.
118 * Ctrl+left-click on the mute ("M") or solo ("S") channel buttons now activates
119   exclusive mute resp. solo.
121 * A man page for `jack_mixer` was added.
123 * `jack_mix_box` now supports the `-p|--pickup` command line option to enable
124   MIDI pickup mode, to prevent sudden volume or balance value jumps.
127 Fixed:
129 * Activating the solo function on an input channel could cause its
130   output signal be sent to the monitor outputs instead of the signal
131   from the channel, which had monitoring activated.
133 * Volume and balance level and mute and solo state changes originating from
134   the UI now send the correct assigned MIDI CCs, allowing for MIDI feedback
135   to controllers. Same for changes originating from reception of assigned MIDI
136   CCs.
138 * The handler for right-clicking the input channel mute/solo buttons, was
139   accidentally removed and is now re-instated.
141 * Creating a new output channel assigns it a randomly chosen color,
142   which can be changed in the new channel dialog (used to work
143   some releases ago, but was broken at some point).
145 * The `jack_mix_box` command line options `--help` and `--stereo`
146   erroneously required an argument.
148 * Saving the current project on reception of the `SIGUSR1` signal, which is a
149   requirement for LADISH level L1 support, was broken in version 14.
151 * When re-ordering channels via drag-and-drop, the order of the edit / remove
152   channel menu items were not updated.
154 * When creating an output channel, it could happen that the initial channel
155   volume would randomly be set to -inf or 0 dB, regardless of what was
156   selected in new channel dialog.
159 Changed:
161 * The minimum supported Python version is now 3.6.
163 * The `jack_mix_box` command line usage help message was improved.
165 * The channel strip buttons (solo, mute, etc.) now have more distinctive colors
166   when activated or the mouse hovers over them.
168 * The balance slider step size was increased slightly so right-clicking the
169   slider changes the value more rapidly.
171 * When using the "Save as..." function, `jack_mixer` now sets the default
172   filename and directory for file chooser to the last ones used.
174 * A window title was added to the preferences dialog.
176 * MIDI control for mute and solo now interprets control value 0-63 as off
177   and 64-127 as on, instead of toggling the state on reception of any
178   controller value.
181 Project infrastructure and internals:
183 * The `jack_mixer_c` Python extension module, which was originally implemented
184   in hand-written C code using the PYTHON C API, was replaced with the
185   `_jack_mixer` extension module implemented in [Cython], which generates the C
186   code in `_jack_mixer.c`.
188 * The autotools build toolchain was replaced with a build setup using [meson],
189   which improves build times and maintainability markedly. See the file
190   [INSTALL.md] for updated build and installation instructions.
192 * A build option to allow building only `jack_mix_box` was added (`-Dgui=disabled`).
194 * All Python code was re-formatted with [black].
196 * All errors and warnings reported by [flake8] were fixed or are explicitly and
197   selectively ignored.
199 * The file `version.py` is now generated from the version set in the project
200   definition in the top-level `meson.build` file, leaving this as the only
201   place where the version number needs to be updated before a release.
203 * The `NEWS` file was renamed to `CHANGELOG.md` and converted to Markdown
204   format.
206 This release was created by Christopher Arndt. With a contribution from
207 Athanasios Silis.
210 [INSTALL.md]: ./INSTALL.md
211 [black]: https://pypi.org/project/black/
212 [Cython]: https://cython.org/
213 [meson]: https://mesonbuild.com/
214 [flake8]:  https://pypi.org/project/flake8/
217 ## Version 14 (2020-10-15)
219 * Changes to channel fader/meter layout and features:
220     * Added K20 and K14 scales.
221     * Added tick marks for left/center/right on balance slider and add tooltip
222       displaying left/right value.
223     * Added maximum width for control group labels. Labels are ellipsized if
224       too long and a tooltip with the full name is added.
225 * Channel add/property dialogs usability improvements:
226     * Remember last used settings for new input/outut channel dialogs (MIDI CCs
227       are always initialized with -1 by default, so they can be auto-assigned).
228     * Channel name is pre-filled in with "Input" or "output" and an
229       auto-incremented number suffix.
230     * Add mnemonics for all input/output channel dialog fields.
231 * When running under NSM, closing the main window only hides UI and the "Quit"
232   menu entry is replaced with a "Hide" entry.
233 * Added a global option to always ask for confirmation when quitting
234   jack_mixer.
235 * Allow drag'n'drop to change channel positions.
236 * Added ability to shrink/expand width of input and output channels.
237 * The font color of control group labels automatically adapts to their
238   background color for better contrast and readability.
239 * Fixed: Ctrl-click on volume fader sets it to 0.0 dbFS, not 1.0.
240 * Fixed: some issues with channel monitoring.
241 * Fixed: don't create empty project file on new NSM session.
242 * Fixed: on project load, give input focus to fader of last added channel and
243   deselect volume entry widget so keyboard input doesn't accidentally change
244   the value.
246 With contributions from Christopher Arndt, Daniel Sheeler and Frédéric Péters.
249 ## Version 13 (2020-07-16)
251 * Added NSM support.
252 * Store preferences to per session config file to override global
253   preferences.
254 * Added accelerator shortcuts to menu items.
255 * New ctrl-click, double-click, scroll, and click-drag-anywhere
256   fader behaviors.
257 * Added MIDI 'Pick Up' behavior to avoid discontinuities.
258 * Can choose output channel colors.
259 * Changed to logarithmic ramping on volume changes.
260 * Added a pre/post fader button.
261 * Pick volume for new channels.
262 * Allow manual setting of MIDI control change numbers.
263 * Remove GConf; use plaintext .ini preferences file instead.
264 * Remove remnants of Swig python bindings.
266 With contributions from Daniel Sheeler and Christopher Arndt.
269 ## Version 12 (2020-06-22)
271 * Added reporting of the current volume through SIGUSR1 signal to
272   jack_mix_box.
273 * Reset color of over 0db/NaN peak on click.
274 * Fixed memory leaks.
275 * Fixed some Python 3 compatibility leftovers.
277 With contributions from Daniel Sheeler and Athanasios Silis.
280 ## Version 11 (2020-06-18)
282 * Spread out volume transition over a period of time to reduce
283   discontinuities.
284 * Port to pygobject and GTK3.
285 * Port to Python 3.
287 With contributions from Daniel Sheeler.
290 ## Version 10 (2014-04-27)
292 * Fixed change of channel settings (#18299)
293 * Added a MIDI out port for feeding back volume levels into motorized
294   controllers
295 * Added jack_mix_box, a minimalistic (no UI) jack mixer
296 * Added a trayicon and minimize to tray feature
298 With contributions from John Hedges, Sarah Mischke, and Nedko Arnaudov.
301 ## Version 9 (2010-10-04)
303 * Changed to no longer appends PID to jack client name (#15006)
304 * Added 'Edit .. channel' submenus
305 * Set a default 'apply' button in channel properties
306 * Fixed creation of  mono channels
307 * Removed bad crackling when changing the volume through MIDI
308 * Moved back to polling for MIDI events, to avoid the need for threads
309 * Changed to use backward compatible call to gobject.timeout_add (#14999)
310 * Updated not to fail if we can't get lash server name
311 * Added support for Ladish level 1
312 * Improved SIGUSR1 handling
314 With contributions from Nedko Arnaudov and Arnout Engelen.
317 ## Version 8 (2009-12-16)
319 * Fix private modules lookup
320 * Fix rotation of output channel colours
321 * New menu items to remove output channels
322 * New command line parameter to not connect to LASH
325 ## Version 7 (2009-12-14)
327 * New maintainer, thanks Nedko for everything!
328 * New icon by Lapo Calamandrei
329 * Option to have a gradient in the vumeters
330 * Option to use stock GtkScale widget for volume and balance
331 * Rewrite of the C/Python binding (this removed the dependency on SWIG)
332 * Improve performance when drawing vumeters
333 * New menu items to load/save settings
334 * New "Channel Properties" dialog, allowing to change assigned MIDI CCs
335 * Automatic post fader outputs for input channels
336 * Possibility to add new output channels, besides main mix
337 * New "monitor" output, assignable to any output channel, or input channel
338   (in which case it will take its prefader volume)
339 * Removal of PyXML dependency
341 With contributions from Nedko Arnaudov, Lapo Calamandrei, Arnout Engelen,
342 and Krzysztof Foltman.
345 ## Version 6 (2009-07-25)
347 * Fix building against jack 0.102.20
348 * Handle python prefix different from install prefix
349 * Fix LASH-less operation
350 * Update install instructions after lash-0.5.3 and phat-0.4.1 releases
351 * Apply Markus patch (thanks!) for sr #1698 (can't restore session using LASH)