José Luis Cruz
José Luis Cruz
I believe only the decompressor is needed, right? These are the libs I know of: 1. https://github.com/devongovett/brotli.js/tree/master/dec/ decode.js - Instead of using dictionary-data.js use dictionary-browser.js and dictionary.bin. The total extra...
I have the same problem. In my case I solved the missing `libpng12.so.0` by following [this instructions](https://www.linuxuprising.com/2018/05/fix-libpng12-0-missing-in-ubuntu-1804.html). And the missing `libffi.so.6` by creating a symlink: ```sh sudo ln -s /usr/lib/x86_64-linux-gnu/libffi.so...
Starting to use fish coming from bash this was something I truly missed. Thank you for the script, I've named it `fg_` and now I feel complete again. EDIT: I've...
The reason is using the `cfg_default!` macro, which conditionally compiles depending on whether the "default" feature is enabled, which is a very bad idea, since it makes it impossible to...
This sounds good but do you mind if I do some PR fixing & adding some more functionality to the sync part first? I'm close to releasing a crate I'm...
yes, that doesn't change. The thing is if you run that command from the examples folder they fail because the output path can't be found. having said that, it's ok...
Well, cargo commands for building, running, checking, testing, etc. can be run from the root or from any subdirectory inside the project. That's also how git works. That changes if...
Ok I see. Although their [Rgba](https://docs.rs/photon-rs/0.3.1/photon_rs/struct.Rgba.html) structure is much less versatile for inter-op. It may still be useful to use the rgb::RGBA type at least for the outside API, since...
For what it's worth, since maintenance seems pretty stalled and apparently [no more features will be added](https://github.com/lehmannro/assert.sh/issues/19#issuecomment-169655249), I've recently applied several of pending PRs and fixes [in a fork](https://github.com/joseluis/assert.sh), and...
Hi @lehmannro, regarding the CI fix, if I recall correctly applying #4 would solve it. Only problem is the current merge conflict, which I can't fix in that PR, but...