summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-11-29PaintBrush: Allow canceling a line by pressing the Escape keyAndreas Kling
2019-11-29PaintBrush: Add a "line" tool for drawing straight linesAndreas Kling
2019-11-29LibDraw: Painter::draw_pixel() with thickness>1 was doubly translatingAndreas Kling
2019-11-29modunload: Take the module-to-unload as a command-line argumentAndreas Kling
2019-11-29jp: Print double-quotes around string values in outputAndreas Kling
2019-11-29Kernel: Have modules export their name in a "module_name" stringAndreas Kling
2019-11-29modload: Take the module-to-load as a command-line argumentAndreas Kling
2019-11-29Kernel: Show module memory size in /proc/modulesAndreas Kling
2019-11-29DisplayProperties: Add 1280x720 to the list of resolutionsAndreas Kling
2019-11-29Calculator: Add a 16x16 app iconAndreas Kling
2019-11-29Kernel: Disallow syscalls from writeable memoryAndreas Kling
2019-11-29LibGUI: Keep the (1, 1) text offset on GButton after it becomes checkedAndreas Kling
2019-11-29LibGUI: Align GButton text according to the specified text_alignment()Andreas Kling
2019-11-29Kernel: Demangle kernel C++ symbols correctly againAndreas Kling
2019-11-29LibC: Tolerate stddef.h being included from the kernelAndreas Kling
2019-11-29LibC: Implement bsearchWilliam McPherson
2019-11-28Kernel: Allow modules to link against anything in kernel.map :^)Andreas Kling
2019-11-28LibELF: Add ELFImage::Symbol::bind()Andreas Kling
2019-11-28Kernel: Add /proc/modules to enumerate the currently loaded modulesAndreas Kling
2019-11-28Kernel: Implement basic module unloading :^)Andreas Kling
2019-11-28Kernel: Implement very simple kernel module loadingAndreas Kling
2019-11-28LibELF: Restore the relocation code from git historyAndreas Kling
2019-11-28LibHTML: Just swallow :not selectors for nowAndreas Kling
2019-11-28LibHTML: CSS parser should accept "foo>bar", not just "foo > bar"Andreas Kling
2019-11-28LibHTML: Update CSS parser with terminology from Selectors Level 4Andreas Kling
2019-11-28Kernel+ifconfig: Add an MTU value to NetworkAdapterAndreas Kling
2019-11-27LibHTML: Respect "border-style: dotted"Andreas Kling
2019-11-27LibDraw: Support dotted lines in Painter::draw_line()Andreas Kling
2019-11-27LibHTML: Add shorthand expansion for border-{style,width,color}Andreas Kling
2019-11-27LibHTML: Implement compound selectorsAndreas Kling
2019-11-27LibGUI: Make GSortingProxyModel update the selection on resort againAndreas Kling
2019-11-27Kernel: listen() should fail with EINVAL for already-connected socketsAndreas Kling
2019-11-27Kernel: Remove Process::state(), everyone should use Thread::state()Andreas Kling
2019-11-27Kernel: Remove outdated FIXME about EINTR in select()Andreas Kling
2019-11-27Kernel: Demangle userspace ELF symbols in backtracesAndreas Kling
2019-11-27Kernel: Fix triple-fault when clicking on SystemServer in SystemMonitorAndreas Kling
2019-11-26Kernel: Make syscall counters and page fault counters per-threadAndreas Kling
2019-11-26Kernel: Expose per-thread information in /proc/allAndreas Kling
2019-11-26Kernel: Process::for_each_thread() should show the main thread of PID 0Andreas Kling
2019-11-26Base: Document SystemServerSergey Bugaev
2019-11-26SystemServer: Implement lazy spawningSergey Bugaev
2019-11-26LookupServer: Port to socket takeoverSergey Bugaev
2019-11-26LookupServer: Port to LibCoreSergey Bugaev
2019-11-26ProtocolServer: Port to socket takeoverSergey Bugaev
2019-11-26AudioServer: Port to socket takeoverSergey Bugaev
2019-11-26WindowServer: Port to socket takeoverSergey Bugaev
2019-11-26SystemServer+LibCore: Implement socket takeoverSergey Bugaev
2019-11-26SystemServer: Implement keepaliveSergey Bugaev
2019-11-26SystemServer: Read service list from a config fileSergey Bugaev
2019-11-26LibCore: Assert instead of crashing in CEventLoop::current()Sergey Bugaev