selective import
This commit is contained in:
@@ -2,7 +2,7 @@ module.exports = {
|
||||
init
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const { dialog } = require('electron')
|
||||
|
||||
const config = require('../config')
|
||||
const log = require('./log')
|
||||
@@ -44,7 +44,7 @@ function onResponse (err, res, data) {
|
||||
}
|
||||
}
|
||||
|
||||
electron.dialog.showMessageBox({
|
||||
dialog.showMessageBox({
|
||||
type: 'info',
|
||||
buttons: ['OK'],
|
||||
title: data.title,
|
||||
|
||||
@@ -6,7 +6,7 @@ module.exports = {
|
||||
openFiles
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const { dialog } = require('electron')
|
||||
|
||||
const log = require('./log')
|
||||
const windows = require('./windows')
|
||||
@@ -61,7 +61,7 @@ function openFiles () {
|
||||
properties: ['openFile']
|
||||
}
|
||||
setTitle(opts.title)
|
||||
const selectedPaths = electron.dialog.showOpenDialogSync(windows.main.win, opts)
|
||||
const selectedPaths = dialog.showOpenDialogSync(windows.main.win, opts)
|
||||
resetTitle()
|
||||
if (!Array.isArray(selectedPaths)) return
|
||||
windows.main.dispatch('onOpen', selectedPaths)
|
||||
@@ -79,7 +79,7 @@ function openTorrentFile () {
|
||||
properties: ['openFile', 'multiSelections']
|
||||
}
|
||||
setTitle(opts.title)
|
||||
const selectedPaths = electron.dialog.showOpenDialogSync(windows.main.win, opts)
|
||||
const selectedPaths = dialog.showOpenDialogSync(windows.main.win, opts)
|
||||
resetTitle()
|
||||
if (!Array.isArray(selectedPaths)) return
|
||||
selectedPaths.forEach(function (selectedPath) {
|
||||
@@ -114,7 +114,7 @@ function resetTitle () {
|
||||
*/
|
||||
function showOpenSeed (opts) {
|
||||
setTitle(opts.title)
|
||||
const selectedPaths = electron.dialog.showOpenDialogSync(windows.main.win, opts)
|
||||
const selectedPaths = dialog.showOpenDialogSync(windows.main.win, opts)
|
||||
resetTitle()
|
||||
if (!Array.isArray(selectedPaths)) return
|
||||
windows.main.dispatch('showCreateTorrent', selectedPaths)
|
||||
|
||||
@@ -25,8 +25,7 @@ function uninstall () {
|
||||
}
|
||||
|
||||
function installDarwin () {
|
||||
const electron = require('electron')
|
||||
const app = electron.app
|
||||
const { app } = require('electron')
|
||||
|
||||
// On Mac, only protocols that are listed in `Info.plist` can be set as the
|
||||
// default handler at runtime.
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
console.time('init')
|
||||
|
||||
const electron = require('electron')
|
||||
const app = electron.app
|
||||
const { app, ipcMain } = require('electron')
|
||||
|
||||
const parallel = require('run-parallel')
|
||||
|
||||
@@ -64,8 +63,6 @@ function init () {
|
||||
app.setPath('temp', path.join(config.CONFIG_PATH, 'Temp'))
|
||||
}
|
||||
|
||||
const ipcMain = electron.ipcMain
|
||||
|
||||
let isReady = false // app ready, windows can be created
|
||||
app.ipcReady = false // main window has finished loading and IPC is ready
|
||||
app.isQuitting = false
|
||||
|
||||
@@ -3,9 +3,7 @@ module.exports = {
|
||||
setModule
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
|
||||
const app = electron.app
|
||||
const { app, ipcMain } = require('electron')
|
||||
|
||||
const log = require('./log')
|
||||
const menu = require('./menu')
|
||||
@@ -23,14 +21,12 @@ function setModule (name, module) {
|
||||
}
|
||||
|
||||
function init () {
|
||||
const ipc = electron.ipcMain
|
||||
|
||||
ipc.once('ipcReady', function (e) {
|
||||
ipcMain.once('ipcReady', function (e) {
|
||||
app.ipcReady = true
|
||||
app.emit('ipcReady')
|
||||
})
|
||||
|
||||
ipc.once('ipcReadyWebTorrent', function (e) {
|
||||
ipcMain.once('ipcReadyWebTorrent', function (e) {
|
||||
app.ipcReadyWebTorrent = true
|
||||
log('sending %d queued messages from the main win to the webtorrent window',
|
||||
messageQueueMainToWebTorrent.length)
|
||||
@@ -44,11 +40,11 @@ function init () {
|
||||
* Dialog
|
||||
*/
|
||||
|
||||
ipc.on('openTorrentFile', () => {
|
||||
ipcMain.on('openTorrentFile', () => {
|
||||
const dialog = require('./dialog')
|
||||
dialog.openTorrentFile()
|
||||
})
|
||||
ipc.on('openFiles', () => {
|
||||
ipcMain.on('openFiles', () => {
|
||||
const dialog = require('./dialog')
|
||||
dialog.openFiles()
|
||||
})
|
||||
@@ -57,11 +53,11 @@ function init () {
|
||||
* Dock
|
||||
*/
|
||||
|
||||
ipc.on('setBadge', (e, ...args) => {
|
||||
ipcMain.on('setBadge', (e, ...args) => {
|
||||
const dock = require('./dock')
|
||||
dock.setBadge(...args)
|
||||
})
|
||||
ipc.on('downloadFinished', (e, ...args) => {
|
||||
ipcMain.on('downloadFinished', (e, ...args) => {
|
||||
const dock = require('./dock')
|
||||
dock.downloadFinished(...args)
|
||||
})
|
||||
@@ -70,7 +66,7 @@ function init () {
|
||||
* Player Events
|
||||
*/
|
||||
|
||||
ipc.on('onPlayerOpen', function () {
|
||||
ipcMain.on('onPlayerOpen', function () {
|
||||
const powerSaveBlocker = require('./power-save-blocker')
|
||||
const shortcuts = require('./shortcuts')
|
||||
const thumbar = require('./thumbar')
|
||||
@@ -81,14 +77,14 @@ function init () {
|
||||
thumbar.enable()
|
||||
})
|
||||
|
||||
ipc.on('onPlayerUpdate', function (e, ...args) {
|
||||
ipcMain.on('onPlayerUpdate', function (e, ...args) {
|
||||
const thumbar = require('./thumbar')
|
||||
|
||||
menu.onPlayerUpdate(...args)
|
||||
thumbar.onPlayerUpdate(...args)
|
||||
})
|
||||
|
||||
ipc.on('onPlayerClose', function () {
|
||||
ipcMain.on('onPlayerClose', function () {
|
||||
const powerSaveBlocker = require('./power-save-blocker')
|
||||
const shortcuts = require('./shortcuts')
|
||||
const thumbar = require('./thumbar')
|
||||
@@ -99,7 +95,7 @@ function init () {
|
||||
thumbar.disable()
|
||||
})
|
||||
|
||||
ipc.on('onPlayerPlay', function () {
|
||||
ipcMain.on('onPlayerPlay', function () {
|
||||
const powerSaveBlocker = require('./power-save-blocker')
|
||||
const thumbar = require('./thumbar')
|
||||
|
||||
@@ -107,7 +103,7 @@ function init () {
|
||||
thumbar.onPlayerPlay()
|
||||
})
|
||||
|
||||
ipc.on('onPlayerPause', function () {
|
||||
ipcMain.on('onPlayerPause', function () {
|
||||
const powerSaveBlocker = require('./power-save-blocker')
|
||||
const thumbar = require('./thumbar')
|
||||
|
||||
@@ -119,7 +115,7 @@ function init () {
|
||||
* Folder Watcher Events
|
||||
*/
|
||||
|
||||
ipc.on('startFolderWatcher', function () {
|
||||
ipcMain.on('startFolderWatcher', function () {
|
||||
if (!modules.folderWatcher) {
|
||||
log('IPC ERR: folderWatcher module is not defined.')
|
||||
return
|
||||
@@ -128,7 +124,7 @@ function init () {
|
||||
modules.folderWatcher.start()
|
||||
})
|
||||
|
||||
ipc.on('stopFolderWatcher', function () {
|
||||
ipcMain.on('stopFolderWatcher', function () {
|
||||
if (!modules.folderWatcher) {
|
||||
log('IPC ERR: folderWatcher module is not defined.')
|
||||
return
|
||||
@@ -141,15 +137,15 @@ function init () {
|
||||
* Shell
|
||||
*/
|
||||
|
||||
ipc.on('openItem', (e, ...args) => {
|
||||
ipcMain.on('openItem', (e, ...args) => {
|
||||
const shell = require('./shell')
|
||||
shell.openItem(...args)
|
||||
})
|
||||
ipc.on('showItemInFolder', (e, ...args) => {
|
||||
ipcMain.on('showItemInFolder', (e, ...args) => {
|
||||
const shell = require('./shell')
|
||||
shell.showItemInFolder(...args)
|
||||
})
|
||||
ipc.on('moveItemToTrash', (e, ...args) => {
|
||||
ipcMain.on('moveItemToTrash', (e, ...args) => {
|
||||
const shell = require('./shell')
|
||||
shell.moveItemToTrash(...args)
|
||||
})
|
||||
@@ -158,7 +154,7 @@ function init () {
|
||||
* File handlers
|
||||
*/
|
||||
|
||||
ipc.on('setDefaultFileHandler', (e, flag) => {
|
||||
ipcMain.on('setDefaultFileHandler', (e, flag) => {
|
||||
const handlers = require('./handlers')
|
||||
|
||||
if (flag) handlers.install()
|
||||
@@ -169,7 +165,7 @@ function init () {
|
||||
* Auto start on login
|
||||
*/
|
||||
|
||||
ipc.on('setStartup', (e, flag) => {
|
||||
ipcMain.on('setStartup', (e, flag) => {
|
||||
const startup = require('./startup')
|
||||
|
||||
if (flag) startup.install()
|
||||
@@ -182,19 +178,19 @@ function init () {
|
||||
|
||||
const main = windows.main
|
||||
|
||||
ipc.on('setAspectRatio', (e, ...args) => main.setAspectRatio(...args))
|
||||
ipc.on('setBounds', (e, ...args) => main.setBounds(...args))
|
||||
ipc.on('setProgress', (e, ...args) => main.setProgress(...args))
|
||||
ipc.on('setTitle', (e, ...args) => main.setTitle(...args))
|
||||
ipc.on('show', () => main.show())
|
||||
ipc.on('toggleFullScreen', (e, ...args) => main.toggleFullScreen(...args))
|
||||
ipc.on('setAllowNav', (e, ...args) => menu.setAllowNav(...args))
|
||||
ipcMain.on('setAspectRatio', (e, ...args) => main.setAspectRatio(...args))
|
||||
ipcMain.on('setBounds', (e, ...args) => main.setBounds(...args))
|
||||
ipcMain.on('setProgress', (e, ...args) => main.setProgress(...args))
|
||||
ipcMain.on('setTitle', (e, ...args) => main.setTitle(...args))
|
||||
ipcMain.on('show', () => main.show())
|
||||
ipcMain.on('toggleFullScreen', (e, ...args) => main.toggleFullScreen(...args))
|
||||
ipcMain.on('setAllowNav', (e, ...args) => menu.setAllowNav(...args))
|
||||
|
||||
/**
|
||||
* External Media Player
|
||||
*/
|
||||
|
||||
ipc.on('checkForExternalPlayer', function (e, path) {
|
||||
ipcMain.on('checkForExternalPlayer', function (e, path) {
|
||||
const externalPlayer = require('./external-player')
|
||||
|
||||
externalPlayer.checkInstall(path, function (err) {
|
||||
@@ -202,7 +198,7 @@ function init () {
|
||||
})
|
||||
})
|
||||
|
||||
ipc.on('openExternalPlayer', (e, ...args) => {
|
||||
ipcMain.on('openExternalPlayer', (e, ...args) => {
|
||||
const externalPlayer = require('./external-player')
|
||||
const thumbar = require('./thumbar')
|
||||
|
||||
@@ -211,7 +207,7 @@ function init () {
|
||||
externalPlayer.spawn(...args)
|
||||
})
|
||||
|
||||
ipc.on('quitExternalPlayer', () => {
|
||||
ipcMain.on('quitExternalPlayer', () => {
|
||||
const externalPlayer = require('./external-player')
|
||||
externalPlayer.kill()
|
||||
})
|
||||
@@ -220,8 +216,8 @@ function init () {
|
||||
* Message passing
|
||||
*/
|
||||
|
||||
const oldEmit = ipc.emit
|
||||
ipc.emit = function (name, e, ...args) {
|
||||
const oldEmit = ipcMain.emit
|
||||
ipcMain.emit = function (name, e, ...args) {
|
||||
// Relay messages between the main window and the WebTorrent hidden window
|
||||
if (name.startsWith('wt-') && !app.isQuitting) {
|
||||
if (e.sender.browserWindowOptions.title === 'webtorrent-hidden-window') {
|
||||
@@ -244,6 +240,6 @@ function init () {
|
||||
}
|
||||
|
||||
// Emit all other events normally
|
||||
oldEmit.call(ipc, name, e, ...args)
|
||||
oldEmit.call(ipcMain, name, e, ...args)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,11 +8,9 @@ module.exports.error = error
|
||||
* where they can be viewed in Developer Tools.
|
||||
*/
|
||||
|
||||
const electron = require('electron')
|
||||
const { app } = require('electron')
|
||||
const windows = require('./windows')
|
||||
|
||||
const app = electron.app
|
||||
|
||||
function log (...args) {
|
||||
if (app.ipcReady) {
|
||||
windows.main.send('log', ...args)
|
||||
|
||||
@@ -8,9 +8,7 @@ module.exports = {
|
||||
onToggleFullScreen
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
|
||||
const app = electron.app
|
||||
const { app, Menu } = require('electron')
|
||||
|
||||
const config = require('../config')
|
||||
const windows = require('./windows')
|
||||
@@ -18,8 +16,8 @@ const windows = require('./windows')
|
||||
let menu = null
|
||||
|
||||
function init () {
|
||||
menu = electron.Menu.buildFromTemplate(getMenuTemplate())
|
||||
electron.Menu.setApplicationMenu(menu)
|
||||
menu = Menu.buildFromTemplate(getMenuTemplate())
|
||||
Menu.setApplicationMenu(menu)
|
||||
}
|
||||
|
||||
function togglePlaybackControls (flag) {
|
||||
|
||||
@@ -3,7 +3,7 @@ module.exports = {
|
||||
disable
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const { powerSaveBlocker } = require('electron')
|
||||
const log = require('./log')
|
||||
|
||||
let blockId = 0
|
||||
@@ -13,11 +13,11 @@ let blockId = 0
|
||||
* display.
|
||||
*/
|
||||
function enable () {
|
||||
if (electron.powerSaveBlocker.isStarted(blockId)) {
|
||||
if (powerSaveBlocker.isStarted(blockId)) {
|
||||
// If a power saver block already exists, do nothing.
|
||||
return
|
||||
}
|
||||
blockId = electron.powerSaveBlocker.start('prevent-display-sleep')
|
||||
blockId = powerSaveBlocker.start('prevent-display-sleep')
|
||||
log(`powerSaveBlocker.enable: ${blockId}`)
|
||||
}
|
||||
|
||||
@@ -25,10 +25,10 @@ function enable () {
|
||||
* Stop blocking the system from entering low-power mode.
|
||||
*/
|
||||
function disable () {
|
||||
if (!electron.powerSaveBlocker.isStarted(blockId)) {
|
||||
if (!powerSaveBlocker.isStarted(blockId)) {
|
||||
// If a power saver block does not exist, do nothing.
|
||||
return
|
||||
}
|
||||
electron.powerSaveBlocker.stop(blockId)
|
||||
powerSaveBlocker.stop(blockId)
|
||||
log(`powerSaveBlocker.disable: ${blockId}`)
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ module.exports = {
|
||||
moveItemToTrash
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const { shell } = require('electron')
|
||||
const log = require('./log')
|
||||
|
||||
/**
|
||||
@@ -13,7 +13,7 @@ const log = require('./log')
|
||||
*/
|
||||
function openExternal (url) {
|
||||
log(`openExternal: ${url}`)
|
||||
electron.shell.openExternal(url)
|
||||
shell.openExternal(url)
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -21,7 +21,7 @@ function openExternal (url) {
|
||||
*/
|
||||
function openItem (path) {
|
||||
log(`openItem: ${path}`)
|
||||
electron.shell.openItem(path)
|
||||
shell.openItem(path)
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -29,7 +29,7 @@ function openItem (path) {
|
||||
*/
|
||||
function showItemInFolder (path) {
|
||||
log(`showItemInFolder: ${path}`)
|
||||
electron.shell.showItemInFolder(path)
|
||||
shell.showItemInFolder(path)
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -37,5 +37,5 @@ function showItemInFolder (path) {
|
||||
*/
|
||||
function moveItemToTrash (path) {
|
||||
log(`moveItemToTrash: ${path}`)
|
||||
electron.shell.moveItemToTrash(path)
|
||||
shell.moveItemToTrash(path)
|
||||
}
|
||||
|
||||
@@ -3,20 +3,20 @@ module.exports = {
|
||||
enable
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const { globalShortcut } = require('electron')
|
||||
const windows = require('./windows')
|
||||
|
||||
function enable () {
|
||||
// Register play/pause media key, available on some keyboards.
|
||||
electron.globalShortcut.register(
|
||||
globalShortcut.register(
|
||||
'MediaPlayPause',
|
||||
() => windows.main.dispatch('playPause')
|
||||
)
|
||||
electron.globalShortcut.register(
|
||||
globalShortcut.register(
|
||||
'MediaNextTrack',
|
||||
() => windows.main.dispatch('nextTrack')
|
||||
)
|
||||
electron.globalShortcut.register(
|
||||
globalShortcut.register(
|
||||
'MediaPreviousTrack',
|
||||
() => windows.main.dispatch('previousTrack')
|
||||
)
|
||||
@@ -24,7 +24,7 @@ function enable () {
|
||||
|
||||
function disable () {
|
||||
// Return the media key to the OS, so other apps can use it.
|
||||
electron.globalShortcut.unregister('MediaPlayPause')
|
||||
electron.globalShortcut.unregister('MediaNextTrack')
|
||||
electron.globalShortcut.unregister('MediaPreviousTrack')
|
||||
globalShortcut.unregister('MediaPlayPause')
|
||||
globalShortcut.unregister('MediaNextTrack')
|
||||
globalShortcut.unregister('MediaPreviousTrack')
|
||||
}
|
||||
|
||||
@@ -3,13 +3,11 @@ module.exports = {
|
||||
}
|
||||
|
||||
const cp = require('child_process')
|
||||
const electron = require('electron')
|
||||
const { app } = require('electron')
|
||||
const fs = require('fs')
|
||||
const os = require('os')
|
||||
const path = require('path')
|
||||
|
||||
const app = electron.app
|
||||
|
||||
const handlers = require('./handlers')
|
||||
|
||||
const EXE_NAME = path.basename(process.execPath)
|
||||
|
||||
@@ -4,9 +4,7 @@ module.exports = {
|
||||
setWindowFocus
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
|
||||
const app = electron.app
|
||||
const { app, Tray, Menu } = require('electron')
|
||||
|
||||
const config = require('../config')
|
||||
const windows = require('./windows')
|
||||
@@ -67,7 +65,7 @@ function checkLinuxTraySupport (cb) {
|
||||
}
|
||||
|
||||
function createTray () {
|
||||
tray = new electron.Tray(getIconPath())
|
||||
tray = new Tray(getIconPath())
|
||||
|
||||
// On Windows, left click opens the app, right click opens the context menu.
|
||||
// On Linux, any click (left or right) opens the context menu.
|
||||
@@ -78,7 +76,7 @@ function createTray () {
|
||||
}
|
||||
|
||||
function updateTrayMenu () {
|
||||
const contextMenu = electron.Menu.buildFromTemplate(getMenuTemplate())
|
||||
const contextMenu = Menu.buildFromTemplate(getMenuTemplate())
|
||||
tray.setContextMenu(contextMenu)
|
||||
}
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ module.exports = {
|
||||
init
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const { autoUpdater } = require('electron')
|
||||
const get = require('simple-get')
|
||||
|
||||
const config = require('../config')
|
||||
@@ -47,31 +47,31 @@ function onResponse (err, res, data) {
|
||||
}
|
||||
|
||||
function initDarwinWin32 () {
|
||||
electron.autoUpdater.on(
|
||||
autoUpdater.on(
|
||||
'error',
|
||||
(err) => log.error(`Update error: ${err.message}`)
|
||||
)
|
||||
|
||||
electron.autoUpdater.on(
|
||||
autoUpdater.on(
|
||||
'checking-for-update',
|
||||
() => log('Checking for update')
|
||||
)
|
||||
|
||||
electron.autoUpdater.on(
|
||||
autoUpdater.on(
|
||||
'update-available',
|
||||
() => log('Update available')
|
||||
)
|
||||
|
||||
electron.autoUpdater.on(
|
||||
autoUpdater.on(
|
||||
'update-not-available',
|
||||
() => log('No update available')
|
||||
)
|
||||
|
||||
electron.autoUpdater.on(
|
||||
autoUpdater.on(
|
||||
'update-downloaded',
|
||||
(e, notes, name, date, url) => log(`Update downloaded: ${name}: ${url}`)
|
||||
)
|
||||
|
||||
electron.autoUpdater.setFeedURL({ url: AUTO_UPDATE_URL })
|
||||
electron.autoUpdater.checkForUpdates()
|
||||
autoUpdater.setFeedURL({ url: AUTO_UPDATE_URL })
|
||||
autoUpdater.checkForUpdates()
|
||||
}
|
||||
|
||||
@@ -2,9 +2,7 @@ module.exports = {
|
||||
init
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
|
||||
const app = electron.app
|
||||
const { app } = require('electron')
|
||||
|
||||
/**
|
||||
* Add a user task menu to the app icon on right-click. (Windows)
|
||||
|
||||
@@ -4,14 +4,14 @@ const about = module.exports = {
|
||||
}
|
||||
|
||||
const config = require('../../config')
|
||||
const electron = require('electron')
|
||||
const { BrowserWindow } = require('electron')
|
||||
|
||||
function init () {
|
||||
if (about.win) {
|
||||
return about.win.show()
|
||||
}
|
||||
|
||||
const win = about.win = new electron.BrowserWindow({
|
||||
const win = about.win = new BrowserWindow({
|
||||
backgroundColor: '#ECECEC',
|
||||
center: true,
|
||||
fullscreen: false,
|
||||
|
||||
@@ -14,11 +14,9 @@ const main = module.exports = {
|
||||
win: null
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const { app, BrowserWindow, screen } = require('electron')
|
||||
const debounce = require('debounce')
|
||||
|
||||
const app = electron.app
|
||||
|
||||
const config = require('../../config')
|
||||
const log = require('../log')
|
||||
const menu = require('../menu')
|
||||
@@ -30,7 +28,7 @@ function init (state, options) {
|
||||
|
||||
const initialBounds = Object.assign(config.WINDOW_INITIAL_BOUNDS, state.saved.bounds)
|
||||
|
||||
const win = main.win = new electron.BrowserWindow({
|
||||
const win = main.win = new BrowserWindow({
|
||||
backgroundColor: '#282828',
|
||||
darkTheme: true, // Forces dark theme (GTK+3)
|
||||
height: initialBounds.height,
|
||||
@@ -160,7 +158,7 @@ function setBounds (bounds, maximize) {
|
||||
log(`setBounds: setting bounds to ${JSON.stringify(bounds)}`)
|
||||
if (bounds.x === null && bounds.y === null) {
|
||||
// X and Y not specified? By default, center on current screen
|
||||
const scr = electron.screen.getDisplayMatching(main.win.getBounds())
|
||||
const scr = screen.getDisplayMatching(main.win.getBounds())
|
||||
bounds.x = Math.round(scr.bounds.x + (scr.bounds.width / 2) - (bounds.width / 2))
|
||||
bounds.y = Math.round(scr.bounds.y + (scr.bounds.height / 2) - (bounds.height / 2))
|
||||
log(`setBounds: centered to ${JSON.stringify(bounds)}`)
|
||||
|
||||
@@ -6,12 +6,12 @@ const webtorrent = module.exports = {
|
||||
win: null
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const { app, BrowserWindow } = require('electron')
|
||||
|
||||
const config = require('../../config')
|
||||
|
||||
function init () {
|
||||
const win = webtorrent.win = new electron.BrowserWindow({
|
||||
const win = webtorrent.win = new BrowserWindow({
|
||||
backgroundColor: '#1E1E1E',
|
||||
center: true,
|
||||
fullscreen: false,
|
||||
@@ -35,7 +35,7 @@ function init () {
|
||||
|
||||
// Prevent killing the WebTorrent process
|
||||
win.on('close', function (e) {
|
||||
if (electron.app.isQuitting) {
|
||||
if (app.isQuitting) {
|
||||
return
|
||||
}
|
||||
e.preventDefault()
|
||||
|
||||
Reference in New Issue
Block a user