Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-23 | Everywhere: Rename ASSERT => VERIFY | Andreas Kling | |
(...and ASSERT_NOT_REACHED => VERIFY_NOT_REACHED) Since all of these checks are done in release builds as well, let's rename them to VERIFY to prevent confusion, as everyone is used to assertions being compiled out in release. We can introduce a new ASSERT macro that is specifically for debug checks, but I'm doing this wholesale conversion first since we've accumulated thousands of these already, and it's not immediately obvious which ones are suitable for ASSERT. | |||
2021-01-16 | Everywhere: Drop "shared_buffer" in most GUI programs, pledge "recvfd" | Andreas Kling | |
Now that WindowServer broadcasts the system theme using an anonymous file, we need clients to pledge "recvfd" so they can receive it. Some programs keep the "shared_buffer" pledge since it's still used for a handful of things. | |||
2021-01-16 | Everywhere: Convert a handful of String::format() => formatted() | Andreas Kling | |
2021-01-15 | Everywhere: Pledge "sendfd" in WindowServer client programs | Andreas Kling | |
This is needed for the new way we transfer window backing stores. | |||
2021-01-12 | MenuApplets: Move to Userland/MenuApplets/ | Andreas Kling | |