Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-19 | Get rid of intermediate byte array while sending packet | Glease | |
2021-04-27 | fix(textfiles): add missing neline at end of files | Léa Gris | |
git and diff tools will complain if text file does not end with a newline. Fixed all text files in the repository with Linux bash shell: ```sh git ls-files -z | while IFS= read -rd '' f; do mime="$(file --brief --mime "$f")"; if [ -z "${mime##text/*}" ]; then tail -c1 "$f" | read -r _ || printf '\n' >>"$f"; fi; done ``` | |||
2018-12-13 | Fix flask crash on server | Dimach | |
2018-12-11 | cherry pick 0beea9037cd8ff7a899c14c53d6b9a381c22f42c | Dimach | |
Add volumetric flask. (#1500) |