summaryrefslogtreecommitdiff
path: root/Userland/Utilities/zip.cpp
AgeCommit message (Collapse)Author
2021-05-12LibCore+Everywhere: Move OpenMode out of IODeviceAli Mohammad Pur
...and make it an enum class so people don't omit "OpenMode".
2021-04-29Utilities: Use Vector<String> positional arguments in some placesAndreas Kling
There are more places we can use these, I just picked some that felt like they improved the code.
2021-04-29Userland: Fix new GCC warningsGunnar Beutner
2021-04-22AK+Userland: Use idan.horowitz@serenityos.org for my copyright headersIdan Horowitz
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-03-23Userland: Add simple zip utilityIdan Horowitz
This uses the recently added ZipOutputStream in LibArchive.