2019-02-28 02:16:11 +07:00
|
|
|
ready(function(){
|
2019-03-03 00:33:11 +07:00
|
|
|
const settings = require('electron-settings');
|
2019-04-07 18:52:05 +07:00
|
|
|
const fixPath = require('fix-path');
|
2019-03-01 23:12:05 +07:00
|
|
|
document.isStarting = true;
|
2019-04-07 18:52:05 +07:00
|
|
|
fixPath();
|
2019-03-23 23:20:47 +07:00
|
|
|
preFillSettings();
|
|
|
|
loadLatestUsedSettings();
|
2019-02-28 05:02:10 +07:00
|
|
|
registerRepeaterForAllInput();
|
2019-03-01 00:40:42 +07:00
|
|
|
registerEventListenerForSettingsInput();
|
2019-02-28 05:02:10 +07:00
|
|
|
checkForAdminRights();
|
2019-03-01 21:38:59 +07:00
|
|
|
displayVersion();
|
2019-03-01 23:12:05 +07:00
|
|
|
reApplyPeriodically(require('electron-settings').get('settings.reapply_periodically'));
|
2019-03-02 22:09:06 +07:00
|
|
|
displayOptionDescription();
|
2019-03-13 02:04:02 +07:00
|
|
|
if (require('os').platform() === 'win32') {
|
2019-04-06 05:40:09 +07:00
|
|
|
recreateShortcut();
|
2019-03-11 18:57:42 +07:00
|
|
|
}
|
2019-04-06 05:40:09 +07:00
|
|
|
handlePlatformSpecificDisplay();
|
2019-03-08 02:00:12 +07:00
|
|
|
updatePresetList();
|
2019-03-08 19:02:14 +07:00
|
|
|
checkForNewRelease();
|
2019-03-01 23:12:05 +07:00
|
|
|
document.isStarting = false;
|
2019-03-03 00:33:11 +07:00
|
|
|
settings.set('settings', {
|
|
|
|
...settings.get('settings'),
|
|
|
|
first_launch: false
|
|
|
|
});
|
2019-02-28 02:16:11 +07:00
|
|
|
});
|
2019-02-28 03:04:28 +07:00
|
|
|
|
2019-02-28 05:02:10 +07:00
|
|
|
/**
|
|
|
|
* Will create and handle ryzenadj.exe execution.
|
|
|
|
*/
|
2019-03-01 00:39:33 +07:00
|
|
|
function applyRyzenSettings() {
|
2019-03-08 02:00:12 +07:00
|
|
|
const settings = getCurrentSettings("ryzenadjArgs");
|
2019-02-28 03:04:28 +07:00
|
|
|
|
|
|
|
const child = require('child_process').execFile;
|
2019-02-28 14:11:03 +07:00
|
|
|
const executablePath = getRyzenAdjExecutablePath();
|
2019-02-28 03:04:28 +07:00
|
|
|
|
|
|
|
var parameters = [];
|
|
|
|
for (const option in settings) {
|
|
|
|
if (settings.hasOwnProperty(option)) {
|
|
|
|
let value = settings[option];
|
|
|
|
|
|
|
|
switch (option) {
|
|
|
|
case "--stapm-limit=":
|
|
|
|
case "--fast-limit=":
|
|
|
|
case "--slow-limit=":
|
2019-03-23 22:49:57 +07:00
|
|
|
case "--stapm-time=":
|
2019-02-28 03:04:28 +07:00
|
|
|
value = value * 1000;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case "--tctl-temp=":
|
2019-03-10 16:17:28 +07:00
|
|
|
case "--max-fclk-frequency=":
|
|
|
|
case "--min-fclk-frequency=":
|
2019-02-28 03:04:28 +07:00
|
|
|
value = value;
|
|
|
|
break;
|
|
|
|
|
2019-06-01 20:57:12 +07:00
|
|
|
case "--psi0-current=":
|
2019-02-28 03:04:28 +07:00
|
|
|
case "--vrmmax-current=":
|
|
|
|
value = '0x' + decimalToHexString(value * 1000);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
parameters.push('' + option + value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
child(executablePath, parameters, function(err, data) {
|
2019-02-28 05:02:10 +07:00
|
|
|
var output = data.toString();
|
|
|
|
if (err) {
|
|
|
|
notification('danger', err + '<br/>' + output);
|
|
|
|
}
|
|
|
|
else if (output) {
|
|
|
|
notification('success', 'Ryzenadj output:<br/>' + output);
|
2019-03-01 00:23:05 +07:00
|
|
|
saveLatestUsedSettings();
|
2019-02-28 05:02:10 +07:00
|
|
|
}
|
2019-02-28 03:04:28 +07:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|