Age | Commit message (Expand) | Author |
2019-11-18 | LibHTML: Start building a simple code generator for CSS properties | Andreas Kling |
2019-11-18 | Kernel+LibPthread: pthread_create handles pthread_attr_t | Andrew Kaster |
2019-11-18 | LibC: Add O_ACCMODE to fcntl.h | Dan MacDonald |
2019-11-17 | LibC: jmp_buf and sigjmp_buf should be distinct types | Andreas Kling |
2019-11-17 | LibC: isatty() should return 1 for success, 0 for error | Andreas Kling |
2019-11-17 | Kernel+LibC: Remove the isatty() syscall | Andreas Kling |
2019-11-17 | Kernel+LibPthread+LibC: Create secondary thread stacks in userspace | Andreas Kling |
2019-11-17 | LibDraw: Add Rect::from_two_points(Point, Point) | Andreas Kling |
2019-11-17 | LibC: Oopsie, add the missing semicolons to __bswap32() and __bswap64() | Andreas Kling |
2019-11-17 | LibC: Add back __bswap{16,32,64}() to endian.h | Andreas Kling |
2019-11-17 | LibC: Unbreak endian.h | Andreas Kling |
2019-11-17 | Kernel: Implement some basic stack pointer validation | Andreas Kling |
2019-11-16 | LibDraw: Add support for colors with alpha in Painter::fill_rect() | Andreas Kling |
2019-11-16 | LibC: Move realpath() to <stdlib.h> | Andreas Kling |
2019-11-16 | LibC: Move the creat() and open() families to <fcntl.h> | Andreas Kling |
2019-11-16 | LibC: use GCC __builtin_bswap{16,32,64} to provide __bswap functions | Ørjan Malde |
2019-11-16 | LibC: fix arpa/inet.h guards | Ørjan Malde |
2019-11-16 | LibC: properly populate endian.h | Ørjan Malde |
2019-11-16 | LibC: Implemented getc_unlocked, stubbed flockfile | Brandon Scott |
2019-11-16 | LibC: Implemented mkstemp in stdlib | Brandon Scott |
2019-11-16 | LibC: Added missing signal flags | Brandon Scott |
2019-11-16 | LibC: Added execlp method and new pathconf setting | Brandon Scott |
2019-11-16 | LibC: Added some missing directory type constants | Brandon Scott |
2019-11-16 | LibC: Added additional fields to lconv struct | Brandon Scott |
2019-11-16 | LibPthread: Implement a basic first pthread mutex | Andreas Kling |
2019-11-15 | Terminal: Add selecting whole line on triple click | Rok Povsic |
2019-11-15 | GTextEditor: Allow GTextDocumentSpans to be "skippable" | Andreas Kling |
2019-11-15 | GTextEditor: Allow moving the cursor span-wise with Ctrl+Left/Right | Andreas Kling |
2019-11-15 | GTextEditor: Alt+Shift+S alphabetically sorts selected lines | ctfloyd |
2019-11-14 | Kernel+LibPthread: Implement pthread_join() | Andreas Kling |
2019-11-14 | LibC: open/openat: Make sure path is not a nullptr before dereferencing | Till Mayer |
2019-11-13 | LibPthread: Start working on a POSIX threading library | Andreas Kling |
2019-11-11 | GTreeView: Make it possible to multi-select with the Ctrl modifier | Andreas Kling |
2019-11-11 | LibGUI: Add "Vector<GWidget*> GWidget::child_widgets()" | Andreas Kling |
2019-11-11 | GTreeView: Always repaint in response to did_update_model() | Andreas Kling |
2019-11-11 | LibC, LibM: Add functions needed to compile python3 | Emanuel Sprung |
2019-11-11 | Launcher: Remove the Launcher app, and all hacks in support of it | Andreas Kling |
2019-11-11 | LibCore: Add CConfigFile::open() for opening an arbitrary INI file | Andreas Kling |
2019-11-10 | GToolBar: Make buttons exclusive if action belongs to exclusive group | Andreas Kling |
2019-11-10 | LibC: Add strtok_r() and make strtok() a wrapper around it | Andreas Kling |
2019-11-10 | WindowServer: Don't de-maximize windows immediately (#756) | masi456 |
2019-11-10 | Kernel+LibC: Implement the openat() syscall | Andreas Kling |
2019-11-10 | LibC: Implement a very naive mbtowc() | Andreas Kling |
2019-11-10 | LibC: iconv.h needs stddef.h for size_t | Andreas Kling |
2019-11-10 | Terminal: Clip out the scrollbar when painting the terminal buffer | Andreas Kling |
2019-11-10 | GWidget: Fix accidentally ignored set_relative_rect() with empty size | Andreas Kling |
2019-11-10 | LibGUI: Add a simple GWidget class registry/factory | Andreas Kling |
2019-11-10 | LibCore: Rename class Gzip -> CGZip | Marcel Schneider |
2019-11-10 | LibCore: Add Content-Encoding handling to CHttpJob | Marcel Schneider |
2019-11-10 | LibCore: Add a gzip implementation | Marcel Schneider |