Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-04-01 | Everywhere: Run clang-format | Idan Horowitz | |
2022-01-28 | zip: Ignore symlinks when recursively zipping files | Idan Horowitz | |
This prevents infinite loops when symlinks point to a parent directory. | |||
2022-01-21 | zip: Add unveil and pledge promises | David Lindbom | |
2022-01-04 | zip: Port to LibMain :^) | mjz19910 | |
2021-11-26 | Userland: Use Core::ArgsParser's Vector<StringView> API everywhere | Andreas Kling | |
...and remove the Vector<String> variant since there are no remaining users of this API. | |||
2021-05-12 | LibCore+Everywhere: Move OpenMode out of IODevice | Ali Mohammad Pur | |
...and make it an enum class so people don't omit "OpenMode". | |||
2021-04-29 | Utilities: Use Vector<String> positional arguments in some places | Andreas Kling | |
There are more places we can use these, I just picked some that felt like they improved the code. | |||
2021-04-29 | Userland: Fix new GCC warnings | Gunnar Beutner | |
2021-04-22 | AK+Userland: Use idan.horowitz@serenityos.org for my copyright headers | Idan Horowitz | |
2021-04-22 | Everything: 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-23 | Userland: Add simple zip utility | Idan Horowitz | |
This uses the recently added ZipOutputStream in LibArchive. |