Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
8ea3f5b05a | |||
dca81dd4f2 | |||
18c3219e9b | |||
ab38ff51dc | |||
5f0f601a4c | |||
94879e4258 | |||
fd6fe7675a | |||
42e636a3d1 | |||
7672a5fbe4 | |||
de6d4b7e7f | |||
16ecfd112f |
@ -1,10 +1,4 @@
|
|||||||
import {
|
import {DidFailLoadEvent, ipcRenderer, PageFaviconUpdatedEvent, UpdateTargetUrlEvent} from "electron";
|
||||||
DidFailLoadEvent,
|
|
||||||
ipcRenderer,
|
|
||||||
PageFaviconUpdatedEvent,
|
|
||||||
UpdateTargetUrlEvent,
|
|
||||||
WebviewTag,
|
|
||||||
} from "electron";
|
|
||||||
import Service from "../../src/Service";
|
import Service from "../../src/Service";
|
||||||
import {IconProperties, IconSet, SpecialPages} from "../../src/Meta";
|
import {IconProperties, IconSet, SpecialPages} from "../../src/Meta";
|
||||||
import Config from "../../src/Config";
|
import Config from "../../src/Config";
|
||||||
@ -449,6 +443,7 @@ function loadService(serviceId: number, service: FrontService) {
|
|||||||
view.setAttribute('enableRemoteModule', 'false');
|
view.setAttribute('enableRemoteModule', 'false');
|
||||||
view.setAttribute('partition', 'persist:service_' + service.partition);
|
view.setAttribute('partition', 'persist:service_' + service.partition);
|
||||||
view.setAttribute('autosize', 'true');
|
view.setAttribute('autosize', 'true');
|
||||||
|
view.setAttribute('allowpopups', 'true');
|
||||||
if (specialPages) view.setAttribute('src', specialPages.empty);
|
if (specialPages) view.setAttribute('src', specialPages.empty);
|
||||||
|
|
||||||
// Error handling
|
// Error handling
|
||||||
@ -680,7 +675,7 @@ ipcRenderer.on('fullscreenchange', (e, fullscreen: boolean) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
type FrontService = Service & {
|
type FrontService = Service & {
|
||||||
view?: WebviewTag;
|
view?: Electron.WebviewTag;
|
||||||
viewReady?: boolean;
|
viewReady?: boolean;
|
||||||
li?: NavigationElement;
|
li?: NavigationElement;
|
||||||
};
|
};
|
||||||
|
30
package.json
30
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tabs",
|
"name": "tabs",
|
||||||
"version": "1.2.13",
|
"version": "1.3.1",
|
||||||
"description": "Persistent and separate browser tabs in one window.",
|
"description": "Persistent and separate browser tabs in one window.",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Alice Gaudon",
|
"name": "Alice Gaudon",
|
||||||
@ -30,23 +30,23 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.9.6",
|
"@babel/core": "^7.9.6",
|
||||||
"@babel/preset-env": "^7.9.6",
|
"@babel/preset-env": "^7.9.6",
|
||||||
"@fortawesome/fontawesome-free": "^5.13.0",
|
"@fortawesome/fontawesome-free": "^6.1.0",
|
||||||
"@types/node": "^14.17.1",
|
"@types/node": "^14.6.2",
|
||||||
"@typescript-eslint/eslint-plugin": "^4.3.0",
|
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
||||||
"@typescript-eslint/parser": "^4.3.0",
|
"@typescript-eslint/parser": "^5.15.0",
|
||||||
"babel-loader": "^8.1.0",
|
"babel-loader": "^8.1.0",
|
||||||
"concurrently": "^6.0.0",
|
"concurrently": "^7.0.0",
|
||||||
"copy-webpack-plugin": "^9.0.0",
|
"copy-webpack-plugin": "^10.2.4",
|
||||||
"css-loader": "^5.0.0",
|
"css-loader": "^6.3.0",
|
||||||
"electron": "^13.0.0",
|
"electron": "^17.1.2",
|
||||||
"electron-builder": "^22.11.5",
|
"electron-builder": "^22.11.5",
|
||||||
"eslint": "^7.10.0",
|
"eslint": "^8.11.0",
|
||||||
"file-loader": "^6.0.0",
|
"image-minimizer-webpack-plugin": "^3.2.3",
|
||||||
"image-minimizer-webpack-plugin": "^2.2.0",
|
"imagemin": "^8.0.1",
|
||||||
"imagemin-gifsicle": "^7.0.0",
|
"imagemin-gifsicle": "^7.0.0",
|
||||||
"imagemin-mozjpeg": "^9.0.0",
|
"imagemin-mozjpeg": "^10.0.0",
|
||||||
"imagemin-pngquant": "^9.0.2",
|
"imagemin-pngquant": "^9.0.2",
|
||||||
"imagemin-svgo": "^9.0.0",
|
"imagemin-svgo": "^10.0.1",
|
||||||
"mini-css-extract-plugin": "^2.1.0",
|
"mini-css-extract-plugin": "^2.1.0",
|
||||||
"sass": "^1.32.12",
|
"sass": "^1.32.12",
|
||||||
"sass-loader": "^12.1.0",
|
"sass-loader": "^12.1.0",
|
||||||
@ -89,6 +89,6 @@
|
|||||||
"icon": "frontend/images/logo.png",
|
"icon": "frontend/images/logo.png",
|
||||||
"category": "public.app-category.utilities"
|
"category": "public.app-category.utilities"
|
||||||
},
|
},
|
||||||
"electronVersion": "13.1.6"
|
"electronVersion": "15.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import {app, Menu, shell, Tray} from "electron";
|
import {app, dialog, Menu, shell, Tray} from "electron";
|
||||||
import Meta from "./Meta";
|
import Meta from "./Meta";
|
||||||
import Config from "./Config";
|
import Config from "./Config";
|
||||||
import Updater from "./Updater";
|
import Updater from "./Updater";
|
||||||
@ -52,16 +52,36 @@ export default class Application {
|
|||||||
return this.devMode;
|
return this.devMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async openExternalLink(url: string): Promise<void> {
|
||||||
|
if (url.startsWith('https://')) {
|
||||||
|
console.log('Opening link', url);
|
||||||
|
await shell.openExternal(url);
|
||||||
|
} else {
|
||||||
|
const {response} = await dialog.showMessageBox({
|
||||||
|
message: 'Are you sure you want to open this link?\n' + url,
|
||||||
|
type: 'question',
|
||||||
|
buttons: ['Cancel', 'Open link'],
|
||||||
|
});
|
||||||
|
|
||||||
|
if (response === 1) {
|
||||||
|
console.log('Opening link', url);
|
||||||
|
await shell.openExternal(url);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private setupElectronTweaks() {
|
private setupElectronTweaks() {
|
||||||
// Open external links in default OS browser
|
// Open external links in default OS browser
|
||||||
app.on('web-contents-created', (e, contents) => {
|
app.on('web-contents-created', (e, contents) => {
|
||||||
if (contents.getType() === 'webview') {
|
if (contents.getType() === 'webview') {
|
||||||
console.log('Setting external links to open in default OS browser');
|
console.log('Setting external links to open in default OS browser');
|
||||||
contents.on('new-window', (e, url) => {
|
contents.setWindowOpenHandler(details => {
|
||||||
e.preventDefault();
|
if (details.url.startsWith(details.referrer.url)) return {action: 'allow'};
|
||||||
if (url.startsWith('https://')) {
|
|
||||||
shell.openExternal(url).catch(console.error);
|
const url = details.url;
|
||||||
}
|
this.openExternalLink(url)
|
||||||
|
.catch(console.error);
|
||||||
|
return {action: 'deny'};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import path from "path";
|
import path from "path";
|
||||||
import {clipboard, ContextMenuParams, dialog, ipcMain, Menu, MenuItem, session, shell, webContents,} from "electron";
|
import {clipboard, ContextMenuParams, dialog, ipcMain, Menu, MenuItem, session, webContents} from "electron";
|
||||||
import ServiceSettingsWindow from "./ServiceSettingsWindow";
|
import ServiceSettingsWindow from "./ServiceSettingsWindow";
|
||||||
import SettingsWindow from "./SettingsWindow";
|
import SettingsWindow from "./SettingsWindow";
|
||||||
import Application from "../Application";
|
import Application from "../Application";
|
||||||
@ -339,10 +339,8 @@ export default class MainWindow extends Window {
|
|||||||
menu.append(new MenuItem({
|
menu.append(new MenuItem({
|
||||||
label: 'Open URL in default browser',
|
label: 'Open URL in default browser',
|
||||||
click: () => {
|
click: () => {
|
||||||
if (props.linkURL.startsWith('https://')) {
|
this.application.openExternalLink(props.linkURL)
|
||||||
shell.openExternal(props.linkURL)
|
|
||||||
.catch(console.error);
|
.catch(console.error);
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
@ -46,14 +46,17 @@ const config = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.(woff2?|eot|ttf|otf)$/i,
|
test: /\.(woff2?|eot|ttf|otf)$/i,
|
||||||
use: 'file-loader?name=../fonts/[name].[ext]',
|
type: 'asset/resource',
|
||||||
|
generator: {
|
||||||
|
filename: '../fonts/[name][ext]',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.(png|jpe?g|gif|svg)$/i,
|
test: /\.(png|jpe?g|gif|svg)$/i,
|
||||||
use: [
|
type: 'asset/resource',
|
||||||
'file-loader?name=../images/[name].[ext]',
|
generator: {
|
||||||
],
|
filename: '../images/[name][ext]',
|
||||||
type: 'asset',
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.ts$/i,
|
test: /\.ts$/i,
|
||||||
@ -63,13 +66,14 @@ const config = {
|
|||||||
configFile: 'tsconfig.frontend.json',
|
configFile: 'tsconfig.frontend.json',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
exclude: '/node_modules/'
|
exclude: '/node_modules/',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /\.html$/i,
|
test: /\.html$/i,
|
||||||
use: [
|
type: 'asset/resource',
|
||||||
'file-loader?name=../[name].[ext]',
|
generator: {
|
||||||
]
|
filename: '../[name][ext]',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -83,7 +87,9 @@ const config = {
|
|||||||
]
|
]
|
||||||
}),
|
}),
|
||||||
new ImageMinimizerPlugin({
|
new ImageMinimizerPlugin({
|
||||||
minimizerOptions: {
|
minimizer: {
|
||||||
|
implementation: ImageMinimizerPlugin.imageminMinify,
|
||||||
|
options: {
|
||||||
// Lossless optimization with custom option
|
// Lossless optimization with custom option
|
||||||
// Feel free to experiment with options for better result for you
|
// Feel free to experiment with options for better result for you
|
||||||
plugins: [
|
plugins: [
|
||||||
@ -107,9 +113,28 @@ const config = {
|
|||||||
},
|
},
|
||||||
]),
|
]),
|
||||||
},
|
},
|
||||||
|
// todo: still not fixed
|
||||||
|
// {
|
||||||
|
// plugins: {
|
||||||
|
// name: 'preset-default',
|
||||||
|
// params: {
|
||||||
|
// overrides: {
|
||||||
|
// removeViewBox: {
|
||||||
|
// active: false,
|
||||||
|
// },
|
||||||
|
// addAttributesToSVGElement: {
|
||||||
|
// params: {
|
||||||
|
// attributes: [{xmlns: "http://www.w3.org/2000/svg"}],
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
},
|
||||||
}),
|
}),
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user