Matthew Rathbone

Results 353 comments of Matthew Rathbone

electron-builder already supports a release-notes.md in the build resources folder, maybe there could be a setting to publish these release notes? That'd be awesome and save me a lot of...

@krobertson if you have 2 mins, this would be super helpful to lots of folks!

This issue seems to be this line: https://github.com/nextapps-de/flexsearch/blob/master/src/worker/index.js#L43 I'm running in Electron, and this is incorrectly identifying the process as a node process. It's not.

@ts-thomas Could this line use the following check instead? ``` if (typeof window === 'undefined') // this is node ``` In an electron window with `nodeIntegration` enabled it will look...

See code here - https://github.com/flexdinesh/browser-or-node/blob/master/src/index.js

I agree this would be very useful

FYI here's the workaround I'm using on [Beekeeper Studio](/beekeeper-studio/beekeeper-studio) using regexes: ```js const regex = new RegExp(this.searchTerm.split(/\s+/).filter((i) => i?.length).join("|"), 'gi') const result = text.replace(regex, (match) => `${match}`) ``` It works...

Did anything ever come of this? I'm building some docs now and directory ordering would be very welcome.

I love this. I used to use Sequel Pro a lot when I was a heavy Mac+MySQL user, and their table-information and data display panes are very useful.