Update Cef 125.0.210, fix PerformanceCounter bugs

This commit is contained in:
Natsumi
2024-06-15 11:53:58 +12:00
parent 2d13d97ae4
commit fe12f615ba
13 changed files with 223 additions and 153 deletions

View File

@@ -15225,8 +15225,8 @@ speechSynthesis.getVoices();
'VRCX_hideDevicesFromFeed',
false
);
$app.data.hideCpuUsageFromFeed = await configRepository.getBool(
'VRCX_hideCpuUsageFromFeed',
$app.data.vrOverlayCpuUsage = await configRepository.getBool(
'VRCX_vrOverlayCpuUsage',
false
);
$app.data.hideUptimeFromFeed = await configRepository.getBool(
@@ -15429,8 +15429,8 @@ speechSynthesis.getVoices();
this.hideDevicesFromFeed
);
await configRepository.setBool(
'VRCX_hideCpuUsageFromFeed',
this.hideCpuUsageFromFeed
'VRCX_vrOverlayCpuUsage',
this.vrOverlayCpuUsage
);
await configRepository.setBool(
'VRCX_hideUptimeFromFeed',
@@ -16155,7 +16155,7 @@ speechSynthesis.getVoices();
var VRConfigVars = {
overlayNotifications: this.overlayNotifications,
hideDevicesFromFeed: this.hideDevicesFromFeed,
hideCpuUsageFromFeed: this.hideCpuUsageFromFeed,
vrOverlayCpuUsage: this.vrOverlayCpuUsage,
minimalFeed: this.minimalFeed,
notificationPosition: this.notificationPosition,
notificationTimeout: this.notificationTimeout,