summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-03-27Give the emulator testing environments 128 MB of RAM.Andreas Kling
2019-03-27LibC: Let's remember that headers are in C.Andreas Kling
2019-03-27LibC: Run constructors on process startup.Andreas Kling
2019-03-27LibC: Fix fread() EOF behavior with ungetc().Andreas Kling
2019-03-27LibC: Remove the validate_mallocation() stuff since Binutils hates it.Andreas Kling
2019-03-27Kernel: Load ELF executable pages lazily when possible.Andreas Kling
2019-03-27LibC: Implement atexit() and strtoul().Andreas Kling
2019-03-27LibM: Stub out ldexp().Andreas Kling
2019-03-27LibC: Add ungetc() and automatically flush streams on fclose().Andreas Kling
2019-03-27LibC: Add creat(), execvp() resolution, and exec*() environment inheritance.Andreas Kling
2019-03-27Terminal: Export a simple PATH=/bin:/usr/bin to shells.Andreas Kling
2019-03-27LibC: Time-related POSIX compliance fixes.Andreas Kling
2019-03-27Kernel: Print an error when trying to load an incompatible ELF image.Andreas Kling
2019-03-27AK: printf() should support %#x and %#o.Andreas Kling
2019-03-26LibC: fread() should return the number of elements (not bytes) read.Andreas Kling
2019-03-25Base: Tweak 16x16 "open" icon.Andreas Kling
2019-03-25Base: Add 32x32 versions of filetype-socket and filetype-symlink.Andreas Kling
2019-03-25LibGUI: Add GIcon::default_icon(name).Andreas Kling
2019-03-25GItemView: Some improvements to keyboard navigation.Andreas Kling
2019-03-25GTextEditor: Draw a simple border around single-line editors.Andreas Kling
2019-03-25GItemView: Hide the horizontal scrollbar since we never need it.Andreas Kling
2019-03-25LibGUI: Ignore GWidget::update() on invisible widgets.Andreas Kling
2019-03-25GItemView: Add slightly more horizontal padding to the icon labels.Andreas Kling
2019-03-25SharedGraphics: Font::width() shouldn't add spacing to the very last glyph.Andreas Kling
2019-03-25GTextEditor: Shift+Delete should delete the current line.Andreas Kling
2019-03-25GLock: Remove some debug spam.Andreas Kling
2019-03-25LibGUI+Kernel: Add a GLock class (userspace mutex.)Andreas Kling
2019-03-25GScrollBar: Clicking in the gutter should jump directly to that position.Andreas Kling
2019-03-25FileManager+LibGUI: Show thumbnail generation progress in the statusbar.Andreas Kling
2019-03-25GBoxLayout: Don't subtract margins from the available space twice.Andreas Kling
2019-03-25AK: HashMap::set() didn't save new values for existing keys.Andreas Kling
2019-03-25FileManager: Don't use 32x32 thumbnails for the table view.Andreas Kling
2019-03-25Kernel: Do timekeeping manually instead of asking the RTC all the time.Andreas Kling
2019-03-25LibGUI: Add GWidget::doubleclick_event().Andreas Kling
2019-03-25FileManager: Add toolbar buttons for switching the view mode.Andreas Kling
2019-03-24WindowServer+LibGUI: Implement automatic cursor tracking.Andreas Kling
2019-03-24WindowServer: Moving a window to front should always activate it.Andreas Kling
2019-03-24WindowServer: Factor out ongoing drag/resize from process_mouse_event().Andreas Kling
2019-03-24FileManager: Don't show "." and ".." in directory views.Andreas Kling
2019-03-24WindowServer: Reduce debug spam.Andreas Kling
2019-03-24LibGUI+FileManager: Add a GIcon class to support multi-size icons.Andreas Kling
2019-03-24QuickShow: Fill the window with white if the opened image has alpha.Andreas Kling
2019-03-24FileManager: Add a very naive thumbnail generation thread.Andreas Kling
2019-03-24Kernel: Don't hang the system on unrecoverable page fault.Andreas Kling
2019-03-24Kernel: Make block() and yield() automatically call Scheduler::yield().Andreas Kling
2019-03-24Kernel: Fix broken destruction order for Process/Thread.Andreas Kling
2019-03-24AK: Uh, okay, it seems like we need those 64-bit division helpers after all.Andreas Kling
2019-03-24AK: Don't compile the 64-bit division helpers in userland builds.Andreas Kling
2019-03-24LibC: Add ftruncate() stub.Andreas Kling
2019-03-24SharedGraphics: Oops, I was compiling puff() in SLOW mode for testing.Andreas Kling