From 0015494e190b65886a9158868c143c5515d79ad8 Mon Sep 17 00:00:00 2001 From: Greyhoof <132987288+greyhoof@users.noreply.github.com> Date: Tue, 5 Sep 2023 20:44:35 +0200 Subject: [PATCH] ~ Improved layout of browser option dialog + Implemented display of current settings value + Implemented selecting and setting new browser option path value --- chat/localize.ts | 3 ++ electron/BrowserOption.vue | 81 ++++++++++++++++++++++++++++++-------- electron/common.ts | 2 +- electron/main.ts | 25 ++++++++++++ 4 files changed, 93 insertions(+), 18 deletions(-) diff --git a/chat/localize.ts b/chat/localize.ts index c7a1e9b..baa905e 100644 --- a/chat/localize.ts +++ b/chat/localize.ts @@ -190,10 +190,13 @@ Current log location: {1}`, 'settings.hwAcceleration': 'Enable hardware acceleration (requires restart)', 'settings.bbCodeBar': 'Show BBCode formatting bar', 'settings.browserOption': 'Set command for opening clicked links', + 'settings.browserOptionHeader': 'Browser Settings', 'settings.browserOptionTitle': 'Browser Path', 'settings.browserOptionPath': 'Path to browser executable', 'settings.browserOptionArguments': 'Arguments to pass to executable', 'settings.browserOptionArgumentsHelp': 'Arguments are separated by spaces. Use %s to insert the URL.', + 'settings.browserOptionBrowse': 'Browse', + 'settings.browserOptionSave': 'Save', 'fixLogs.action': 'Fix corrupted logs', 'fixLogs.text': `There are a few reason log files can become corrupted - log files from old versions with bugs that have since been fixed or incomplete file operations caused by computer crashes are the most common. If one of your log files is corrupted, you may get an "Unknown Type" error when you log in or when you open a specific tab. You may also experience other issues. diff --git a/electron/BrowserOption.vue b/electron/BrowserOption.vue index c4d4a7f..a0e9a5e 100644 --- a/electron/BrowserOption.vue +++ b/electron/BrowserOption.vue @@ -1,22 +1,52 @@