1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Updated the breaking changes doc to reflect the recent AudioProcessorEditor changes in 5a59c92b

This commit is contained in:
ed 2021-03-11 14:32:35 +00:00
parent f5a21daa06
commit 85899f825d

View file

@ -4,6 +4,29 @@ JUCE breaking changes
Develop
=======
Change
------
Calling AudioProcessorEditor::setResizeLimits() will no longer implicitly add a
ResizableCornerComponent to the editor if it has not already been set as
resizable.
Possible Issues
---------------
Code which previously relied on calling this method to set up the corner
resizer will no longer work.
Workaround
----------
Explicitly call AudioProcessorEditor::setResizable() with the second argument
set to true to enable the corner resizer.
Rationale
---------
The previous behaviour was undocumented and potentially confusing. There is now
a single method to control the behaviour of the editor's corner resizer to
avoid any ambiguity.
Change
------
The implementations of `getValue` and `setValue` in `AUInstanceParameter` now
@ -11,7 +34,6 @@ properly take the ranges of discrete parameters into account.
Possible Issues
---------------
This issue affects JUCE Audio Unit hosts. Automation data previously saved for
a discrete parameter with a non-zero minimum value may not set the parameter to
the same values as previous JUCE versions. Note that previously, `getValue` on