Old 10-06-2021, 04:38 PM   #1
SmajjL
Human being with feelings
 
Join Date: Nov 2013
Location: IKEA
Posts: 2,778
Default v6.37rc7 - October 6 2021

v6.37rc7 - October 6 2021
  • * Includes feature branch: multichannel, multi-mono, multi-stereo ReaPlugs
  • * Includes feature branch: ReaLimit and render limiting
  • * Includes feature branch: MIDI editor note reordering
  • + Audio Units: always replace input for instrument plugins (same behavior as VST and lv2 instrument plugins)
  • + Audio Units: support IO menu in pin connector dialog
  • + Envelopes: fix potential odd behavior when editing FX parameter envelopes with inverted range [t=257763]
  • + FX: Alt+click on wet/dry knob to toggle delta solo
  • + LV2: support pin connector dialog I/O menu option to zero out unmapped channels
  • + Media explorer: inform user if maximum number of user-customized metadata columns has been added [t=258053]
  • # Delta solo: include state in copy/paste state
  • # Delta solo: update delta solo indicator on undo/redo
  • # Meters: improve clip detection when metering record input
This thread is for pre-release features discussion. Use the Feature Requests forum for other requests.

Changelog - Pre-Releases

Generated by X-Raym's REAPER ChangeLog to BBCode
SmajjL is offline   Reply With Quote
Old 10-06-2021, 07:11 PM   #2
Funkybot
Human being with feelings
 
Funkybot's Avatar
 
Join Date: Jul 2007
Location: New Joisey
Posts: 5,990
Default

Quote:
Originally Posted by SmajjL View Post
v6.37rc7 - October 6 2021
[*]+ FX: Alt+click on wet/dry knob to toggle delta solo
If I select Delta Solo by right-clicking the wet/dry knob then selecting the menu item, it works. It also works if I run the toggle action.

But if I Alt+click the wet/dry knob, the delta solo icon appears, but it's not actually working. Tried multiple plugins. Running Windows.
Funkybot is offline   Reply With Quote
Old 10-06-2021, 07:23 PM   #3
tonalstates
Human being with feelings
 
tonalstates's Avatar
 
Join Date: Jun 2020
Posts: 656
Default

Quote:
Originally Posted by Funkybot View Post
If I select Delta Solo by right-clicking the wet/dry knob then selecting the menu item, it works. It also works if I run the toggle action.

But if I Alt+click the wet/dry knob, the delta solo icon appears, but it's not actually working. Tried multiple plugins. Running Windows.
Same here Os mojave
tonalstates is online now   Reply With Quote
Old 10-06-2021, 07:35 PM   #4
Soli Deo Gloria
Human being with feelings
 
Soli Deo Gloria's Avatar
 
Join Date: Oct 2013
Location: Argentina
Posts: 1,303
Default Crashes!

I'm getting consistent crashes on RC7 while trying to load a project with, among other things, various Kontakt instances bridged with Yabridge/Wine-TKG and a single instance of Sfizz on Manjaro. The last time I tried, I saw the load window froze while Sfizz was loading, but I wouldn't be able to confirm that the problem is related specifically to it.



The project loads and performs perfectly fine with RC5.



Whatever you need to trace the issue, I will provide, of course...
Soli Deo Gloria is offline   Reply With Quote
Old 10-06-2021, 11:17 PM   #5
Phazma
Human being with feelings
 
Join Date: Jun 2019
Posts: 2,872
Default

Quote:
Originally Posted by SmajjL View Post
[*]# Meters: improve clip detection when metering record input
Not sure if this is desired behavior but input clip detection is slightly more sensitive than playback clip detection.

I have tried by routing a track that reaches 0dB out of Reaper, where it didn't show clipping, and back into the input of a new track in Reaper, where the indicators turned red. Lowering the gain of the audio file by -0.01 stopped the input clip indicators from lighting up.
Phazma is offline   Reply With Quote
Old 10-06-2021, 11:32 PM   #6
sockmonkey72
Human being with feelings
 
sockmonkey72's Avatar
 
Join Date: Sep 2021
Location: Berlin
Posts: 1,935
Default Scroll direction has no effect on BPM/Reascript scrolling

This is an update to my (inaccurate) report for rc5 -- the vertical/horizontal scroll reverse is generally working, in fact.

