2018-08-16 23:20:33 +03:00
|
|
|
function Controller()
|
|
|
|
{
|
|
|
|
installer.uninstallationFinished.connect(this, Controller.prototype.uninstallationFinished);
|
|
|
|
installer.installationFinished.connect(this, Controller.prototype.installationFinished);
|
2018-10-25 19:54:40 +03:00
|
|
|
runProgramControl();
|
2018-08-16 23:20:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-25 19:54:40 +03:00
|
|
|
function runProgramControl() {
|
|
|
|
if (systemInfo.kernelType === "winnt") {
|
|
|
|
installer.setValue("RunProgram", "@TargetDir@/SoundBand.exe");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-16 23:20:33 +03:00
|
|
|
Controller.prototype.uninstallationFinished = function()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Controller.prototype.installationFinished = function()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|