23 lines
717 B
Plaintext
23 lines
717 B
Plaintext
function Component()
|
|
{
|
|
gui.pageWidgetByObjectName("LicenseAgreementPage").entered.connect(changeLicenseLabels);
|
|
}
|
|
|
|
changeLicenseLabels = function()
|
|
{
|
|
page = gui.pageWidgetByObjectName("LicenseAgreementPage");
|
|
page.AcceptLicenseLabel.setText("Yes, I agree");
|
|
page.RejectLicenseLabel.setText("No, I disagree");
|
|
}
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
component.createOperations();
|
|
|
|
if (systemInfo.productType === "windows") {
|
|
component.addOperation("CreateShortcut", "@TargetDir@/nymea-app.exe", "@StartMenuDir@/nymea app.lnk",
|
|
"workingDirectory=@TargetDir@", "iconPath=@TargetDir@/logo.ico",
|
|
"description=nymea:app - The nymea frontend");
|
|
}
|
|
}
|