summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2019-04-26sh: Remove debug spam during command launch.Andreas Kling
2019-04-26sh: Add a simple "export" command for setting environment variables.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-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-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-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-25Userland: Add a simple /bin/echo program.Andreas Kling
2019-04-23Put assertions behind a DEBUG flag to make it easy to build without them.Andreas Kling
2019-04-23touch: Newly created files were accidentally marked as FIFO's.Andreas Kling
2019-04-22Kernel: Add a systrace() syscall and implement /bin/strace using it.Andreas Kling
2019-04-21Include Makefile.common in all other Makefiles.Andreas Kling
2019-04-20Kernel: Remove "restorer" field from SignalActionData.Andreas Kling
2019-04-20Sprinkle use of AK::Vector in various places.Andreas Kling
2019-04-20Get rid of SERENITY macro since the compiler already defines __serenity__Andreas Kling
2019-04-15Userland: Add a /bin/basename program.Andreas Kling
2019-04-15Userspace: gitignore binariesNicolas Van Bossuyt
2019-04-14Userland: Oops, that merge broke the build, just needed a few tweaks. :^)Andreas Kling
2019-04-14Userland: Maybe find is overkillNicolas Van Bossuyt
2019-04-14Userland: making the makefile smarterNicolas Van Bossuyt
2019-04-14Uptime: making the ouput prettierVAN BOSSUYT Nicolas
2019-04-14Kernel: Add /proc/uptime file (number of seconds since boot.)Andreas Kling
2019-04-10Introduce LibCore and move GElapsedTimer => CElapsedTimer.Andreas Kling
2019-04-10LibGUI: Move frame painting from GFrame to StylePainter.Andreas Kling
2019-04-10LibGUI: Turn GTextBox into a wrapper around a single-line GTextEditor.Andreas Kling
2019-04-07Kernel+Userland: Add the rename() syscall along with a basic /bin/mv.Andreas Kling
2019-03-28LibGUI: Improve GFrame's look for Container shapes.Andreas Kling
2019-03-28Userland: Add a simple GFrame testing window to guitest2.Andreas Kling
2019-03-28LibGUI: Add a GPainter class that inherits from Painter.Andreas Kling
2019-03-27Kernel: Add Inode::truncate(size).Andreas Kling
2019-03-27LibC: Run constructors on process startup.Andreas Kling
2019-03-27LibC: Time-related POSIX compliance fixes.Andreas Kling
2019-03-24QuickShow: Fill the window with white if the opened image has alpha.Andreas Kling
2019-03-22LibGUI: Add a setting to make GLabel stretch its icon.Andreas Kling
2019-03-22LibGUI: Add a GProgressBar widget.Andreas Kling
2019-03-21WindowServer: Support PNG wallpapers.Andreas Kling
2019-03-21Userland: Turn off double buffering in QuickShow.Andreas Kling
2019-03-21PNGLoader: Support for color type 2 (RGB triplets) and multiple IDAT chunks.Andreas Kling
2019-03-21SharedGraphics: Implement a simple PNG decoder.Andreas Kling
2019-03-20Userland: Allow ping <hostname> :^)Andreas Kling
2019-03-20LibC: Implement gethostbyname() by talking to the DNSLookupServer.Andreas Kling
2019-03-19LibGUI: Implement nested event loops to support dialog boxes.Andreas Kling
2019-03-14Userland: Turn the tc test util into a simple dumb HTTP client.Andreas Kling
2019-03-14IPv4: Last burst of TCP hacking for today.Andreas Kling
2019-03-14IPv4: More work on the TCP implementation.Andreas Kling