diff --git a/electron/BrowserOption.vue b/electron/BrowserOption.vue index eae71f1..b8f0525 100644 --- a/electron/BrowserOption.vue +++ b/electron/BrowserOption.vue @@ -16,6 +16,21 @@

{{l('settings.browserOptionTitle')}}

+
+
+
+
+
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.
+ +

+

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

+

When your default browser is something other than Safari and you select Safari in this settings window, links might be opened twice.

+

Once in Safari and a second time in your default browser. This tends to happen when Safari is not running when clicking a link.

+
+
+
+
@@ -83,6 +98,7 @@ export default class BrowserOption extends Vue { hasCompletedUpgrades = false; browserPath = ''; browserArgs = ''; + isMac = process.platform === 'darwin'; get styling(): string { try { @@ -197,6 +213,16 @@ export default class BrowserOption extends Vue { } } + .warning { + border: 1px solid var(--warning); + padding: 10px; + margin-bottom: 20px; + border-radius: 3px; + + div { + margin-top: 10px; + } + } .disableWindowsHighContrast, .disableWindowsHighContrast * { forced-color-adjust: none; diff --git a/electron/main.ts b/electron/main.ts index d5fe096..262b027 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -341,17 +341,22 @@ function showPatchNotes(): void { } function openBrowserSettings(): electron.BrowserWindow | undefined { + let desiredHeight = 500; + if(process.platform === 'darwin') { + desiredHeight = 750; + } + const windowProperties: electron.BrowserWindowConstructorOptions = { center: true, show: false, icon: process.platform === 'win32' ? winIcon : pngIcon, frame: false, - width: 500, - height: 350, - minWidth: 500, - minHeight: 368, - maxWidth: 500, - maxHeight: 368, + width: 650, + height: desiredHeight, + minWidth: 650, + minHeight: desiredHeight, + maxWidth: 650, + maxHeight: desiredHeight, maximizable: false, webPreferences: { webviewTag: true, nodeIntegration: true, nodeIntegrationInWorker: true, spellcheck: true,