Nathanael Anderson
Nathanael Anderson
The easiest way I found to do that step is to have one of my build steps copy the file from my `buildResources` folder to the final destination before packaging...
Just a small warning, one issue I discovered was that the machine you compile Better-SQLITE on's GLIBC version matters **GREATLY**. If you use the above command line on say a...
The PR #974 should allow you to fix this issue easily in your code, this is basically the same issue that Electron sees, where paths are totally messed up. For...
Issue's with native `.node` modules in Electron has many, many corner cases! Especially if you are trying to elk out a fast startup. There are many hidden gotcha's with everything...
Uhm, can we leave this a configurable item. I happen to prefer it to exit right away. That allows me to programmatically know the tests are done.
@daybrush - 4.9.0-beta.5 now gives me this error: ``` Uncaught TypeError: this.itemRenderer.updateItemsWithEqualSize is not a function at __proto._updateItems (GroupManager.ts:415:23) at Grid.ts:363:12 at Component.ts:93:9 at Array.forEach () at __proto.trigger (Component.ts:92:16) at...
I believe this code is supposed to be `updateEqualSizeItems` not `updateItemsWithEqualSize` but I'm still looking at the PR's you made to see what changes were done.... As `UpdateEqualSizeItems` is the...
@daybrush - 4.9.0-beta.7 does fix the `Uncaught TypeError: this.itemRenderer.updateItemsWithEqualSize is not a function` error -- so that is awesome! ### However I am still seeing the grid missing items that...
@daybrush - This seems to fix the Demo, but does nothing for my actual project, which is very weird since I've duplicates the css and classes fairly well. I am...
Well, I'm still seeing this issue on my project, however it does appear that doing a `setTimeout( () => { ig.updateItems(); }, 250);` will at least cause it to fix...