summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-02-21Userland: Remove the /bin/sh greeting. It was cute but spammy.Andreas Kling
2019-02-21Kernel: sigpending() and sigprocmask() should validate memory writes.Andreas Kling
2019-02-21Kernel: Add file permission checks to link() syscall.Andreas Kling
2019-02-21Kernel: Add file permission checks to utime() syscall.Andreas Kling
2019-02-21Kernel: Process::cwd_inode() should return a reference.Andreas Kling
2019-02-21Kernel: Separate VFS stat() from open().Andreas Kling
2019-02-21Kernel: Start adding various file system permission checks.Andreas Kling
2019-02-21Add a simple /bin/df which gathers its info from /proc/df.Andreas Kling
2019-02-21Kernel: Add link() syscall to create hard links.Andreas Kling
2019-02-21WindowServer: Choose resizing direction based on where it's initiated.Andreas Kling
2019-02-21WindowServer: Oops, forgot to plumb through the base size for incresize.Andreas Kling
2019-02-21Add concept of size increments to windowing system.Andreas Kling
2019-02-20Userland: /bin/sh shouldn't crash on EINTR.Andreas Kling
2019-02-20Support resizing the Terminal app.Andreas Kling
2019-02-20FileManager: Fix glitch in the alternating directory item backgrounds.Andreas Kling
2019-02-20Rework the rendering model so that clients instantiate backing stores.Andreas Kling
2019-02-20Ext2FS: Remove the inode cache lock in favor of one big lock instead.Andreas Kling
2019-02-20Kernel: If someone else zero-fills a shared VMO page, don't freak out.Andreas Kling
2019-02-20Kernel: Don't remove from SharedBuffer map while iterating it.Andreas Kling
2019-02-20WindowServer: Don't spam clients with resize events.Andreas Kling
2019-02-20WindowServer: Support resizing windows.Andreas Kling
2019-02-20WindowServer: Minor style tweak.Andreas Kling
2019-02-20WindowServer: Remove some unused WSWindowManager members.Andreas Kling
2019-02-20Ext2FS: Lock a lot. Go way overkill with locking for now.Andreas Kling
2019-02-20Kernel: Reduce code duplication in exception handlers.Andreas Kling
2019-02-20LibGUI: Pack toolbar buttons closer together.Andreas Kling
2019-02-20LibGUI: Implement enter/leave events (with WindowServer support.)Andreas Kling
2019-02-20Launcher: Let's use CoolBar style buttons in here for now.Andreas Kling
2019-02-20LibGUI: Support different button styles.Andreas Kling
2019-02-20LibGUI: Improve GBoxLayout so it can better support GToolBar.Andreas Kling
2019-02-20LibGUI: Add a GToolBar class that can be populated with GActions.Andreas Kling
2019-02-19WindowServer: Display menus with 95% opacity by default.Andreas Kling
2019-02-19SharedGraphics: Minor tweaks in rect shattering code.Andreas Kling
2019-02-19WindowServer: Only invalidate the menubar rect when switching menubars.Andreas Kling
2019-02-19WindowServer: Correct invalidation rects for menu windows.Andreas Kling
2019-02-19WindowServer: Avoid overdraw by shattering dirty rects into unique shards.Andreas Kling
2019-02-19FileManager: Add an icon for socket files.Andreas Kling
2019-02-19Base: Remove an unused icon.Andreas Kling
2019-02-19Kernel: Fix wrong calculation of current Unix timestamp.Andreas Kling
2019-02-19WindowServer: Support windows with alpha channels. And per-WSWindow opacity.Andreas Kling
2019-02-17Kernel: Run the sync daemon once every second.Andreas Kling
2019-02-17Prune compiler flags a bit. Let's go with -march=i686 for now.Andreas Kling
2019-02-17WindowServer: Assume wallpaper images are 1024x768.Andreas Kling
2019-02-17Kernel: Shrink kmalloc() chunk size from 128 to 64.Andreas Kling
2019-02-17Add ability to switch video modes from the system menu.Andreas Kling
2019-02-17LibGUI: Tweak the scrollbar and button styles a bit.Andreas Kling
2019-02-17Spawn Launcher and FileManager on startup by default again.Andreas Kling
2019-02-17Kernel: Give each FileDescriptor a chance to co-open sockets.Andreas Kling
2019-02-17WindowServer: Close accepted sockets when the client has disconnected.Andreas Kling
2019-02-17Kernel: socket() with SOCK_CLOEXEC was setting the wrong fd flag.Andreas Kling