summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-06-21LibGUI: Refactor the keyboard activation code a bit to use WeakPtr<GWidget>.Andreas Kling
2019-06-21PaintBrush: Make a little icon for the spray tool.Andreas Kling
2019-06-21WindowServer: Render the global menubar into a separate WSWindow.Andreas Kling
2019-06-20LibHTML: Add the outline of a CSS stylesheet object graph.Andreas Kling
2019-06-20LibHTML: Add layout() overrides for LayoutText and LayoutBlock.Andreas Kling
2019-06-20LookupServer: Use a CFile for loading /etc/hosts.Andreas Kling
2019-06-20AK: Make StringImpl a bit smaller.Andreas Kling
2019-06-19Kernel+LibC: Make page fault crashes a bit more readable.Andreas Kling
2019-06-19Kernel: Symbolicate the crash address too, not just the call stack.Andreas Kling
2019-06-19AK: Add some convenient functions to JsonValue.Andreas Kling
2019-06-18printf: Support printing negative values with %f or %g.Andreas Kling
2019-06-18WindowServer: Remove unused WSWindowManager::m_windows hash table.Andreas Kling
2019-06-18AK: Add IPv4Address(NetworkOrdered<dword>) constructor.Andreas Kling
2019-06-18AK: Move IPv4Address from Kernel/Net/ to AK/ since it's quite useful.Andreas Kling
2019-06-18printf: Treat %g as %f for now.Andreas Kling
2019-06-18AK: Rename JsonObject::to_string() and pals to serialized().Andreas Kling
2019-06-18AK: ScopeGuard.h needs StdLibExtras.hAndreas Kling
2019-06-18AK: Override StringImpl's operator delete to silence valgrind.Andreas Kling
2019-06-18AK: Fix leak in JsonValue::operator=(JsonValue&&).Andreas Kling
2019-06-18AK: Add JsonValue(const char*).Andreas Kling
2019-06-18AK: Add JsonValue(unsigned) ctor and as_string().Andreas Kling
2019-06-18AK: Including <AK/kstdio.h> should pull in <stdio.h> etc on host builds.Andreas Kling
2019-06-18AK: Make ASSERT_NOT_REACHED() work nicely in host builds.Andreas Kling
2019-06-17AK: Use a single StringBuilder throughout JSON serialization.Andreas Kling
2019-06-17VisualBuilder: Switch to JSON for the form output.Andreas Kling
2019-06-17AK: Add some classes for JSON encoding.Andreas Kling
2019-06-17PaintBrush: Make spray circular.Sergey Bugaev
2019-06-17LibM: Rewrite trigonometric functions.Sergey Bugaev
2019-06-17Add a simple spray fill toolRobin Burchell
2019-06-16Merge pull request #173 from faissaloo/serenity-keysAndreas Kling
2019-06-16LibM: Add trigonometric approximations and misc mathematical functionsfaissaloo
2019-06-16GWindow: Get rid of superflous variablefaissaloo
2019-06-16LibGUI: clang-formatfaissaloo
2019-06-16LibHTML: Add a Frame class, start fleshing out recursive layout.Andreas Kling
2019-06-16GWindow: Cleanupfaissaloo
2019-06-16PaintBrush: Reduce debug spam in the color editor dialog.Andreas Kling
2019-06-16PaintBrush: Allow editing palette colors by ctrl-clicking them.Andreas Kling
2019-06-16Color: Add setters for the red, green and blue components.Andreas Kling
2019-06-16GSpinBox: The initial text should be "0".Andreas Kling
2019-06-16SystemServer: Shut down after 5 seconds if testmode=1 is set on the kernel co...Robin Burchell
2019-06-16Kernel: Expose kernel command line to userspace through /proc/cmdlineRobin Burchell
2019-06-16Userland: Add wc program (#228)Callum Attryde
2019-06-16LibHTML: Add a LayoutStyle object (computed style for a LayoutNode.)Andreas Kling
2019-06-16LibHTML: Give LayoutNodes a rect.Andreas Kling
2019-06-16WindowServer: Add a shutdown option to the menu, rather than forcing terminal...Robin Burchell
2019-06-16Kernel/Userland: Add a halt syscall, and a shutdown binary to invoke itRobin Burchell
2019-06-16Kernel+Userland: Expose list of network adapters through /proc/netadapters.Andreas Kling
2019-06-16PaintBrush: Flood filling with the same color is a no-op.Andreas Kling
2019-06-15LibHTML: Create some subdirectories.Andreas Kling
2019-06-15LibHTML: Collapse all-whitespace LayoutText into a single ' ' char.Andreas Kling