Gábor Gyebnár
Gábor Gyebnár
I'd like to financially express my gratitude for the development of AltSnap. It's a huge performance boost for me. I already donated to AltDrag, and your contributions to it are...
If there is a `docker-preinstall.sh` next to the Dockerfile, MiniMeteor should run it as a build step before `meteor build`. Similarly, `docker-postbuild.sh` should optionally run after `meteor build`, and `docker-postinstall`...
`node_modules` and `.meteor/local` should be omitted.
- [x] Tested on all platforms changed - [x] Added an entry to `CHANGELOG.md` if knowledge of this change could be valuable to users - [x] Updated documentation to reflect...
Here's the dependency declaration in my `Cargo.toml`. ```toml russimp = { version = "3.2.0", features = ["prebuilt"] } ``` The documentation says `prebuilt` flag will _"Download prebuilt Assimp static library...
On Linux + Bash, rargs works as expected: ```sh $ echo "hello" | rargs -e echo {0} echo hello ``` On Windows + Powershell, the output is broken: ```ps PS...