summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2019-07-23LibGUI: Exit the main event loop when the last window is deleted.Andreas Kling
2019-07-23LibDraw: Add LogStream operator<< overload for Color.Andreas Kling
2019-07-23CEventLoop: Avoid undefined evaluation order in register_timer().Andreas Kling
2019-07-22GDirectoryModel: Don't forget to drain the watch descriptor.Andreas Kling
2019-07-22GDirectoryModel: Automagically update on filesystem changes.Andreas Kling
2019-07-22Kernel: Add a mechanism for listening for changes to an inode.Andreas Kling
2019-07-21Kernel+LibC: Add a dbgputstr() syscall for sending strings to debug output.Andreas Kling
2019-07-21Libraries: Fix wrong paths to "Root" in the various install.sh scripts.Andreas Kling
2019-07-21Libraries: Remove unused "install" targets.Andreas Kling
2019-07-21Kernel+LibC: Add a dbgputch() syscall and use it for userspace dbgprintf().Andreas Kling
2019-07-21Userspace: Deal with select() returning EINTR on a signal interruptionRobin Burchell
2019-07-21CEventLoop: Skip over null events in the queue.Andreas Kling
2019-07-21Kernel+LibC: Add a dump_backtrace() syscall.Andreas Kling
2019-07-20GWidget: Add set_preferred_size(width, height) overload.Andreas Kling
2019-07-20GSplitter: Implement using the orientation-based geometry helpers.Andreas Kling
2019-07-20LibDraw: Add orientation-based size helpers to Size as well.Andreas Kling
2019-07-20GSlider: Add support for vertical sliders.Andreas Kling
2019-07-20LibDraw: Add orientation-based offset/size manipulation helpers.Andreas Kling
2019-07-20LibDraw: Move the Orientation enum to its own LibDraw header file.Andreas Kling
2019-07-20CEventLoop: Use Vector::prepend(Vector&&) to shuffle events to outer loop.Andreas Kling
2019-07-20CEventLoop: Remove some no-longer-used virtuals.Andreas Kling
2019-07-19Kernel: Only allow superuser to halt() the system (#342)Jesse
2019-07-19Kernel+Userland: Addd reboot syscall (#334)Jesse
2019-07-18StylePainter: Tweak surface highlight color to match the system warm gray.Andreas Kling
2019-07-18GFilePicker: OKCancel MsgBox for overwriting filesrhin123
2019-07-18AWavLoader: Share code between 24/16/8 bit readingRobin Burchell
2019-07-18AWavLoader: Support 24 bit wav files (mono & stereo)Robin Burchell
2019-07-18LibDraw: Introduce (formerly known as SharedGraphics.)Andreas Kling
2019-07-18SharedBuffer: Split the creation and share stepsRobin Burchell
2019-07-18ps: Port to using CProcessStatisticsReader and /proc/allRobin Burchell
2019-07-18CProcessStatisticsReader: Be consistent about terminology from the kernel downRobin Burchell
2019-07-17LibGUI: Revert GWindowServerConnection to being a singletonRobin Burchell
2019-07-17Rename new IPC headers & classesRobin Burchell
2019-07-17Port LibGUI to use CIPCClientSideConnectionRobin Burchell
2019-07-17Make AClientConnection genericRobin Burchell
2019-07-17Port WSClientConnection to CIPCServerSideClientRobin Burchell
2019-07-17Introduce CIPCServerSideClientRobin Burchell
2019-07-17LibC: Fix MALLOC_DEBUG to workRobin Burchell
2019-07-17AClientConnection: Fix double exitRobin Burchell
2019-07-17ABuffer: clamp -> clipRobin Burchell
2019-07-17ABuffer: move it and groove itRobin Burchell
2019-07-17Work on AudioServerRobin Burchell
2019-07-16LibGUI: Add input types to GMessageBox.Andreas Kling
2019-07-16CNotifier: Turn into a CObject and Use the event queue to deliver eventsRobin Burchell
2019-07-16LibCore: Add a way to mark a socket as blocking (or not)Robin Burchell
2019-07-16CNotifier: Provide a way to unregister a notifier temporarilyRobin Burchell
2019-07-16CSocket: Also call on_connected for local socket connectionsRobin Burchell
2019-07-16LibCore: Always call on_connected whether the connection was synchronous or notRobin Burchell
2019-07-16GFilePicker: Changed file_exists MessageBox to warningrhin123
2019-07-15TextEditorWidget: Added improved save feature.rhin123