summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2019-02-27Add chown() syscall and a simple /bin/chown program.Andreas Kling
2019-02-26More compat work. Rename libraries from LibFoo.a => libfoo.aAndreas Kling
2019-02-25More moving towards using signed types.Andreas Kling
2019-02-25Fix a bunch of compiler warnings. Not all, but a lot.Andreas Kling
2019-02-23LibC: Enough compat work to make binutils-2.32 build and run.Andreas Kling
2019-02-22Move over to building all of userspace with i686-pc-serenity-g++.Andreas Kling
2019-02-22Userland: Fix two compiler warnings.Andreas Kling
2019-02-22Switch over to building everything with i686-elf-g++.Andreas Kling
2019-02-22Userland: Fix extra unused printf() argument warning.Andreas Kling
2019-02-22Kernel: Pass process arguments directly on the stack.Andreas Kling
2019-02-21Userland: Minor tweaks in /bin/suAndreas Kling
2019-02-21Kernel+Userland: Implement setuid() and setgid() and add /bin/suAndreas Kling
2019-02-21Userland: Remove the /bin/sh greeting. It was cute but spammy.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-20Userland: /bin/sh shouldn't crash on EINTR.Andreas Kling
2019-02-17Prune compiler flags a bit. Let's go with -march=i686 for now.Andreas Kling
2019-02-17Kernel: Remove tracking of bitmap memory.Andreas Kling
2019-02-15Enable -Wimplicit-fallthrough.Andreas Kling
2019-02-14Userland: /bin/ls should display socket files nicely.Andreas Kling
2019-02-14WindowServer: Convert entire API to be message-based.Andreas Kling
2019-02-13Rename GUI_Event to GUI_ServerMessage.Andreas Kling
2019-02-11Port all apps to GApplication.Andreas Kling
2019-02-11WindowServer: More work on menus.Andreas Kling
2019-02-08Userland: Add a /bin/pape helper program to switch the desktop wallpaper.Andreas Kling
2019-02-08LibC: Implement enough missing stuff to get bash-5.0 running. :^)Andreas Kling
2019-02-08Don't use -mregparm=3 in userspace.Andreas Kling
2019-02-07Start working on a simple Launcher app.Andreas Kling
2019-02-07Kernel: Add basic process priority support.Andreas Kling
2019-02-07Kernel: When a lock is busy, donate remaining process ticks to lock holder.Andreas Kling
2019-02-06Clean up LDFLAGS a bit.Andreas Kling
2019-02-05Kernel: Reading from a slave PTY should give EOF if master PTY is closed.Andreas Kling
2019-02-05Handle WindowCloseRequest in FontEditor and /bin/guitest.Andreas Kling
2019-02-05Add a simple close button ("X") to windows.Andreas Kling
2019-02-05Clock: Turns the clock window from guitest2 into a separate program.Andreas Kling
2019-02-05Show the amount of memory in GraphicsBitmaps in /bin/top.Andreas Kling
2019-02-05Rename LizaBold to LizaRegular and LizaBlack to LizaBold.Andreas Kling
2019-02-04Kernel: Ignore SIGCHLD by default.Andreas Kling
2019-02-04Kernel: Process should send SIGCHLD to its parent when it dies.Andreas Kling
2019-02-04LibGUI: Use LightGray as the base UI color.Andreas Kling
2019-02-04Add a /bin/top program for process table monitoring.Andreas Kling
2019-02-03Add /dev/{stdin,stdout,stderr} as symlinks to /proc/self/fd/{0,1,2}Andreas Kling
2019-02-03Kernel: Oops, I mixed up st_dev and st_rdev in struct stat.Andreas Kling
2019-02-03LibC: Implement various things to get GNU bc building and running.Andreas Kling
2019-02-03guitest2: Stop showing the font test window by default.Andreas Kling
2019-02-03Userland: Make /bin/date pretty-print the date, too.Andreas Kling
2019-02-03Userland: Pretty-print modification times in /bin/ls.Andreas Kling
2019-02-02Start working on a simple graphical font editor.Andreas Kling
2019-02-02Add basic automatic dependency management to Makefiles.Andreas Kling
2019-01-31Userland: /bin/ls shouldn't display inode numbers by default.Andreas Kling