Age | Commit message (Collapse) | Author |
|
It doesn't make much sense since to center run window within the parent
window since it's created in the bottom left corner of the screen.
|
|
|
|
This adds component declarations so that users can select to not build
certain parts of the OS.
|
|
This removes URLParser, because its two exposed functions, urlencode()
and urldecode(), have been superseded by URL::percent_encode() and
URL::percent_decode(). This is in preparation for the introduction of a
new URL parser.
|
|
Since applications using Core::EventLoop no longer need to create a
socket in /tmp/rpc/, and also don't need to listen for incoming
connections on this socket, we can remove a whole bunch of pledges!
|
|
...and make it an enum class so people don't omit "OpenMode".
|
|
|
|
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 *
|
|
This makes a lot more sense now that it's spawned by the start button.
|
|
|
|
Good-bye LogStream. Long live AK::Format!
|
|
Fixes #5446
|
|
Pressing up-arrow or down-arrow with empty command history printed
[null] in the text area.
Fixes #5426
|
|
We now store the last 25 inputs ran in Run in a simple text file under
.config (~/.config/RunHistory.txt)
|
|
This is needed for the thumbnail generation thread used by FilePicker.
Fixes #5015.
|
|
Application.h includes Widget.h which includes Application.h. I'm not entirely
sure what the semantics are in this case, but avoiding this seems to be the
safer approach. In this case, Widget does not actually use Application, so let's
just remove the unused include.
|
|
This apparently was a workaround for escape sequences in GML at some
point (see #4937), but it now literally inserts "\n" and no newline, as
the backslash itself is escaped.
|
|
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.
|
|
|