l

Results 726 comments of l

A simple way without too much work would be to remove bob states that have row ID less than the just assigned/highest row ID by 100 or so, so all...

This looks good but if we merge this we should also change the string in the Android repo because it is the string that is actually used and gets translated....

"Could not decrypt outgoing messages that may be from Delta Chat on your other device." can be read as "Could not decrypt ... on your other device." So we have...

Second commit reorders the tests so all the tests with zlib succeed and then the last test with miniz_oxide fails.

Will try calling again until `StreamEnd` status, if it works then will adjust async-compression crate and close miniz_oxide issue or turn into documentation issue.

Apparently `StreamEnd` is never returned. This passes: ``` #[test] fn deflate_decoder_partial() { let input = vec![ 210, 82, 8, 12, 245, 15, 113, 12, 242, 247, 15, 81, 240, 244,...

> The question here is if `StreamEnd` is happening in the libz-backend for instance, which is what I would expect. No, it does not happen. I think `StreamEnd` is really...

I made the test work with all implementations. So the right condition for stopping is `status == flate2::Status::BufError && output_len == 0`, which means we did not output anything but...

I managed to make async-compression work with miniz_oxide backend for flate2: https://github.com/Nullus157/async-compression/pull/294 Still need some cleanup, but I think the change makes sense in any case and depending on how...

@oyvindln > As for the choice whether to consume up to the size of the internal buffer, or just as much as would fit in the output I don't really...