mirror of
https://github.com/rhysd/Mstdn.git
synced 2025-04-05 22:57:36 +02:00
open external page with external browser again (fix #14)
I confirmed the bug was fixed with Windows 8.1
This commit is contained in:
parent
84b740839b
commit
8f60edd353
@ -4,7 +4,6 @@ import {app} from 'electron';
|
|||||||
export const IS_DEBUG = process.env.NODE_ENV === 'development';
|
export const IS_DEBUG = process.env.NODE_ENV === 'development';
|
||||||
export const IS_DARWIN = process.platform === 'darwin';
|
export const IS_DARWIN = process.platform === 'darwin';
|
||||||
export const IS_WINDOWS = process.platform === 'win32';
|
export const IS_WINDOWS = process.platform === 'win32';
|
||||||
export const IS_LINUX = process.platform === 'linux';
|
|
||||||
export const APP_ICON = path.join(__dirname, '..', 'resources', 'icon', 'icon.png');
|
export const APP_ICON = path.join(__dirname, '..', 'resources', 'icon', 'icon.png');
|
||||||
export const PRELOAD_JS = path.join(__dirname, '..', 'renderer', 'preload.js');
|
export const PRELOAD_JS = path.join(__dirname, '..', 'renderer', 'preload.js');
|
||||||
export const DATA_DIR = app.getPath('userData');
|
export const DATA_DIR = app.getPath('userData');
|
||||||
|
@ -5,9 +5,7 @@ import * as menubar from 'menubar';
|
|||||||
import {Config, Account, hostUrl} from './config';
|
import {Config, Account, hostUrl} from './config';
|
||||||
import {partitionForAccount} from './account_switcher';
|
import {partitionForAccount} from './account_switcher';
|
||||||
import log from './log';
|
import log from './log';
|
||||||
import {IS_DEBUG, IS_DARWIN, IS_WINDOWS, IS_LINUX, APP_ICON, PRELOAD_JS, USER_CSS, IOS_SAFARI_USERAGENT, trayIcon} from './common';
|
import {IS_DEBUG, IS_DARWIN, IS_WINDOWS, APP_ICON, PRELOAD_JS, USER_CSS, IOS_SAFARI_USERAGENT, trayIcon} from './common';
|
||||||
|
|
||||||
const ELECTRON_ISSUE_9230 = IS_WINDOWS || IS_LINUX;
|
|
||||||
|
|
||||||
function shouldOpenInternal(host: string, url: string): boolean {
|
function shouldOpenInternal(host: string, url: string): boolean {
|
||||||
if (host.startsWith('https://pawoo.net') && url.startsWith('https://accounts.pixiv.net/login?')) {
|
if (host.startsWith('https://pawoo.net') && url.startsWith('https://accounts.pixiv.net/login?')) {
|
||||||
@ -58,12 +56,6 @@ export default class Window {
|
|||||||
log.debug('Opened URL with external browser (will-navigate)', url);
|
log.debug('Opened URL with external browser (will-navigate)', url);
|
||||||
});
|
});
|
||||||
browser.webContents.on('new-window', (e, url) => {
|
browser.webContents.on('new-window', (e, url) => {
|
||||||
if (ELECTRON_ISSUE_9230) {
|
|
||||||
// XXX:
|
|
||||||
// On Windows or Linux, rel="noopener" lets app crash on preventing the event.
|
|
||||||
// Issue: https://github.com/electron/electron/issues/9230
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
shell.openExternal(url);
|
shell.openExternal(url);
|
||||||
log.debug('Opened URL with external browser (new-window)', url);
|
log.debug('Opened URL with external browser (new-window)', url);
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
"typescript": "^2.2.2"
|
"typescript": "^2.2.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"electron": "^1.6.5",
|
"electron": "^1.6.8-beta",
|
||||||
"electron-window-state": "^4.1.1",
|
"electron-window-state": "^4.1.1",
|
||||||
"loglevel": "^1.4.1",
|
"loglevel": "^1.4.1",
|
||||||
"menubar": "github:rhysd/menubar#mstdn",
|
"menubar": "github:rhysd/menubar#mstdn",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user