summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore
AgeCommit message (Expand)Author
2021-11-22LibCore: Let ArgsParser::parse() accept Main::ArgumentsMustafa Quraish
2021-11-20LibCore: Fix `LocalSocket.cpp` build on FreeBSDqiu-x
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
2021-11-17AK: Make JSON parser return ErrorOr<JsonValue> (instead of Optional)Andreas Kling
2021-11-16LibCore: Don't include crypt.h in Account.cpp on FreeBSDBenjamin S Osenbach
2021-11-11Everywhere: Pass AK::ReadonlyBytes by valueAndreas Kling
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-11-10Everywhere: Move shared library checks into a common functionTim Schumacher
2021-11-08LibCore: Replace Result<T, E> use with ErrorOr<T> in Core::FileWatcherAndreas Kling
2021-11-08LibCore: Replace Result<T, E> use with ErrorOr<T> in Core::AccountAndreas Kling
2021-11-08LibCore: Use ErrorOr<T> for Core::get_password()Andreas Kling
2021-11-08LibCore: Use ErrorOr<T> for Core::File::open()Andreas Kling
2021-11-08LibCore: Use ErrorOr<T> for Core::File::size()Andreas Kling
2021-11-08LibCore: Use ErrorOr<T> for Core::File::copy_file()Andreas Kling
2021-11-08LibCore: Use ErrorOr<T> for Core::File::remove()Andreas Kling
2021-11-08LibCore: Use ErrorOr<T> for Core::File::link_file()Andreas Kling
2021-11-08AK: Bring AK::Error into the global namespaceAndreas Kling
2021-11-08LibCore: Use ErrorOr<T> in Core::AnonymousBufferAndreas Kling
2021-11-04Base+LibCore: Store booleans in human-readable formatBen Wiederhake
2021-11-04LibCore: Trim trailing whitespaces from ConfigFile valuesTor-björn Claesson
2021-11-02Libraries: Fix visibility of Object-derivative constructorsBen Wiederhake
2021-11-02AK+WindowServer: Remove did_construct() framework used only onceBen Wiederhake
2021-11-02LibCore: Add REGISTER_ABSTRACT_CORE_OBJECTthislooksfun
2021-11-02LibCore+LibGUI: Make ObjectClassRegistration::construct() nullablethislooksfun
2021-11-01LibCore: Make ArgsParser '--help' description more generalBen Wiederhake
2021-11-01LibCore: Enable emitting markdown from ArgsParserBen Wiederhake
2021-10-30LibCore: Fix off-by-one in DateTime::{create,set_time} day default argLinus Groh
2021-10-28LibCore: Add ElapsedTimer::reset()Jelle Raaijmakers
2021-10-25LibCore: Add File::size()Leandro Pereira
2021-10-24LibCore: Pop the main Core::EventLoop off the stack when destroyedAndreas Kling
2021-10-23LibCore: Add ignored options to ArgsParserJean-Baptiste Boric
2021-10-19LibCore: Avoid buffer overrun when invoking crypt() with a SecretStringTimothy Flynn
2021-10-19LibCore: Change Account::set_password to take a SecretStringTimothy Flynn
2021-10-09LibCore: Display the correct allocation size in the debug lineKarol Kosek
2021-10-08Libraries: Fix -Wunreachable-code warnings from clangNico Weber
2021-10-04LibCore: Add a Socket::set_idle() API that turns the notifiers on/offAli Mohammad Pur
2021-10-04LibCore: Allow reads smaller than the buffered data size in IODeviceAli Mohammad Pur
2021-09-30LibHTTP: Respect the 'Connection: close' header on keep-alive jobsAli Mohammad Pur
2021-09-27LibCore: Buffer small byte readsKarol Kosek
2021-09-27LibCore: Add optional custom read size argument in populate_read_bufferKarol Kosek
2021-09-25LibCore: Add Core::EventLoop::spin_until(Function<bool()>)Andreas Kling
2021-09-19LibCore: Don't double-check select() in Socket's read notifier callbackAli Mohammad Pur
2021-09-19LibCore+RequestServer: Ignore callbacks for cancelled network jobsAli Mohammad Pur
2021-09-19RequestServer+LibHTTP+LibGemini: Cache connections to the same hostAli Mohammad Pur
2021-09-13Everywhere: Use my fancy new serenityos.org email :^)Mustafa Quraish
2021-09-13LibCore: Switch to AK::secure_zero instead of platform specific APIsBrian Gianforcaro
2021-09-12LibCore: Add factory to create and start a new ElapsedTimerBrian Gianforcaro
2021-09-12Core/SecretString: Use `memset_s` instead of `explicit_bzero` on MacOSMustafa Quraish
2021-09-12AK+LibCore: Standardize on AK_OS_MACOS instead of __APPLE__Brian Gianforcaro
2021-09-12LibCore: Enable elapsed time as AK::Time on a ElapsedTimerBrian Gianforcaro