summaryrefslogtreecommitdiff
path: root/Libraries/LibCore
AgeCommit message (Expand)Author
2020-03-01AK: Remove unnecessary casts to size_t, after Vector changesAndreas Kling
2020-02-26LibCore: Allow ConfigFile::read_num_entry to handle negative numbersJesse Buhagiar
2020-02-26DateTime: Fix a typohowar6hill
2020-02-25AK: Make Vector use size_t for its size and capacityAndreas Kling
2020-02-23LibCore: Add Core::Object::add<T> helper for creating child objectsAndreas Kling
2020-02-22LibCore: Log a more helpful message when Socket::connect() failsAndreas Kling
2020-02-22LibCore: Fix wrong return value in Core::Socket::destination_address()Andreas Kling
2020-02-20AK: Use size_t for ByteBuffer sizesAndreas Kling
2020-02-16LibCore: Add DirIterator::next_full_path()Shannon Booth
2020-02-15LibCore: Add SkipParentAndBaseDir flag in DirIteratorShannon Booth
2020-02-15LibCore: Simplify some of DirIterator's codeShannon Booth
2020-02-15LibCore: Reduce header dependencies of EventLoopAndreas Kling
2020-02-15LibCore: Move LogStream::operator<< overloads into cpp filesAndreas Kling
2020-02-15LibCore: Remove a bunch of unnecessary forward declarationsAndreas Kling
2020-02-15LibGfx: Replace manual forward declarations with <LibGfx/Forward.h>Andreas Kling
2020-02-14LibCore: Add a forward declaration headerAndreas Kling
2020-02-14LibCore: Add Core::MimeData classAndreas Kling
2020-02-12LibCore: Add "static bool Core::File::exists(filename)"Andreas Kling
2020-02-11LibCore: Add DateTime::from_timestamp(time_t)Andreas Kling
2020-02-11LibCore: Add a basic Core::DateTime classAndreas Kling
2020-02-10LibCore: TCP and UDP servers should parent Notifiers to themselvesAndreas Kling
2020-02-10AK: Remove bitrotted Traits::dump() mechanismAndreas Kling
2020-02-09LibCore: Add File::is_directory() helpersAndreas Kling
2020-02-09LibCore: Allow constructing a Core::HttpRequest from a raw HTTP requestAndreas Kling
2020-02-06LibCore: Merge the CSyscallUtils namespace into CoreAndreas Kling
2020-02-06LibCore: Remove leading C from filenamesAndreas Kling
2020-02-06LibGfx: Rename from LibDraw :^)Andreas Kling
2020-02-05LibCore: CEventLoop: If timeval_sub makes tv_sec negative, use 0joshua stein
2020-02-05LibCore: Fix building with clangjoshua stein
2020-02-02LibCore: Put all classes in the Core namespace and remove the leading CAndreas Kling
2020-02-02LibGUI: Make GAction scoped to its CObject parent (widget or window)Andreas Kling
2020-02-02LibCore: is<CObject>(object) should not default to trueAndreas Kling
2020-02-01LibCore: Fix CArgsParser build on my host machineAndreas Kling
2020-01-28LibCore: Rewrite CArgsParserSergey Bugaev
2020-01-26LibCore: Add UDP socket and server classesAndreas Kling
2020-01-26LibCore: CSocket::set_blocking() was backwardsAndreas Kling
2020-01-25Meta: Remove some copyright headers added in errorAndreas Kling
2020-01-23LibCore: Remove redundant check in CObject::dispatch_event()Andreas Kling
2020-01-21LibCore: Fix broken "stay_within" mechanism in event dispatchAndreas Kling
2020-01-21SystemMonitor: Show process unveil() state as "Veil"Andreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17LibCore: Make CIODevice::read_all() actually read all dataSergey Bugaev
2020-01-13LibCore: Fix segfault in CArgsParser (#1072)DrewStratford
2020-01-11SystemMonitor+LibCore: Show process pledges in SystemMonitor :^)Andreas Kling
2020-01-07LibCore: Fix a typo in CConfigFile.hConrad Pankoff
2020-01-05LibCore: Oops, we were forgetting to destroy disconnected RPC clientsAndreas Kling
2020-01-05AK+LibCore: Add an IDAllocator and use to allocate timer idsShannon Booth
2020-01-03LibCore: Fix crash on RPC client disconnectAndreas Kling
2020-01-03LibCore: Stop making the RPC sockets go=rwAndreas Kling
2020-01-02LibCore: CSocketAddress: pull in netinet/in.hjoshua stein