summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-01-26LibGUI: Start bringing up GTextBox in the standalone world.Andreas Kling
2019-01-26LibC: Implement setjmp() and longjmp().Andreas Kling
2019-01-26WindowServer: Remove unused WSMessage::is_paint_event().Andreas Kling
2019-01-26WindowServer: Rename the two painting phases.Andreas Kling
2019-01-26WindowServer: More event -> message renaming.Andreas Kling
2019-01-26WindowServer: Rename WSEvent to WSMessage.Andreas Kling
2019-01-26Refactor GUI rendering model to be two-phased.Andreas Kling
2019-01-25LibC: Oops, unbreak isprint() once again.Andreas Kling
2019-01-25Liza8x10: Tweak 'o' glyph.Andreas Kling
2019-01-25Let's not auto-start guitest. guitest2 is so much more useful.Andreas Kling
2019-01-25sh: Discard the current line on interrupt.Andreas Kling
2019-01-25Liza8x10: Minor glyph tweaks.Andreas Kling
2019-01-25Terminal: Support VKILL and VERASE. Also ignore null characters.Andreas Kling
2019-01-25Keyboard: Shift+backspace should generate backspace character.Andreas Kling
2019-01-25SharedGraphics: Import another 8x10 fixed-width font I made.Andreas Kling
2019-01-25sh: Support basic backspacing on the command line.Andreas Kling
2019-01-25Kernel: Implement lazy FPU state restore.Andreas Kling
2019-01-25SharedGraphics: Fix broken clipping in draw_bitmap().Andreas Kling
2019-01-25Terminal: Support setting the window title using Xterm escape sequences.Andreas Kling
2019-01-25WindowServer: Make dragging window frames look kinda cool.Andreas Kling
2019-01-25Kernel: Fix Syscall.h build when out of context.Andreas Kling
2019-01-25Snazz up the windows with some title bar gradients. :^)Andreas Kling
2019-01-25WindowServer: Put the desktop background color in a member.Andreas Kling
2019-01-25Terminal: Tweak dark blue color.Andreas Kling
2019-01-25WindowServer: Retain window backing stores while blitting them.Andreas Kling
2019-01-25SharedGraphics: Optimize Painter::draw_bitmap().Andreas Kling
2019-01-25Terminal: Redraw entire line if any of its characters are dirty.Andreas Kling
2019-01-25Kernel: Fix incorrect EFAULTs when syscall would write into COW pages.Andreas Kling
2019-01-25Terminal: Use a more reasonable data structure for the emulation buffer.Andreas Kling
2019-01-25Kernel: Dump registers and code on ring0 page fault.Andreas Kling
2019-01-25PTY: Disallow infinite writing to slaves.Andreas Kling
2019-01-25Kernel: Add some logging for backing store get/release syscalls.Andreas Kling
2019-01-24Let userland retain the window backing store while drawing into it.Andreas Kling
2019-01-24TTY: MasterPTY's are always writable when open.Andreas Kling
2019-01-24Kernel: Fix bug in process termination on missing signal handler.Andreas Kling
2019-01-24Terminal: Turn ctrl+character into the appropriate ^character.Andreas Kling
2019-01-24Kernel: Finally stop exposing Region members to the public.Andreas Kling
2019-01-24LibC: Fix broken isprint(). I had misunderstood what's considered printable.Andreas Kling
2019-01-23Terminal: Various improvements to terminal emulation.Andreas Kling
2019-01-23LibC: Tweak execvp() and execve() prototypes.Andreas Kling
2019-01-23LibC: fputs() shouldn't add a trailing newline, only puts().Andreas Kling
2019-01-23Ext2FS: Include meta blocks in an inode's i_blocks count.Andreas Kling
2019-01-23Terminal: Add support for some more escape sequences.Andreas Kling
2019-01-23LibC: Support backwards copy in memmove().Andreas Kling
2019-01-23Keyboard: Support the escape key.Andreas Kling
2019-01-23SharedGraphics: Draw an error glyph instead of crashing due to missing glyphs.Andreas Kling
2019-01-23Kernel: Implement a limited version of POSIX poll().Andreas Kling
2019-01-23Terminal: Fix crash when scrolling contents while cursor is on first row.Andreas Kling
2019-01-23LibC: Let malloc(0) return nullptr.Andreas Kling
2019-01-23Kernel: Let the process argv arrays be null-terminated.Andreas Kling