whew

Results 6 comments of whew

I think it's a good idea to serve user files uncompressed. It's a lot simpler and would actually solve a lot of issues. Pros: * solve the large file problem...

> reflect changes to files immediately (#1059) This would solve #1059 in every case except share mode with at least 2 files. In that case, we zip all the files...

This has to do with gzip compression. When Firefox asks for partial content (i.e. when resuming a download), it sends its usual `Accept-Encoding: gzip` header. Onionshare sees that the client...

~~Right now the only change is removing the cache of gzipped filenames in `send_base_mode` so that with each request it reads, compresses, and sends the file, and then deletes the...

Share mode's `/download` works now when you're sharing exactly 1 file. Something I thought, since the size of the gzip file we're sending may change, `self.gzip_filesize` might be wrong which'll...

When you share more than 1 file or any directories, it zips them all at startup and sends that whenever `/download` is requested. The way I see it, if any...