Skip to main content

Qt Online Installer 3.2.3 Released

Comments

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. 

installer

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);

}

 

 

Comments

Subscribe to our blog

Try Qt 6.10 Now!

Download the latest release here: www.qt.io/download

Qt 6.10 is now available, with new features and improvements for application developers and device creators.

We're Hiring

Check out all our open positions here and follow us on Instagram to see what it's like to be #QtPeople.