feat: multi-profile progress

This commit is contained in:
2025-03-06 21:40:14 +00:00
parent cda8230d7d
commit cb813a7050
6 changed files with 86 additions and 55 deletions

View File

@ -71,7 +71,7 @@ const extraDisplayOptionsDisabled = computed(() => {
(async () => {
const aime_path = await path.join(await prf.configDir, 'aime.txt');
aimeCode.value = await readTextFile(aime_path);
aimeCode.value = await readTextFile(aime_path).catch(() => '');
})();
</script>
@ -227,6 +227,15 @@ const extraDisplayOptionsDisabled = computed(() => {
:model-value="prf.cfgAny('subnet', '')"
/>
</OptionRow>
<OptionRow title="Address suffix">
<InputText
class="shrink"
size="small"
:maxlength="3"
placeholder="12"
:model-value="prf.cfgAny('addrsuffix', '')"
/>
</OptionRow>
</OptionCategory>
<OptionCategory title="Misc">
<OptionRow title="OpenSSL bug workaround for Intel 10th gen">
@ -250,6 +259,8 @@ const extraDisplayOptionsDisabled = computed(() => {
<OptionRow title="More segatools options">
<FileEditor filename="segatools-base.ini" />
</OptionRow>
</OptionCategory>
<OptionCategory title="Extensions">
<OptionRow title="Inohara config">
<FileEditor
filename="inohara.cfg"