Matej Knopp
Matej Knopp
You can copy the [Info.plist template](https://github.com/nativeshell/nativeshell/blob/main/nativeshell_build/src/res/macos/Info.plist) from NativeShell, put it somewhere in your project and then reference it in `build.rs`: ```rust let options = AppBundleOptions { ... info_plist_template: Some("resources/Info.plist".into()), //...
Thanks for the report. I think I saw this few days ago. In any case, if you run `flutter pub get` manually the build will not attempt to run it...
The biggest issue with this right now is that Flutter engine does not have official arm64 build for macOS. I opened issue for this [here](https://github.com/flutter/flutter/issues/81488) but there haven't been much...
You need to have libglib2.0-dev installed. ``` sudo apt-get install -y libglib2.0-dev ```
Actually, it should probably be a dependency of `libgtk-3-dev`. So you will need to install that.
Bit off-topic maybe, but would it be possible to add `rowsAffected` in `PostgreSQLResult`? Right now to gets row affected one needs to use execute and thus no query reuse or...
Any chance of supporting named pipes on windows? It's been around longer than AF_UNIX, and we rely on it for IPC on windows (with libuv / nodejs application).
I'm having same issue (used through https://github.com/Valian/docker-nginx-auto-ssl/ ). This is also not the fist time this happened. REmoving the storage and restarting helps, but this doesn't feel like a reliable...
@andrew-aladev, IIRC llhttp is default parser in nodejs since node 12, and it does not depend on llvm.
When source location in pdb starts with `\\?\C:\Users\...` vscode will try opening the source file in `\?\C:\Users\`, which is not a valid UNC path (note missing slash at the beginning).