summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-04-26LibGUI: Track double-clicking per individual mouse button.Andreas Kling
2019-04-26sh: Add a simple "export" command for setting environment variables.Andreas Kling
2019-04-26LibC: Add execvpe() and make execvp()'ed children inherit environment.Andreas Kling
2019-04-26LibCore: Make it possible to create a CFile for an existing file descriptor.Andreas Kling
2019-04-26Userland: Add a simple /bin/tr program.Andreas Kling
2019-04-26Userland: Add a simple /bin/sort program.Andreas Kling
2019-04-26Userland: Add a simple /bin/head program.Andreas Kling
2019-04-26LibC: Update stdio stream error state in more places.Andreas Kling
2019-04-25Kernel: Don't count kfree(nullptr) as a call to kfree().Andreas Kling
2019-04-25sh: Make "cd" jump to the home directory. And also let's set $HOME.Andreas Kling
2019-04-25sh: Support erasing a whole word with WERASE (^W).Andreas Kling
2019-04-25GTextEditor: Add very basic automatic indentation.Andreas Kling
2019-04-25GTableView: Double-click should only activate/edit valid indices.Andreas Kling
2019-04-25GTextEditor: Double-clicking on a word should select that word.Andreas Kling
2019-04-25Kernel: Add a write cache to DiskBackedFS.Andreas Kling
2019-04-25Ext2FS: Reduce debug spam in block allocation.Andreas Kling
2019-04-25WindowServer: Ignore title change notifications for non-normal windows.Andreas Kling
2019-04-25sh: Add support for redirecting stdin and stdout with < and >.Andreas Kling
2019-04-25cat: Just use fd 0 when no arguments are passed.Andreas Kling
2019-04-25Kernel: Dump stack trace when kmalloc() fails.Andreas Kling
2019-04-25sh: Refactor command parsing into a separate class.Andreas Kling
2019-04-25sh: Add basic command piping support.Andreas Kling
2019-04-25fgrep: Don't repeat old incoming data if fgets() failed.Andreas Kling
2019-04-25Kernel: Make it possible to look up FIFO's by ID.Andreas Kling
2019-04-25Userland: Add a simple /bin/echo program.Andreas Kling
2019-04-25GTextEditor: Improve cursor positioning accuracy when using a mouse.Andreas Kling
2019-04-25GTextEditor: Go a little past the cursor for Home/End scroll-into-view.Andreas Kling
2019-04-25GTextEditor: Always call did_change() before set_cursor().Andreas Kling
2019-04-25GTextEditor: Account for the GFrame border in the painting code.Andreas Kling
2019-04-25GScrollableWidget: The visible_content_rect() should be max content_size().Andreas Kling
2019-04-24SharedGraphics: Add is_right_text_alignment(TextAlignment) helper.Andreas Kling
2019-04-24GTextEditor: Expand the content "to-fill" for right aligned text.Andreas Kling
2019-04-24GTextEditor: Make the line_widget_rect() span the widget horizontally.Andreas Kling
2019-04-24GTextEditor: Turn off the ruler by default.Andreas Kling
2019-04-24GTextEditor: Fix line_content_rect() behavior with custom alignments.Andreas Kling
2019-04-24GTextEditor: Add support for different text alignments.Andreas Kling
2019-04-24Allow passing extra args to qemu via a SERENITY_EXTRA_QEMU_ARGS env var.Andreas Kling
2019-04-24Taskbar: Clicking a window button now toggles minimized state.Andreas Kling
2019-04-24Kernel: Add a comment block about the Device class.Andreas Kling
2019-04-24Taskbar: Forgot to add WindowIdentifier.h.Andreas Kling
2019-04-24Kernel: Simplify Device::open().Andreas Kling
2019-04-24Build: Let's skip the --gc-sections linker option for now.Andreas Kling
2019-04-23WindowServer+TaskBar: Add a taskbar window button popup menu.Andreas Kling
2019-04-23Kernel: Process destruction should destroy all child threads.Andreas Kling
2019-04-23WindowServer: Add some padding to the window switcher items.Andreas Kling
2019-04-23Put assertions behind a DEBUG flag to make it easy to build without them.Andreas Kling
2019-04-23Build: Pass --gc-sections to the linker in all builds.Andreas Kling
2019-04-23Kernel: Make the right shift key work.Andreas Kling
2019-04-23WindowServer: Remove debug spam about activating non-normal windows.Andreas Kling
2019-04-23LibGUI: Don't bother setting a title on tooltip windows.Andreas Kling