Gavin Wong
Gavin Wong
I just ran into this problem as well. Comment by @amura11 pretty much nailed the issue with Webpack trying to be smart by statically optimize `if (typeof module !== 'undefined')...
Without jinja it's hard to install packages that depend on instance data like: ``` ## template: jinja #cloud-config packages: - linux-modules-extra-{{ v1.kernel_release }} ```
I've just tried the example code from the `README` on version `v2.8.2` as follow: ``` const userSchema = { $id: "http://example.com/schemas/user.json", type: "object", properties: { name: { type: "string" },...
In my testing, it appears that [`IModalWindow::Show`](https://github.com/ncruces/zenity/blob/3a348ffda876ba50ad17d945ff69ffa7155614cb/file_windows.go#L261) continues to block until active user interaction even though a successful call to [`IFileDialog::Close`](https://github.com/ncruces/zenity/blob/3a348ffda876ba50ad17d945ff69ffa7155614cb/file_windows.go#L255) has returned. I'm starting to wonder if this is...
Agreed. I've ditched `IFileDialog::Close` because I'm convinced that it was only ever intended to be called inside `IFileDialogEvents` callbacks. Workaround: if I call `CoInitializeEx` with `COINIT_APARTMENTTHREADED`, somehow `SetWindowsHookEx` seems to...