-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid using general purpose bit 3 when possible #13
Comments
Great stuff! 👍 |
It appears that it's not possible to create an archive with yazl that can be extracted by both Mac's Archive Utility and 7-Zip 9.20. Is this correct? How could we make this work for both applications? |
If you use the |
Then unfortunately there might've been an oversight on the latest release. I've created #14 to track this. |
7-zip 9.20 seems to not support general purpose bit 3. It wouldn't be too difficult to avoid relying on general purpose bit 3 sometimes, for example when a file is added with
addBuffer()
.Enhancing
addBuffer()
to avoid general purpose bit 3 will enable users to have compatibility with 7-zip 9.20 by buffering their files in ram and usingaddBuffer()
exclusively.The text was updated successfully, but these errors were encountered: