summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-29Everywhere: Fix a bunch of typosLinus Groh
2022-05-29Meta: Update manpages website build script to handle non-icon imagesLinus Groh
Adding an image to man7/Audio-subsystem.md referencing a non-icon image file in the same directory broke the automated build of the manpages website, which was not prepared to handle this case.
2022-05-29WindowServer: Call screen_resolution_changed after window screens clearmontiagne
When the user executes chres to change to a new resolution, the WindowManager removes for each window its intersections with the screens (window.screens()) and recalculates its rect. Finally, a Window::set_rect call sets the window's new rectangle. The set_rect call also triggers a call to Compositor::invalidate_occlusions which fills for each window the intersections with the screens again in window.screens(). In case chres switches to an already present resolution the set_rect call exits prematurely as it checks if the window's rect really changed. This means that nobody calls invalidate_occlusions resulting in a rendering issue for each window. Moving the call to Compositor::screen_resolution_changed after the clearing of window.screens() and recalc of the window rect for each window resolves the rendering issue as screen_resolution_changed calls invalidate_occlusions.
2022-05-28Base: Add test page for Web Storage APIRafał Babiarz
2022-05-28Browser+LibWeb+WebContent: Add ability to inspect session storageRafał Babiarz
2022-05-28NetworkServer: Support setting default gatewayMaciej
This commit adds an IPv4Gateway to Network.ini. If that option is set to value other than 0.0.0.0, the NetworkServer adds a default route (e.g. with address 0.0.0.0/0) with the specified destination.
2022-05-28Base: Add Tai Le to font Katica Regular 10Xexxa
1950-1974 https://www.unicode.org/charts/PDF/U1950.pdf
2022-05-28Base: Add Oriya to font Katica Regular 10Xexxa
0B01-0B77 https://www.unicode.org/charts/PDF/U0B00.pdf
2022-05-28Base: Add the Philippine flagXexxa
2022-05-28Applets/ResourceGraph: Open network monitor when clicking network graphMacDue
(Previously, it would open the performance monitor tab)
2022-05-28Ports/acpica-tools: Use `./package.sh dev` to align patches and ReadMeEWouters
This prevents manual changes to the ReadMe to get lost in the future.
2022-05-27Utilities: Add edid-dump program to dump EDID from Display connectorsLiav A
2022-05-27Ports: Remove spaces in specifier in 2 printf calls in acpica-tools portLiav A
The specifiers are badly written and lead to a crash when using iASL. This happens because our printf doesn't understand how to handle a space between the percent symbol and the actual formatted type specifier after it. To fix this, we just remove the spaces in a new patch file.
2022-05-27Base: Make kill process icon using hand as gun gesturedjwisdom
This was suggested by dither8 on Discord https://bit.ly/3ynR3sb
2022-05-27Ports: Add ACPICA tools portLiav A
2022-05-26Userland: Depend some applications on WebContent if it's being usedKarol Kosek
Deduced this mostly by looking at unveil()s.
2022-05-26WebContent: Depend on ImageDecoder, RequestServer and WebSocketKarol Kosek
2022-05-26Welcome: Depend on HelpKarol Kosek
2022-05-26Browser: Depend on BrowserSettingsKarol Kosek
The app refused to run in the Required+Browser system configuration, because unveil was angry that BrowserSettings wasn't being installed.
2022-05-26CharacterMap: Mark this component as 'recommended', not 'required'Karol Kosek
Despite being a small and useful program, it doesn't feel being essential enough to be included in every build configuration.
2022-05-26LibGUI: Implement case inversion in Vim emulationhuttongrabiel
When in visual mode with text selected, on Key_Tilde press, uppercase characters convert to lowercase and lowercase ones to uppercase.
2022-05-26AK: Add invert_case() and invert_case(StringView)huttongrabiel
In the given String, invert_case() swaps lowercase characters with uppercase ones and vice versa.
2022-05-26Base: Don't launch LookupServer in generate-manpages modeMaciej
This is not needed now.
2022-05-26netstat: Stop needing LookupServer for parsing argumentsMaciej
Previously the netstat utility crashed when LookupServer wasn't running because it tried to unveil nonexistent /tmp/portal/lookup socket. This commit fixes that.
2022-05-26Base: Add man page for network configurationMaciej
2022-05-26NetworkServer: Add a new NetworkServer serviceMaciej
This service is responsible for loading network configuration from a /etc/Network.ini config file. It sets up static IP address + mask or starts DHCPClient depending on configuration.
2022-05-26DHCPClient: Don't discover interfaces other than given by defaultMaciej
Now, the caller needs to give interface names in command-line arguments. The DHCPClient will perform DHCP discovery only on these adapters. The service now immediately closes when no interfaces were given. We don't check if interface has already IP address assigned; we just reset it to zero so that DHCP resolution will not fail.
2022-05-26MasterWord: Check guesses against the word listPaweł Łukasik
Previously guesses were not checked which allowed guesses like 'aaaaa' to be entered. Currently there's an option to set if a guess should be checked against the dictionary and rejected if it doesn't exist there. Additionally settings from Game menu have been moved to its own entry - Settings.
2022-05-26route: Add the flags columnbrapru
2022-05-26Kernel: Add support for route flagsbrapru
Previously the routing table did not store the route flags. This adds basic support and exposes them in the /proc directory so that a userspace caller can query the route and identify the type of each route.
2022-05-26Base: Write man page for utimensat(3) and futimens(3)Ariel Don
2022-05-26Base: Write man page for touch(1)Ariel Don
2022-05-26Ports: AvailablePorts.md: Add link to ports.serenityos.netXexxa
2022-05-26LibDSP: Fix keyboard glitch in Classickleines Filmröllchen
This is quite elusive.
2022-05-26Piano: Use LibDSP::Keyboard for all keyboard-playing logickleines Filmröllchen
The only major functional change is that the Track now needs to know whether it's active or not, in order to listen to the keyboard (or not). There are some bugs exposed/created by this, mainly: * KeysWidget sometimes shows phantom notes. Those do not actually exist as far as debugging has revealed and do not play in the synth. * The keyboard can lock up Piano when rapidly pressing keys. This appears to be a HashMap bug; I invested significant time in bugfixing but got nowhere.
2022-05-26Piano: Make TrackManager::next_track_index constkleines Filmröllchen
That's very much an informational API.
2022-05-26Piano: Use a real transport in the TrackManagerkleines Filmröllchen
This is technically only a stepping stone but needed to happen at some point anyways. Now, there's no more integer time stored in Piano's legacy datastructures directly.
2022-05-26LibDSP: Introduce the Keyboardkleines Filmröllchen
This is a class for handling user MIDI input, which is combined by the Track with roll note data if applicable.
2022-05-26LibGUI: Allow to lowercase conversion in Vim emulationhuttongrabiel
If Key_U is pressed while in visual mode, the currently selected text will be converted to lowercase.
2022-05-26LibGUI: Allow to uppercase conversion in Vim emulationhuttongrabiel
If Shift+Key_U is pressed while in visual mode, the currently selected text will be converted to uppercase.
2022-05-26LibGUI: Add casefold_selection function to choose case conversionhuttongrabiel
Allows the passing of a Casing enum, Lowercase or Uppercase, and converts the selected text accordingly. If Lowercase is passed as the parameter, it converts the selected text to lowercase. If Uppercase is passed as the parameter, it converts the selected text to uppercase.
2022-05-26LibGUI: Invert button icons with low contrast ratiosMacDue
On some dark themes, it becomes impossible to dark button icons against their dark button backgrounds. This change tries to mitigate that by inverting the icon color if the contrast ratio (against the button background) is less the 4.5 (the recommended minimum for text). This is only done for icons that are a solid color (e.g. all back), where the desired icon would likely be the same inverted anyway. Fixes a lot of cases of #13978
2022-05-26LibGfx: Add Color::contrast_ratio()MacDue
2022-05-26LibGfx: Add Bitmap::solid_color()MacDue
This function returns an Optional<Color> and is given an alpha_threshold. If all pixels above that alpha threshold are the same color, it returns the color, otherwise it returns an empty optional.
2022-05-26LibGfx: Add Bitmap::invert()MacDue
Helper function to invert a bitmap in-place
2022-05-25Documentation: Add `ninja` command to exampleEWouters
This is needed for the next command to work.
2022-05-25WindowServer: Stop spurious debug spam after flushing the framebufferLiav A
This became apparent when using the VirtIO graphics device, because the HardwareScreenBackend object needs to allow flushing of the framebuffer constantly, and due to incorrect if-else flow, even a non-error response from the ioctl was leading to a debug spam.
2022-05-25Base: Document the LibDSP structure in a simple class diagramkleines Filmröllchen
This uses UML conventions but just contains the necessary info to get started with LibDSP development.
2022-05-25Base: Update the audio subsystem documentationkleines Filmröllchen
We need to mention the new queue system as well as the userland sample format.
2022-05-25Ports: Add RetroArchgouchi