Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-02 | LibCore+id: Make more use of Core::System wrappers in Core::Account | Andreas Kling | |
2021-11-28 | Everywhere: Use default execpromises argument for Core::System::pledge | Brian Gianforcaro | |
2021-11-23 | LibCore+LibSystem: Move syscall wrappers from LibSystem to LibCore | Andreas Kling | |
With this change, System::foo() becomes Core::System::foo(). Since LibCore builds on other systems than SerenityOS, we now have to make sure that wrappers work with just a standard C library underneath. | |||
2021-11-22 | Everywhere: Use ArgsParser::parse() with Main::Arguments directly | Mustafa Quraish | |
Use the updated API everywhere we are currently manually passing in `arguments.argc` and `arguments.argv`. | |||
2021-11-22 | id: Port to LibMain :^) | Andreas Kling | |
This is a first port of a simple program to LibMain. A bunch of code is immediately simplified thanks to the LibSystem wrappers and ability to use TRY(). This is pretty cool! | |||
2021-07-31 | Userland: Fix id(1) printing the user's primary group for extra gids | sin-ack | |
This regressed in 538cc9d9 because of a typo. | |||
2021-07-09 | Utilities: Add ability to query specific user with id | Jean-Baptiste Boric | |
2021-07-09 | Utilities: Use Core::Account for id | Jean-Baptiste Boric | |
2021-06-01 | Userland: Replace most printf-style APIs with AK::Format APIs :^) | Linus Groh | |
2021-04-25 | Everywhere: Remove empty line after function body opening curly brace | Linus Groh | |
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-01-12 | Userland: Move command-line utilities to Userland/Utilities/ | Andreas Kling | |