Age | Commit message (Expand) | Author |
2020-07-30 | LibCrypto: Add some checksum algorithms | stelar7 |
2020-07-30 | LibWeb: Complete the redirect URL before loading it | AnotherTest |
2020-07-30 | LibX86: FPU instructions never have a lock prefix | Nico Weber |
2020-07-30 | LibX86: Disassemble most remaining FPU instructions | Nico Weber |
2020-07-29 | LibCore: Rename puff.c => puff.cpp | Andreas Kling |
2020-07-28 | LibWeb: Make layout tree have non-const pointers to the DOM | Andreas Kling |
2020-07-28 | LibWeb: Oops, provide the correct WrapperType for UIEvent | Andreas Kling |
2020-07-28 | LibWeb: Add UIEvent class (base of MouseEvent, and others) | Andreas Kling |
2020-07-28 | LibWeb: Move the Page/Frame/EventHandler classes into Page/ | Andreas Kling |
2020-07-28 | LibWeb: Fix bad #include in CSSParser.cpp | Andreas Kling |
2020-07-28 | LibWeb: Move the CSS parser into CSS/Parser/ | Andreas Kling |
2020-07-28 | LibWeb: Move the HTML parser into HTML/Parser/ | Andreas Kling |
2020-07-28 | LibCrypto: Implement and test CTR decryption | Ben Wiederhake |
2020-07-28 | LibCrypto: Fix broken CTR mode, implement RFC 3686 Test Vectors | Ben Wiederhake |
2020-07-28 | LibCrypto: Document CTR weirdness in depth | Ben Wiederhake |
2020-07-28 | LibCrypto: Already using strong crypto | Ben Wiederhake |
2020-07-28 | LibJS: Soothe gcc about printf-%s on (non-)nullptr | Ben Wiederhake |
2020-07-28 | LibWeb: Move HTML classes into the Web::HTML namespace | Andreas Kling |
2020-07-28 | LibWeb: Move MouseEvent into the UIEvents namespace | Andreas Kling |
2020-07-28 | LibX86: Disassemble most FPU instructions starting with D9 | Nico Weber |
2020-07-28 | LibCore: add get_password(). | Peter Elliott |
2020-07-28 | LibC: Add passwords to putpwent | Peter Elliott |
2020-07-28 | LibCrypt: Add LibCrypt, crypt, and crypt_r | Peter Elliott |
2020-07-28 | LibGUI: Enable icons for SubMenus | Ben Wiederhake |
2020-07-28 | LibGUI: Refactor icon realization in Menu | Ben Wiederhake |
2020-07-28 | LibGUI: Set correct default value during menu destruction | Ben Wiederhake |
2020-07-28 | DevTools+LibGUI: Make ProcessChooser a general Dialog in LibGUI | thankyouverycool |
2020-07-28 | LibC: Fix strtol() not setting endptr correctly for "0" | Andreas Kling |
2020-07-28 | LibC: Move getpagesize() out-of-line | Andreas Kling |
2020-07-27 | LibCrypto: Change the signatures of RSA::import_[XXX]_key to use Span. | asynts |
2020-07-27 | LibCrypto: Change the signature of decode_pem to use Span. | asynts |
2020-07-27 | LibCrypto: Change the signature of RSA::parse_rsa_key to use Span. | asynts |
2020-07-27 | LibCore: Change the signature of Socket::send() to use Span. | asynts |
2020-07-27 | LibCrypto: Change [XXX]BigInteger::export_data() to use Span. | asynts |
2020-07-27 | AK: Change the signature of AK::encode_base64() to use Span. | asynts |
2020-07-27 | LibCrypto: This method wrote to a const pointer. | asynts |
2020-07-27 | LibCore+LibWeb: Move guess-mimetype-based-on-filename logic to LibCore | Andreas Kling |
2020-07-27 | LibWeb: Add a whole bunch of HTML DOM bindings | Luke |
2020-07-27 | Kernel+LibC: Add sys$set_process_name() for changing the process name | Andreas Kling |
2020-07-27 | LibC: Make the getpid() cache process global (instead of thread-local) | Andreas Kling |
2020-07-27 | LibGfx: Fix dumb typo in PNG decoder | Andreas Kling |
2020-07-27 | LibGfx: Simplify some excessive use of pow() in scanline unfiltering | Andreas Kling |
2020-07-27 | AK+LibC: Always use REP MOVSB/STOSB for memcpy()/memset() | Andreas Kling |
2020-07-27 | CppLexer: Support raw string literals | Nico Weber |
2020-07-27 | CppLexer: Support L, u, u8, U prefixes on string and char literals | Nico Weber |
2020-07-27 | CppLexer: Correctly highlight hex escapes in string and char literals | Nico Weber |
2020-07-27 | CppLexer: Support \U escapes in addition to \u escapes | Nico Weber |
2020-07-27 | LibGfx: Templatize Point, Size, and Rect | Matthew Olsson |
2020-07-27 | CppLexer: Add token types for "::", "::*", ".*", "->*" | Nico Weber |
2020-07-27 | CppLexer: Add token types for ".", "->" | Nico Weber |