Age | Commit message (Expand) | Author |
2020-05-12 | LibGUI: Use KeyCode stringification helper in Shortcut::to_string() | Andreas Kling |
2020-05-12 | LibGUI: Add a way to highlight the focused widget for debugging | Andreas Kling |
2020-05-12 | LibGUI: Allow scrolling through a ComboBox with the mouse wheel | Andreas Kling |
2020-05-12 | LibGUI: Add missing window() null check when widget's child is removed | Andreas Kling |
2020-05-12 | LibGUI: Remove ancient code for debugging widget underdraw | Andreas Kling |
2020-05-12 | LibHTTP: Support Transfer-Encoding: chunked | AnotherTest |
2020-05-12 | LibC: Always assign the offset pointer to endptr in strto{u,}ll() | AnotherTest |
2020-05-12 | LibLine: Fix suggestion spacing regression | AnotherTest |
2020-05-12 | LibWeb: Fixed non-spec processing of margin and padding | Eryk Skalinski |
2020-05-11 | LibWeb: Add basic support for CSS percentages | Andreas Kling |
2020-05-11 | LibJS: Parse comma operator into SequenceExpression | Linus Groh |
2020-05-11 | LibC: Implement strtoull correctly | Ben Wiederhake |
2020-05-11 | LibC: Use more flexible digit parsing code, deduplicate | Ben Wiederhake |
2020-05-11 | LibC: Implement new strtod, accurate up to 8 eps | Ben Wiederhake |
2020-05-11 | LibWeb: Add very basic handling of "font-family" font stacks | Linus Groh |
2020-05-11 | LibWeb: Ignore parsed pseudo-element selectors & empty complex selectors | Linus Groh |
2020-05-11 | LibWeb: Don't paint borders with width <= 0px | Linus Groh |
2020-05-11 | LibWeb: Set nav, main, article, aside, section to "display: block" | Linus Groh |
2020-05-11 | LibWeb: Draw the inspected node rect last in LayoutBox::render() | Linus Groh |
2020-05-11 | LibC: Add minimal <netinet/ip.h> | Yonatan Goldschmidt |
2020-05-11 | LibC: Add missing <sys/time.h> include in <utmp.h> | Yonatan Goldschmidt |
2020-05-11 | LibC: Add inet_aton, based on inet_pton | Yonatan Goldschmidt |
2020-05-11 | Kernel+LibC: Add AF_MAX | Yonatan Goldschmidt |
2020-05-11 | LibC: Return nullptr in fgets for size=0 | Yonatan Goldschmidt |
2020-05-11 | LibGfx: Eliminate conditional branch in dither | Ben Wiederhake |
2020-05-11 | LibLine: Show suggestions in pages if they don't fit on the screen | AnotherTest |
2020-05-11 | LibVT: Update the terminal buffer based on visible lines | AnotherTest |
2020-05-10 | LibWeb: Render content based on MIME type provided by server (or guess) | Andreas Kling |
2020-05-10 | LibProtocol: Pass response headers in a case insensitive HashMap | Andreas Kling |
2020-05-10 | LibWeb: Add a hook for when an URL is dropped on an HtmlView | Andreas Kling |
2020-05-10 | LibWeb: Teach HtmlView how to render Markdown files :^) | Andreas Kling |
2020-05-10 | LibWeb: Teach HtmlView how to open a .txt file | Andreas Kling |
2020-05-10 | LibWeb: Add Document create_element() and create_text_node() helpers | Andreas Kling |
2020-05-10 | LibWeb: Add Text to the forwarding header | Andreas Kling |
2020-05-10 | LibWeb: Add basic support for "border-style: {dotted,dashed}" | Linus Groh |
2020-05-10 | LibGfx: Add support for dashed lines | Linus Groh |
2020-05-10 | LibVT: Clear the hovered hyperlink after completing a drag | Andreas Kling |
2020-05-10 | LibVT: Allow dragging hyperlinks :^) | Andreas Kling |
2020-05-10 | LibVT: Make selection follow terminal history scrollback :^) | Andreas Kling |
2020-05-10 | LibVT: Use the "ActiveLink" theme color for links being clicked | Andreas Kling |
2020-05-10 | LibVT: Don't commit to opening a hyperlink until mouseup | Andreas Kling |
2020-05-10 | LibGfx: Make buttons slightly chunkier on the top/left side | Andreas Kling |
2020-05-10 | LibVT: Open hyperlinks on plain left-click instead of Ctrl+Click | Andreas Kling |
2020-05-10 | LibVT: Always draw hyperlinks with a dotted underline | Andreas Kling |
2020-05-10 | LibGfx: Replace 'bool dotted' with a LineStyle::{Solid,Dotted} enum | Linus Groh |
2020-05-10 | LibGfx: Fix dotted lines with thickness > 1 | Linus Groh |
2020-05-10 | LibWeb+Browser: Support about: URL protocol so "about:blank" works :^) | Andreas Kling |
2020-05-10 | LibLine: Support RGB colors | AnotherTest |
2020-05-10 | LibVT: Support RGB colors (\x1b[38;2;<r>;<g>;<b>m) | AnotherTest |
2020-05-10 | LibLine: Expose actual_rendered_string_length & accept newlines in prompt | AnotherTest |