summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-04-28Kernel: Make SharedMemory inherit from File.Andreas Kling
2019-04-28Ext2FS: Put some debug spam behind EXT2_DEBUG.Andreas Kling
2019-04-28Ext2FS: Support shrinking inode to a smaller size.Andreas Kling
2019-04-28Kernel: Dump backtrace on user process page fault.Andreas Kling
2019-04-28GEventLoop: Don't call process_unprocessed_messages() from itself.Andreas Kling
2019-04-28FileDescriptor: Let TTY handle its own absolute_path().Andreas Kling
2019-04-28Kernel: Make ProcessTracer inherit from File.Andreas Kling
2019-04-28Kernel: Add File, a base class for anything that a FileDescriptor can wrap.Andreas Kling
2019-04-28Minesweeper: Add considering feature, where middle clicking marks with '?'Andreas Kling
2019-04-28WindowServer: Add 1280x720 resolution to the system menu.Andreas Kling
2019-04-27Kernel: Fix rename() sometimes failing to move within the same directory.Andreas Kling
2019-04-27LibC: Make the malloc()/free() scrubbing runtime optional (default on.)Andreas Kling
2019-04-27LibC: Add dummy pthread.h for GCC build.Andreas Kling
2019-04-27LibC: Make fwrite() buffered.Andreas Kling
2019-04-27DiskBackedFS: Flush write cache if it reaches 32 entries before sync.Andreas Kling
2019-04-27Ext2FS: Fix accidental zero-fill when appending to a file.Andreas Kling
2019-04-27LibC: Various stdio correctness fixes.Andreas Kling
2019-04-27Kernel: "Succeed" quietly for zero-length read() and write().Andreas Kling
2019-04-26GTableView: Ignore double-clicks that hit the header section.Andreas Kling
2019-04-26LibGUI+WindowServer: Make it possible to have checkable GActions.Andreas Kling
2019-04-26GWindow: Fix crash when calling set_rect() repeatedly.Andreas Kling
2019-04-26Minesweeper: Implement some feature requests.Andreas Kling
2019-04-26GraphicsBitmap: munmap() pixels on destruction of self-allocating bitmaps.Andreas Kling
2019-04-26GWindow: Add resize(width, height) and resize(size).Andreas Kling
2019-04-26sh: Remove debug spam during command launch.Andreas Kling
2019-04-26Games: Use Makefile.common here too.Andreas Kling
2019-04-26LibGUI: Allow subclassing of GLabel.Andreas Kling
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