summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2019-08-03AudioServer: Port to the new generated IPC mechanismAndreas Kling
2019-08-03IPCCompiler: More work towards AudioServer bringupAndreas Kling
2019-08-03IPCCompiler: Generate getters for message ID's and message namesAndreas Kling
2019-08-03LibIPC: Start fleshing out a separate IPC libraryAndreas Kling
2019-08-03GWidget: Implement set_backcolor() and set_forecolor()Andreas Kling
2019-08-03GVariant: Try to do color string parsing in GVariant::to_color()Andreas Kling
2019-08-03LibDraw: Add Color::from_string(StringView)Andreas Kling
2019-08-03LibCore: Make get_current_user_home_path() return String & close passwdAndreas Kling
2019-08-02LibGUI: Allow setting window icon before show().rhin123
2019-08-02LibAudio: Explicitly ignore IPC postprocessing requestsAndreas Kling
2019-08-02Kernel: mount system call (#396)Jesse
2019-08-02CEventLoop: Devirtualize take_pending_events_from(CEventLoop)Andreas Kling
2019-08-01LibHTML: Make some use of Vector::empend().Andreas Kling
2019-08-01GDirectoryModel: Fix redundant identical comparison.Andreas Kling
2019-08-01LibCore: Initialize pid/id variables in CoreIPC{Client,Server}Andreas Kling
2019-08-01Painter: Scaling RGBA32 bitmaps treated the source as alpha-less RGB32Andreas Kling
2019-08-01Kernel+LibC: A lot of the signal handling code was off-by-one.Andreas Kling
2019-08-01LibC: In fgetc(), fread() will never return < 0.Andreas Kling
2019-08-01CEventLoop: Add a missing initializer to EventLoopTimer.Andreas Kling
2019-08-01CIODevice: printf() thought it was calling ::write() but it was write()Andreas Kling
2019-07-31GDirectoryModel: Tweak default width of permission bits columnAndreas Kling
2019-07-31GTableView: Elide cell content so it doesn't overflow the cell rectAndreas Kling
2019-07-31LibGUI: Simplify GTreeView ancestor traversalConrad Pankoff
2019-07-31LibGUI: Reify intermediate nodes during index traversalConrad Pankoff
2019-07-31GDirectoryModel: Add "modification time" column.Andreas Kling
2019-07-31GVariant: Add Type::UnsignedInt.Andreas Kling
2019-07-31GDirectoryModel: Shrink the Permissions and Inode columns a little bit.Andreas Kling
2019-07-30LibCore: Rename CFileStreamReader => CIODeviceStreamReader.Andreas Kling
2019-07-30GFilePicker: Edit file name on opening windowrhin123
2019-07-29AudioServer: Begin work on a new IPC API style.Andreas Kling
2019-07-29TextEditor: Include extension during SaveAsrhin123
2019-07-29AudioServer: Add a "main mix volume" and a simple program to get/set itAndreas Kling
2019-07-29Kernel+AK: Remove AK/StdLibExtras.cpp, moving kernel stuff to Kernel/.Andreas Kling
2019-07-29Kernel+ProcessManager: Let processes have an icon and show it in the table.Andreas Kling
2019-07-28LibAudio: Silence some debug spam in the WAV loader.Andreas Kling
2019-07-28LibAudio+aplay: Make the aplay output look a little funner.Andreas Kling
2019-07-28LibAudio: WAV: Don't emit the very last sample in each decoded batch.Andreas Kling
2019-07-28AudioServer+LibAudio: Make mixing queue-based instead of buffer-based.Andreas Kling
2019-07-28GFilePicker: Quality of life improvements (#370)Rhin
2019-07-28AudioServer: Add a buffer queue so we can buffer some sound.Andreas Kling
2019-07-28GTabWidget: Allow putting the tabs on the bottom of the widget.Andreas Kling
2019-07-28WindowServer+LibGUI: Remove old "icon path" way of doing things.Andreas Kling
2019-07-28WindowServer+LibGUI: Pass window icons as shared buffers rather than paths.Andreas Kling
2019-07-27LibAudio: Remove an unnecessary copy of sample buffers before sending them.Andreas Kling
2019-07-27TextEditor: Let's have line numbers starting at 1.Andreas Kling
2019-07-27LibAudio: Allow WAV files up to 1GB.Andreas Kling
2019-07-27LibAudio: WAV reading should stop when we run out of file. :^)Andreas Kling
2019-07-27Audio: Make ABuffer sit on top of a SharedBuffer.Andreas Kling
2019-07-27Audio: Make basic streaming WAV playback work.Andreas Kling
2019-07-27LibCore: Add CFileStreamReader, a simple streaming CFile reader.Andreas Kling