More complete list of 3.2 changes?

ZealAddon

20-10-2011 21:38:25

Is there anywhere we can find a more complete list of 3.2 changes? I just started scratching the surface of 3.2 and already I am getting bombarded with little random changes. For example, MyGUI::Widget::isVisible() was deprecated (for some reason), its now 'getVisible'. Which seems odd because many other functions continue to use the old 'is' syntax (MyGui::Allign for example). Also there is no longer a MyGUI::Allign::Relative, how do we do relative/scaling guis now? There is also no more get/set caption for widgets...

I am sure I will discover more undocumented changes as I migrate my project to 3.2. We really need to create a more complete list of changes.

Altren

24-10-2011 12:47:32

Is there anywhere we can find a more complete list of 3.2 changes? I just started scratching the surface of 3.2 and already I am getting bombarded with little random changes. For example, MyGUI::Widget::isVisible() was deprecated (for some reason), its now 'getVisible'. Which seems odd because many other functions continue to use the old 'is' syntax (MyGui::Allign for example). Also there is no longer a MyGUI::Allign::Relative, how do we do relative/scaling guis now? There is also no more get/set caption for widgets...

I am sure I will discover more undocumented changes as I migrate my project to 3.2. We really need to create a more complete list of changes.

We are trying to follow next rule: "getSomething" is used in all cases where you get some variable, in most cases getSomething is paired with setSomething.
What about get/set caption - it is described in changelog: we moved all text related stuff into TextBox widget, because Widget do not always have text area.
What about Relative align, well, we never had it working and it doesn't really scale stuff, just resize widget with more complex logic. And yeah, that's the change that wasn't listed in changelog, we'll fix that.