mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
Remove OSC fix
https://feedback.vrchat.com/bug-reports/p/installexe-breaks-osc-port-binding
This commit is contained in:
@@ -11424,19 +11424,6 @@ speechSynthesis.getVoices();
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (this.vrcOSCFix) {
|
|
||||||
workerTimers.setTimeout(() => {
|
|
||||||
AppApi.KillInstall().then((processKilled) => {
|
|
||||||
if (processKilled) {
|
|
||||||
console.log('OSCFix: Killed Install.exe');
|
|
||||||
} else {
|
|
||||||
console.log(
|
|
||||||
'OSCFix: Nothing to kill, no Install.exe process running'
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}, 2000);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 'openvr-init':
|
case 'openvr-init':
|
||||||
this.isGameNoVR = false;
|
this.isGameNoVR = false;
|
||||||
@@ -15567,10 +15554,6 @@ speechSynthesis.getVoices();
|
|||||||
'VRCX_vrcQuitFix',
|
'VRCX_vrcQuitFix',
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
$app.data.vrcOSCFix = await configRepository.getBool(
|
|
||||||
'VRCX_vrcOSCFix',
|
|
||||||
true
|
|
||||||
);
|
|
||||||
$app.data.vrBackgroundEnabled = await configRepository.getBool(
|
$app.data.vrBackgroundEnabled = await configRepository.getBool(
|
||||||
'VRCX_vrBackgroundEnabled',
|
'VRCX_vrBackgroundEnabled',
|
||||||
false
|
false
|
||||||
@@ -15755,7 +15738,6 @@ speechSynthesis.getVoices();
|
|||||||
this.relaunchVRChatAfterCrash
|
this.relaunchVRChatAfterCrash
|
||||||
);
|
);
|
||||||
await configRepository.setBool('VRCX_vrcQuitFix', this.vrcQuitFix);
|
await configRepository.setBool('VRCX_vrcQuitFix', this.vrcQuitFix);
|
||||||
await configRepository.setBool('VRCX_vrcOSCFix', this.vrcOSCFix);
|
|
||||||
await configRepository.setBool(
|
await configRepository.setBool(
|
||||||
'VRCX_vrBackgroundEnabled',
|
'VRCX_vrBackgroundEnabled',
|
||||||
this.vrBackgroundEnabled
|
this.vrBackgroundEnabled
|
||||||
|
|||||||
@@ -422,10 +422,6 @@
|
|||||||
"header": "VRChat Quit Fix",
|
"header": "VRChat Quit Fix",
|
||||||
"description": "Kill VRChat after exiting game"
|
"description": "Kill VRChat after exiting game"
|
||||||
},
|
},
|
||||||
"vrchat_osc_fix": {
|
|
||||||
"header": "VRChat OSC Fix",
|
|
||||||
"description": "Resuming and terminating the suspended install.exe process after exiting game"
|
|
||||||
},
|
|
||||||
"auto_cache_management": {
|
"auto_cache_management": {
|
||||||
"header": "Automatically Manage Cache When Closing VRChat",
|
"header": "Automatically Manage Cache When Closing VRChat",
|
||||||
"description": "Auto delete old versions from cache"
|
"description": "Auto delete old versions from cache"
|
||||||
|
|||||||
@@ -458,11 +458,6 @@ mixin settingsTab()
|
|||||||
div.options-container-item
|
div.options-container-item
|
||||||
span.name(style="min-width:300px") {{ $t('view.settings.advanced.advanced.vrchat_quit_fix.description') }}
|
span.name(style="min-width:300px") {{ $t('view.settings.advanced.advanced.vrchat_quit_fix.description') }}
|
||||||
el-switch(v-model="vrcQuitFix" @change="saveOpenVROption")
|
el-switch(v-model="vrcQuitFix" @change="saveOpenVROption")
|
||||||
//- Advanced | VRChat OSC Fix
|
|
||||||
span.sub-header {{ $t('view.settings.advanced.advanced.vrchat_osc_fix.header') }}
|
|
||||||
div.options-container-item
|
|
||||||
span.name(style="min-width:300px") {{ $t('view.settings.advanced.advanced.vrchat_osc_fix.description') }}
|
|
||||||
el-switch(v-model="vrcOSCFix" @change="saveOpenVROption")
|
|
||||||
//- Advanced | Auto Cache Management
|
//- Advanced | Auto Cache Management
|
||||||
span.sub-header {{ $t('view.settings.advanced.advanced.auto_cache_management.header') }}
|
span.sub-header {{ $t('view.settings.advanced.advanced.auto_cache_management.header') }}
|
||||||
div.options-container-item
|
div.options-container-item
|
||||||
|
|||||||
Reference in New Issue
Block a user