From b29b43de75875c57182e740c2b4a0c3860cd741a Mon Sep 17 00:00:00 2001 From: Greyhoof <132987288+greyhoof@users.noreply.github.com> Date: Fri, 17 Nov 2023 09:33:58 +0100 Subject: [PATCH] + Added a "reset to default" button for browser settings --- chat/localize.ts | 1 + electron/BrowserOption.vue | 15 ++++++++++++--- electron/main.ts | 3 +-- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/chat/localize.ts b/chat/localize.ts index baa905e..ea8fb63 100644 --- a/chat/localize.ts +++ b/chat/localize.ts @@ -197,6 +197,7 @@ Current log location: {1}`, 'settings.browserOptionArgumentsHelp': 'Arguments are separated by spaces. Use %s to insert the URL.', 'settings.browserOptionBrowse': 'Browse', 'settings.browserOptionSave': 'Save', + 'settings.browserOptionReset': 'Reset to default', '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 b8f0525..5913c2b 100644 --- a/electron/BrowserOption.vue +++ b/electron/BrowserOption.vue @@ -21,7 +21,7 @@
Danger Zone!
-
This is an advanced setting. By changing this setting to an unsupported program (e.g. not a browser), you might not be able to open links from F-Chat anymore.
+
This is an advanced setting. By changing this setting to an unsupported program (i.e. not a browser), you might not be able to open links from F-Chat anymore.

Mac User: As of writing, MacOS has a bug in how it handles opening links.

@@ -56,9 +56,13 @@
-
+
- + +
+
+
+
@@ -160,6 +164,11 @@ export default class BrowserOption extends Vue { this.close(); } + resetToDefault(): void { + this.browserPath = ''; + this.browserArgs = ''; + } + browseForPath(): void { ipcRenderer.invoke('browser-option-browse').then((result) => { this.browserPath = result; diff --git a/electron/main.ts b/electron/main.ts index 49e6238..0377a0e 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -197,7 +197,6 @@ function openURLExternally(linkUrl: string): void { linkUrl = encodeURI(linkUrl); } - if (!settings.browserArgs.includes('%s')) { // append %s to params if it is not already there settings.browserArgs += ' %s'; @@ -343,7 +342,7 @@ function showPatchNotes(): void { } function openBrowserSettings(): electron.BrowserWindow | undefined { - let desiredHeight = 500; + let desiredHeight = 520; if(process.platform === 'darwin') { desiredHeight = 750; }