parent
4dd17832ef
commit
1155f5512d
3 changed files with 8 additions and 8 deletions
|
@ -10,12 +10,12 @@ export default window => {
|
||||||
* A maximized window can't be properly
|
* A maximized window can't be properly
|
||||||
* restored when minimized to the taskbar
|
* restored when minimized to the taskbar
|
||||||
* (it will be restored/showed as unmaximized).
|
* (it will be restored/showed as unmaximized).
|
||||||
*
|
*
|
||||||
* window.isMaximized() will also return
|
* window.isMaximized() will also return
|
||||||
* false when minimizing a maximized window.
|
* false when minimizing a maximized window.
|
||||||
*
|
*
|
||||||
* The safest way to keep track of the
|
* The safest way to keep track of the
|
||||||
* maximized state using maximize and
|
* maximized state using maximize and
|
||||||
* unmaximize events.
|
* unmaximize events.
|
||||||
*/
|
*/
|
||||||
let isWindowMaximized = false;
|
let isWindowMaximized = false;
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
import '@babel/polyfill';
|
import '@babel/polyfill';
|
||||||
import SemVer from 'semver';
|
import SemVer from 'semver';
|
||||||
import https from 'https';
|
import https from 'https';
|
||||||
import { app, dialog, ipcMain, session, shell, ipcRenderer } from 'electron';
|
import { app, dialog, ipcMain, session, shell } from 'electron';
|
||||||
import { autoUpdater } from 'electron-updater';
|
import { autoUpdater } from 'electron-updater';
|
||||||
import { Lbry, LbryFirst } from 'lbry-redux';
|
import { Lbry } from 'lbry-redux';
|
||||||
import LbryFirstInstance from './LbryFirstInstance';
|
import LbryFirstInstance from './LbryFirstInstance';
|
||||||
import Daemon from './Daemon';
|
import Daemon from './Daemon';
|
||||||
import isDev from 'electron-is-dev';
|
import isDev from 'electron-is-dev';
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
"build": "cross-env NODE_ENV=production yarn compile:electron && electron-builder build",
|
"build": "cross-env NODE_ENV=production yarn compile:electron && electron-builder build",
|
||||||
"build:dir": "yarn build -- --dir -c.compression=store -c.mac.identity=null",
|
"build:dir": "yarn build -- --dir -c.compression=store -c.mac.identity=null",
|
||||||
"crossenv": "./node_modules/cross-env/dist/bin/cross-env",
|
"crossenv": "./node_modules/cross-env/dist/bin/cross-env",
|
||||||
"lint": "eslint ui/**/*.{js,jsx} && eslint web/**/*.{js,jsx} && eslint electron/**/*.js && flow",
|
"lint": "eslint 'ui/**/*.{js,jsx}' && eslint 'web/**/*.{js,jsx}' && eslint 'electron/**/*.js' && flow",
|
||||||
"format": "prettier 'src/**/*.{js,jsx,scss,json}' --write",
|
"format": "prettier 'src/**/*.{js,jsx,scss,json}' --write",
|
||||||
"flow-defs": "flow-typed install",
|
"flow-defs": "flow-typed install",
|
||||||
"precommit": "lint-staged",
|
"precommit": "lint-staged",
|
||||||
|
|
Loading…
Reference in a new issue