However, the scroll direction of the BPM number field doesn't respect the scroll direction preference. The same applies to ReaScripts where the 'mouse_wheel' global is used to determine scroll direction, for instance:

Here's a little EEL2 script to show this:

Code:
wheel_cache = 0;

 function draw_string_mousewheel(x, y, r, g, b, a) local (w, h)
( 
  gfx_r = r;
  gfx_g = g;
  gfx_b = b;
  gfx_a = a;
  
  step_s = sprintf(#, "%d", step);
  gfx_measurestr(step_s, w, h);
  mouse_wheel != 0 ? wheel_cache = mouse_wheel;
  // is mouse on string?
  mouse_x >= x && mouse_x <= x + gfx_w && mouse_y >= y && mouse_y <= y + h ? (
    mouse_wheel != 0 ? (
      step += (mouse_wheel / abs(mouse_wheel));
      step < 1 ? step = 1;
      mouse_wheel = 0;
    );
  );

  gfx_printf("%d", step);
  gfx_printf(" foobar(s), wheel: %d", wheel_cache);
);

function run()
(
  gfx_w = 200;
  gfx_h = 400;
  gfx_x = gfx_y = 20;

  gfx_x = 20;
  gfx_y += 2 * gfx_texth;
  
  draw_string_mousewheel(gfx_x, gfx_y, 0.5, 0.8, 0.5, 1);

  gfx_update();
  gfx_getchar() >= 0 ? defer("run();");
);

gfx_init("Scroll Direction Test", 250, 150);
gfx_setfont(1, "Verdana", 16);

step = 1;

run();
This is NOT a regression from 6.36, but it would be nice if the scroll wheel followed the preference in these cases.
sockmonkey72 is offline   Reply With Quote
Old 10-06-2021, 11:45 PM   #7
sockmonkey72
Human being with feelings
 
sockmonkey72's Avatar
 
Join Date: Sep 2021
Location: Berlin
Posts: 1,935
Default

Quote:
Originally Posted by SmajjL View Post
  • + Audio Units: always replace input for instrument plugins (same behavior as VST and lv2 instrument plugins)
  • + Audio Units: support IO menu in pin connector dialog
Thanks for this, it's working perfectly as far as I can tell.
sockmonkey72 is offline   Reply With Quote
Old 10-06-2021, 11:52 PM   #8
sockmonkey72
Human being with feelings
 
sockmonkey72's Avatar
 
Join Date: Sep 2021
Location: Berlin
Posts: 1,935
Default Wrong pane brought to front when MIDI Editor closes

I have reproduction steps for the Media Explorer behavior I was describing last week, but couldn't reproduce.

1. New Project, new Track, make some MIDI item in the track
2. Ensure that the Mixer is docked and visible
3. Double-click the MIDI item to open the MIDI editor (if it's not docked, dock it and repeat these steps)
4. Returning to the arranger, delete the MIDI item

On my REAPER, this causes the MIDI editor to close. Instead of returning to the Mixer, though, the docked window is now the Media Explorer (or if the Media Explorer has been explicitly closed, the Track Wiring Diagram). I'd expect REAPER to bring me back to the mixer in this case.

Thanks, I suppose this is unrelated to the ME changes in this dev cycle, but worth noting (and correcting my previous report).
sockmonkey72 is offline   Reply With Quote
Old 10-07-2021, 12:10 AM   #9
Phazma
Human being with feelings
 
Join Date: Jun 2019
Posts: 2,872
Default

Quote:
Originally Posted by sockmonkey72 View Post
However, the scroll direction of the BPM number field doesn't respect the scroll direction preference.
I have just tried and can confirm this. The preference for reverse scrolling actually seems to only affect the arrange window and not the BPM field or other parts of Reaper (like the MX). As a user I would expect scrolling direction to be consistent within the entire app.

And btw regarding BPM field, isn't it about time it became draggable instead of just scrollable? It is annoying to scroll up-down-up-down until you manage to get the right value, let alone accidental scrolls changing the value without noticing until too late. (sorry for offtopic request, it was itching)
Phazma is offline   Reply With Quote
Old 10-07-2021, 12:27 AM   #10
tonalstates
Human being with feelings
 
tonalstates's Avatar
 
Join Date: Jun 2020
Posts: 656
Default

[QUOTE=Phazma;2486440]
And btw regarding BPM field, isn't it about time it became draggable instead of just scrollable?/QUOTE]

+1 pls
tonalstates is online now   Reply With Quote
Old 10-07-2021, 05:46 AM   #11
daxliniere
Human being with feelings
 
daxliniere's Avatar
 
Join Date: Nov 2008
Location: London, UK
Posts: 2,581
Default

[QUOTE=tonalstates;2486441]
Quote:
Originally Posted by Phazma View Post
And btw regarding BPM field, isn't it about time it became draggable instead of just scrollable?/QUOTE]

+1 pls
That would be pretty cool, actually.
__________________
Puzzle Factory Sound Studios, London [Website] [Instagram]
[AMD 5800X, 32Gb RAM, Win10x64, NVidia GTX1080ti, UAD2-OCTO, FireFaceUCX, REAPER x64]
[Feature request: More details in Undo History]
daxliniere is offline   Reply With Quote
Old 10-07-2021, 05:48 AM   #12
daxliniere
Human being with feelings
 
daxliniere's Avatar
 
Join Date: Nov 2008
Location: London, UK
Posts: 2,581
Default

Quote:
Originally Posted by SmajjL View Post
[*]+ FX: Alt+click on wet/dry knob to toggle delta solo
THANK YOU, THANK YOU, THANK YOU!!
__________________
Puzzle Factory Sound Studios, London [Website] [Instagram]
[AMD 5800X, 32Gb RAM, Win10x64, NVidia GTX1080ti, UAD2-OCTO, FireFaceUCX, REAPER x64]
[Feature request: More details in Undo History]
daxliniere is offline   Reply With Quote
Old 10-07-2021, 05:50 AM   #13
fieldswn
Human being with feelings
 
fieldswn's Avatar
 
Join Date: Oct 2006
Location: Wilmington, DE
Posts: 179
Default Run preset loading synchronously with audio processing

I wonder if someone could explain this one?:

Quote:
+ VST: run preset loading synchronously with audio processing
Sounds worrisome to me because my live performance system depends on changing presets very quickly, without interrupting the audio.

Thanks!
__________________
williamfields.com
fieldswn is offline   Reply With Quote
Old 10-07-2021, 05:55 AM   #14
schwa
Administrator
 
schwa's Avatar
 
Join Date: Mar 2007
Location: NY
Posts: 15,749
Default

Quote:
Originally Posted by daxliniere View Post
THANK YOU, THANK YOU, THANK YOU!!
if you like that, wait until it actually works!
schwa is offline   Reply With Quote
Old 10-07-2021, 05:56 AM   #15
daxliniere
Human being with feelings
 
daxliniere's Avatar
 
Join Date: Nov 2008
Location: London, UK
Posts: 2,581
Default

Quote:
Originally Posted by Funkybot View Post
If I select Delta Solo by right-clicking the wet/dry knob then selecting the menu item, it works. It also works if I run the toggle action.

But if I Alt+click the wet/dry knob, the delta solo icon appears, but it's not actually working. Tried multiple plugins. Running Windows.
Can confirm on Windows, also.
__________________
Puzzle Factory Sound Studios, London [Website] [Instagram]
[AMD 5800X, 32Gb RAM, Win10x64, NVidia GTX1080ti, UAD2-OCTO, FireFaceUCX, REAPER x64]
[Feature request: More details in Undo History]
daxliniere is offline   Reply With Quote
Old 10-07-2021, 05:57 AM   #16
daxliniere
Human being with feelings
 
daxliniere's Avatar
 
Join Date: Nov 2008
Location: London, UK
Posts: 2,581
Default

Quote:
Originally Posted by schwa View Post
if you like that, wait until it actually works!
hahaha! I just came back here to confirm Funkybot's report and saw this.
__________________
Puzzle Factory Sound Studios, London [Website] [Instagram]
[AMD 5800X, 32Gb RAM, Win10x64, NVidia GTX1080ti, UAD2-OCTO, FireFaceUCX, REAPER x64]
[Feature request: More details in Undo History]
daxliniere is offline   Reply With Quote
Old 10-07-2021, 07:28 AM   #17
deeb
Human being with feelings
 
deeb's Avatar
 
Join Date: Feb 2017
Posts: 4,812
Default

Quote:
Originally Posted by schwa View Post
if you like that, wait until it actually works!
<"playback time offset" and "MS" next to wet knob per FX instance> is missing deeb don't like :P
__________________
🙏🏻
deeb is offline   Reply With Quote
Old 10-07-2021, 07:47 AM   #18
Justin
Administrator
 
Justin's Avatar
 
Join Date: Jan 2005
Location: NYC
Posts: 15,721
Default

Quote:
Originally Posted by Soli Deo Gloria View Post
I'm getting consistent crashes on RC7 while trying to load a project with, among other things, various Kontakt instances bridged with Yabridge/Wine-TKG and a single instance of Sfizz on Manjaro. The last time I tried, I saw the load window froze while Sfizz was loading, but I wouldn't be able to confirm that the problem is related specifically to it.



The project loads and performs perfectly fine with RC5.



Whatever you need to trace the issue, I will provide, of course...
What happens with rc6? Can you make a dump file or core dump?
Justin is offline   Reply With Quote
Old 10-07-2021, 07:49 AM   #19
Justin
Administrator
 
Justin's Avatar
 
Join Date: Jan 2005
Location: NYC
Posts: 15,721
Default

Quote:
Originally Posted by fieldswn View Post
I wonder if someone could explain this one?:



Sounds worrisome to me because my live performance system depends on changing presets very quickly, without interrupting the audio.

Thanks!
Worth a check -- if you find there's a performance degradation we can tweak it, but this change makes loading presets safer from a thread-safety perspective (and assuming the plug-in doesn't do some highly-optimized asynchronous preset loading, should function pretty similarly).

Last edited by Justin; 10-07-2021 at 09:31 AM.
Justin is offline   Reply With Quote
Old 10-07-2021, 10:25 AM   #20
fieldswn
Human being with feelings
 
fieldswn's Avatar
 
Join Date: Oct 2006
Location: Wilmington, DE
Posts: 179
Default

Quote:
Originally Posted by Justin View Post
Worth a check -- if you find there's a performance degradation we can tweak it, but this change makes loading presets safer from a thread-safety perspective (and assuming the plug-in doesn't do some highly-optimized asynchronous preset loading, should function pretty similarly).
I did some testing and it seems to be fine. Thanks!
__________________
williamfields.com
fieldswn is offline   Reply With Quote
Old 10-07-2021, 02:42 PM   #21
mschnell
Human being with feelings
 
