Qt Online Installer 3.2.1 Released

We are happy to announce that Qt Online Installer, based on the Installer Framework 3.2.0, has been released. The biggest change is the installation flow, where Open Source Qt users have to explicitly accept open source usage obligations. We changed the flow to help our customers with the commercial license compliancy. Our customers have been concerned about unintentional Open Source Qt installations in software projects, using Commercial Qt. 

Open Source Qt can be installed and used as before. However, open source users must explicitly accept the open source usage obligations. 

Qt developers, using headless Qt installations, can automatically accept the open source obligations by using the following callback in the installation script. 

Controller.prototype.ObligationsPageCallback = function()
{
    var page = gui.pageWidgetByObjectName("ObligationsPage");
    page.obligationsAgreement.setChecked(true);
    page.completeChanged();
gui.clickButton(buttons.NextButton);
}

 


Blog Topics:

Comments