mirror of
https://github.com/QuasarApp/SoundBand.git
synced 2025-04-26 07:14:31 +00:00
26 lines
524 B
JavaScript
26 lines
524 B
JavaScript
function Controller()
|
|
{
|
|
installer.uninstallationFinished.connect(this, Controller.prototype.uninstallationFinished);
|
|
installer.installationFinished.connect(this, Controller.prototype.installationFinished);
|
|
runProgramControl();
|
|
}
|
|
|
|
|
|
function runProgramControl() {
|
|
if (systemInfo.kernelType === "winnt") {
|
|
installer.setValue("RunProgram", "@TargetDir@/SoundBand.exe");
|
|
}
|
|
}
|
|
|
|
Controller.prototype.uninstallationFinished = function()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
Controller.prototype.installationFinished = function()
|
|
{
|
|
|
|
}
|
|
|