Brendan Duncan

Results 401 comments of Brendan Duncan
trafficstars

I added the multiblock support for gzip and zlib in the 4.0 branch. I'm still playing around with the API of the 4.0 branch so it'll still be a bit...

I added that callback to the 4.0 branch I've been working on. https://github.com/brendan-duncan/archive/tree/4.0. Hopefully it will be ready soon.

Are you using the latest 3.4.10 version? There was an error with password decoding that was fixed in that version.

Sorry I haven't gotten back to this issue sooner. I'll get it fixed.

Fix is in git. I'll publish the fix soon. Sorry it took so long.

Oh, sorry about that! Version numbering is an art I haven't quite mastered, even after 11 years of this library. It would probably be at version 100 if I updated...

There was some changes in file streaming around the 3.4 time period. They were designed to **reduce** memory usage. Clearly iOS doesn't agree. I'll try and dig into it. A...

Sorry about that. I did just fix an issue with extractFileToDisk in 3.3.9, where in 3.3.8 it caused some corrupt files. If there is any more info you can provide...

.tgz is the same thing as .tar.gz. So, decode the gzip, then decode the tar. Or you can use the tar_command extractFiles convenience function: ```dart import 'package:archive/src/tar/tar_command.dart' as tar; //......

The archive library does not use multithreading, because Dart doesn't prove multithreading beyond isolates.