Julio Vedovatto

Results 9 comments of Julio Vedovatto

I made a small experiment here and tested `app.isTrustedAccessibilityClient(true)` and built locally to test. ``` if (isMac()) { settingsProvider.set( 'settings-shiny-tray-dark', nativeTheme.shouldUseDarkColors ) systemPreferences.subscribeNotification( 'AppleInterfaceThemeChangedNotification', function theThemeHasChanged() { settingsProvider.set( 'settings-shiny-tray-dark', nativeTheme.shouldUseDarkColors...

@tex0l thanks for the feedback. I checked some topics, but I was not sure if they already fixed for the future versions. I just tested with Electron `11.0.0-beta.11` and worked...

Media keys working as expected in `1.14.0`. I can finally ditch the custom build I made. I had to do the same thing that @coagmano did in order to make...

Oh Boy, I wish I had seen this issue before starting a big Vue project using PUG 🙄

@renke I noticed strange behavior using `'vue/script-indent': ['error', 2, { baseIndent: 1 }]` eslint rule Current config: ``` { ".js, .jsx, .es6, .es": { "parser": "babylon", "style": "eslint", "options": {}...

Any updates on the issue @lambrospetrou ?

Same problem here. webvr-polyfill does not play well with Firefox (Windows) after v0.9.36. I'm using google `vrview` on a website. I had to change vrviews's `packages.json` to use `[email protected]` instead....

Well it seems we can consider this project kinda "dead". Since author didn't make any considerable commits since last year, nor have accepted PRs. Also: https://www.usatoday.com/story/tech/2020/05/12/google-play-music-shut-down-how-transfer-tunes-youtube-music/3112297001/ Thanks for the tip...

My Two cents in this topic: ```js const emitter = mitt() emitter.once = (type, handler) { const fn = (...args) => { emitter.off(type, fn) handler(args) } emitter.on(type, fn) } }...