summaryrefslogtreecommitdiff
path: root/Base
AgeCommit message (Collapse)Author
2020-05-02LibTLS: Make enough stuff work to have a demo runAnotherTest
...maybe, sometimes :^)
2020-05-02Fire: Add app-fire.png 16x16 iconBrendan Coles
2020-05-02Cube: Add app-cube.png 16x16 iconBrendan Coles
2020-05-02Base: Tweak MessageBox icons a tiny bitAndreas Kling
2020-05-02LibGfx: Decode paletted and grayscale images with 1/2/4 bit depthLepkoQQ
When dealing with png data that has less than 8 bits per pixel, round up to the next byte when allocating per row buffers and streamers. This fixes decoding odd sized PNGs with less than 8 bits per pixel. Also added a test page with some odd sized palleted PNGs.
2020-05-02Base: Update js(1) manpageLinus Groh
Syntax highlighting is now enabled by default!
2020-05-01Base: Adjust filetype icons to be right-aligned for consistencyAndreas Kling
Established convention is for the flavor icon to go on the right side.
2020-05-01Base: Icons for INI, Object and Library file typesHüseyin ASLITÜRK
2020-04-30WindowServer: Add action icons to the window menusAndreas Kling
2020-04-30Base: Add back the OG grid wallpaper from back in the day, now as a PNGAndreas Kling
2020-04-29DisplaySettings: Rename from DisplayPropertiesAndreas Kling
2020-04-29Base: Tweak default desktop background color slightlyAndreas Kling
2020-04-28mkdir: Add -p option to create parent directoriesLinus Groh
2020-04-28mkdir: Use ArgParser, support creating multiple directoriesLinus Groh
2020-04-26LibWeb: Support loading data: URLs transparently via ResourceLoaderAndreas Kling
This is pretty darn cool! :^)
2020-04-26Base: 32x32 icons for cplusplus and header file typesHüseyin ASLITÜRK
2020-04-26Base+Browser: Add an icon for the serenity Browser and make it use itAndres Vieira
Browser was using the filetype-html icon instead of a dedicated one, so we now have the globe from that icon reimagined and in good Buggie company :^)
2020-04-26Base: Add test page for decoding different basic png formats.LepkoQQ
2020-04-26Base: Improve cursor arrow to feel more symetricalLepkoQQ
2020-04-26Base+LibGUI: Add icon for Python filesLinus Groh
2020-04-26Emoji: Rename U+1F600.png to U+1F41E.png (ladybug)Linus Groh
The image for U+1F600 "GRINNING FACE" shows a ladybug, but the codepoint of that emoji is actually U+1F41E "LADY BEETLE" :^)
2020-04-25HackStudio: Toolbar icon overhaulAndreas Kling
2020-04-25HackStudio: Add cpp debuggerItamar
The HackStudio debugger integrates with LibDebug to provide source-level debugging. The user can set breakpoints at various positions in the source code, and then run the program in debug mode. When the program is stopped, the current execution position is displayed, and the user can insert/remove breakpoints, continue execution, or single step the program.
2020-04-25HackStudio: GUI support for setting breakpoints on source code linesItamar
2020-04-25Browser: Add Browser.ini configuration fileBrendan Coles
The Browser can now load a home page URL from the user's Browser.ini configuration file rather than using a hard-coded URL.
2020-04-24Base: New "cut" action iconAndreas Kling
2020-04-24Browser: Add icons for the "new tab" and "close tab" actionsAndreas Kling
2020-04-24Base: New "open" and "save" action iconsAndreas Kling
2020-04-24Base: Tweak Calendar app iconAndreas Kling
2020-04-24Base: Tweak ladybug iconAndreas Kling
2020-04-23LibJS: Implement computed properties in object expressionsLinus Groh
2020-04-23Base: Nudge Redmond theme closer to the Windows 95 colors :^)Andreas Kling
2020-04-23Base: Tweak filetype-javascript icon and add 32x32 versionAndreas Kling
2020-04-23Base: Tweak new/open/save icons (make them a bit smaller)Andreas Kling
2020-04-23Applications: Remove ChanViewer appAndreas Kling
The HTTP JSON API this relied on is no longer available via HTTP and I would rather make the website work in Browser anyway. :^)
2020-04-23Base: Tweak icons with arrows in them (to be more pointy)Andreas Kling
2020-04-23Base: Tweak go-home iconAndreas Kling
2020-04-23Base: Close head tag in canvas-path.html and give the document a titleEmanuele Torre
2020-04-22TextEditor: Add "Find Previous" 16x16 iconBrendan Coles
2020-04-22Base: Add missing Syntax color settings for Joi themeBrendan Coles
2020-04-22Base: Add Sunshine themeBrendan Coles
2020-04-21Base: Add QuickShow application to system menuHüseyin ASLITÜRK
2020-04-21TextEditor: Add "Find Next" 16x16 iconBrendan Coles
2020-04-20LibGUI: Add Select all action to TextEditorangel
Previously, TextEditor processed the Select all command directly on the keydown event handler. For this reason, WindowManager would not process it as an action for the focused control and an action with the same keyboard shortcut from the parent could override the TextEditor's one even when it is focused. For instance, when pressing Ctrl+A on the FileManager's path bar, all files were selected instead, which is not the expected behavior. Now the Select all command is an actual action on TextEditor, so that WindowManager can process it correctly before any other actions. I also added an icon for it!
2020-04-20Solitaire: Sharpen 16x16 iconAndreas Kling
2020-04-20Solitaire: Use a pre-scaled buggie image for the back of cardsAndreas Kling
Instead of scaling on the fly, which is not super aesthetic yet.
2020-04-19Base: Add Demo applications to system menuLinus Groh
2020-04-19Base: Update js(1) manpageLinus Groh
- Include all options - Update example REPL session to match current output - Mention REPL's help() - Add test mode section
2020-04-19Base: Document open(1)Sergey Bugaev
2020-04-19Base: Update Redmond theme window borders to appear less flatBrendan Coles