Skip to content

Commit fec5ec6

Browse files
committed
v10.2.0
1 parent db1a7a8 commit fec5ec6

File tree

8 files changed

+319
-373
lines changed

8 files changed

+319
-373
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ install:
2323
- cmd: echo 🔧 Preparing Build Environment (Git)
2424
- cmd: git config --global core.autocrlf input
2525
- cmd: echo 🔧 Preparing Build Environment (Node.js)
26-
- ps: Update-NodeJsInstallation 13.1.0
26+
- ps: Update-NodeJsInstallation 13.2.0
2727
- cmd: npm --global update npm
2828
- cmd: npm --global install yarn
2929

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ addons:
4747
before_install:
4848
- echo "🔧 Preparing Build Environment (Node.js)"
4949
- curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | NVM_DIR="${HOME}"/.nvm sh
50-
- source "${HOME}"/.nvm/nvm.sh && nvm install 13.1.0 && nvm use 13.1.0
50+
- source "${HOME}"/.nvm/nvm.sh && nvm install 13.2.0 && nvm use 13.2.0
5151
- npm --global update npm
5252
- npm --global install yarn
5353

RELEASENOTES.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
{
2+
"10.2.0": {
3+
"💎 improvements": [
4+
"various stability and performance improvements"
5+
],
6+
"🚨 fixes": [
7+
"fixes startup issue (Linux, Windows)"
8+
],
9+
"👷 internals": [
10+
"upgrades `electron` to `v7.1.2`",
11+
"upgrades local `node_modules`",
12+
"upgrades third-party `node_modules`"
13+
]
14+
},
215
"10.0.1": {
316
"🍾 features": [
417
"adds native blurred translucent `NSVisualEffectView` menu sidebar (macOS)"

app/scripts/main-process/index.js

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const appProductName = global.manifest.productName
109109

110110

111111
/**
112-
* Force Singular Instance
112+
* Force single Instance
113113
*/
114114
if (!app.requestSingleInstanceLock()) {
115115
logger.warn('Additional application instance detected:', app.getPath('exe'))
@@ -152,20 +152,16 @@ app.on('before-quit-for-update', () => {
152152
})
153153

154154
/**
155-
* @listens Electron.systemPreferences:appearance-changed
155+
* @listens Electron.App:ready
156156
*/
157-
systemPreferences.on('appearance-changed', (newAppearance) => {
158-
logger.debug('systemPreferences#appearance-changed', 'newAppearance:', newAppearance)
157+
app.once('ready', () => {
158+
logger.debug('app#ready')
159159
})
160160

161161

162162
/**
163-
* @listens Electron.App:ready
163+
* @listens Electron.systemPreferences:appearance-changed
164164
*/
165-
app.once('ready', () => {
166-
logger.debug('app#ready')
167-
168-
if (!process.defaultApp && app.isInApplicationsFolder()) {
169-
return
170-
}
165+
systemPreferences.on('appearance-changed', (newAppearance) => {
166+
logger.debug('systemPreferences#appearance-changed', 'newAppearance:', newAppearance)
171167
})

app/scripts/renderer-process/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ const { ipcRenderer, remote } = electron
2020
* @constant
2121
*/
2222
const appRootPathDirectory = require('app-root-path').path
23+
const domTools = require('@sidneys/dom-tools')
2324
const logger = require('@sidneys/logger')({ write: true })
2425
const parseDomain = require('parse-domain')
2526

2627
/**
2728
* Modules (Local)
2829
* @constant
2930
*/
30-
const domTools = require('@sidneys/dom-tools')
3131
const configurationManager = remote.require('app/scripts/main-process/managers/configuration-manager')
3232

3333

0 commit comments

Comments
 (0)