We are happy to announce Qt Online Installer / Maintenance Tool 3.2.3 has been released.
We have fixed a few translation issues. Please read the details in ChangeLog.
The page, introducing Qt Open Source usage, has been slightly modified. The goal has been to clarify the Qt Open Source usage.

In the same page, we ask if Qt Open Source is used in any company or business.
In the headless installation, the company query may be passed with the following script.
Controller.prototype.ObligationsPageCallback = function()
{
var page = gui.pageWidgetByObjectName("ObligationsPage");
page.obligationsAgreement.setChecked(true);
var nameEdit = gui.findChild(page, "CompanyName")
if (nameEdit) {
nameEdit.text = "My Company"
}
//Or alternatively:
var individualCheckbox = gui.findChild(page, "IndividualPerson")
if (individualCheckbox) {
individualCheckbox.checked = true;
}
page.completeChanged();
gui.clickButton(buttons.NextButton);
}