summaryrefslogtreecommitdiff
path: root/Userland/Applications/HexEditor
AgeCommit message (Collapse)Author
2021-01-25Everywhere: Hook up remaining debug macros to Debug.h.asynts
2021-01-24HexEditor: FindCamisul
Added search submenu with options to find or find again. Find allows to search for ASII string or sequence of Hex value.
2021-01-16Everywhere: 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-15Everywhere: Pledge "sendfd" in WindowServer client programsAndreas Kling
This is needed for the new way we transfer window backing stores.
2021-01-12LibC+Everywhere: Remove open_with_path_length() in favor of open()Andreas Kling
This API was a mostly gratuitous deviation from POSIX that gave up some portability in exchange for avoiding the occasional strlen(). I don't think that was actually achieving anything valuable, so let's just chill out and have the same open() API as everyone else. :^)
2021-01-12HexEditor: Hide unnecessary scrollbars in the main file viewAndreas Kling
2021-01-12Applications: Move to Userland/Applications/Andreas Kling