Skip to content

Commit

Permalink
v10.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sidneys committed Nov 26, 2019
1 parent db1a7a8 commit fec5ec6
Show file tree
Hide file tree
Showing 8 changed files with 319 additions and 373 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ install:
- cmd: echo 🔧 Preparing Build Environment (Git)
- cmd: git config --global core.autocrlf input
- cmd: echo 🔧 Preparing Build Environment (Node.js)
- ps: Update-NodeJsInstallation 13.1.0
- ps: Update-NodeJsInstallation 13.2.0
- cmd: npm --global update npm
- cmd: npm --global install yarn

Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ addons:
before_install:
- echo "🔧 Preparing Build Environment (Node.js)"
- curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | NVM_DIR="${HOME}"/.nvm sh
- source "${HOME}"/.nvm/nvm.sh && nvm install 13.1.0 && nvm use 13.1.0
- source "${HOME}"/.nvm/nvm.sh && nvm install 13.2.0 && nvm use 13.2.0
- npm --global update npm
- npm --global install yarn

Expand Down
13 changes: 13 additions & 0 deletions RELEASENOTES.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
{
"10.2.0": {
"💎 improvements": [
"various stability and performance improvements"
],
"🚨 fixes": [
"fixes startup issue (Linux, Windows)"
],
"👷 internals": [
"upgrades `electron` to `v7.1.2`",
"upgrades local `node_modules`",
"upgrades third-party `node_modules`"
]
},
"10.0.1": {
"🍾 features": [
"adds native blurred translucent `NSVisualEffectView` menu sidebar (macOS)"
Expand Down
18 changes: 7 additions & 11 deletions app/scripts/main-process/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const appProductName = global.manifest.productName


/**
* Force Singular Instance
* Force single Instance
*/
if (!app.requestSingleInstanceLock()) {
logger.warn('Additional application instance detected:', app.getPath('exe'))
Expand Down Expand Up @@ -152,20 +152,16 @@ app.on('before-quit-for-update', () => {
})

/**
* @listens Electron.systemPreferences:appearance-changed
* @listens Electron.App:ready
*/
systemPreferences.on('appearance-changed', (newAppearance) => {
logger.debug('systemPreferences#appearance-changed', 'newAppearance:', newAppearance)
app.once('ready', () => {
logger.debug('app#ready')
})


/**
* @listens Electron.App:ready
* @listens Electron.systemPreferences:appearance-changed
*/
app.once('ready', () => {
logger.debug('app#ready')

if (!process.defaultApp && app.isInApplicationsFolder()) {
return
}
systemPreferences.on('appearance-changed', (newAppearance) => {
logger.debug('systemPreferences#appearance-changed', 'newAppearance:', newAppearance)
})
2 changes: 1 addition & 1 deletion app/scripts/renderer-process/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ const { ipcRenderer, remote } = electron
* @constant
*/
const appRootPathDirectory = require('app-root-path').path
const domTools = require('@sidneys/dom-tools')
const logger = require('@sidneys/logger')({ write: true })
const parseDomain = require('parse-domain')

/**
* Modules (Local)
* @constant
*/
const domTools = require('@sidneys/dom-tools')
const configurationManager = remote.require('app/scripts/main-process/managers/configuration-manager')


Expand Down
Loading

0 comments on commit fec5ec6

Please sign in to comment.