mschnell's Avatar
 
Join Date: Jun 2013
Location: Krefeld, Germany
Posts: 14,686
Default

Quote:
Originally Posted by Justin View Post
Worth a check -- if you find there's a performance degradation we can tweak it, but this change makes loading presets safer from a thread-safety perspective (and assuming the plug-in doesn't do some highly-optimized asynchronous preset loading, should function pretty similarly).
I suppose LiveConfigs should be a nice helper for testing ...
-Michael
mschnell is offline   Reply With Quote
Old 10-07-2021, 03:35 PM   #22
Soli Deo Gloria
Human being with feelings
 
Soli Deo Gloria's Avatar
 
Join Date: Oct 2013
Location: Argentina
Posts: 1,303
Default

Quote:
Originally Posted by Justin View Post
What happens with rc6? Can you make a dump file or core dump?
I couldn't download it when it was available at landoleet, and I jumped from rc5 to rc7. Is it available somewhere?

Regarding the dump file/core dump, I never did it on Linux up to now. If you give me the steps or point me to a tutorial, I'll certainly do it...
Soli Deo Gloria is offline   Reply With Quote
Old 10-07-2021, 04:12 PM   #23
Paul Eye
Human being with feelings
 
Join Date: Feb 2006
Location: Helsinki, Finland
Posts: 305
Default

Quote:
Originally Posted by Soli Deo Gloria View Post
I couldn't download it when it was available at landoleet, and I jumped from rc5 to rc7. Is it available somewhere?
In the /old directory on landoleet: https://www.landoleet.org/old/?C=M;O=D (sorted by newest first for your convenience)
Paul Eye is offline   Reply With Quote
Old 10-07-2021, 04:51 PM   #24
PMan
Human being with feelings
 
Join Date: Aug 2019
Posts: 646
Default

Quote:
Originally Posted by SmajjL View Post
v6.37rc7 - October 6 2021
+ LV2: support pin connector dialog I/O menu option to zero out unmapped channels
Many Thanks

Last edited by PMan; 10-07-2021 at 04:56 PM.
PMan is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 11:40 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.