summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/CMakeLists.txt
AgeCommit message (Collapse)Author
2021-11-22Browser: Port to LibMain :^)Andreas Kling
2021-09-06Browser: Delete unused BrowserConsoleClient.{h,cpp}Sam Atkins
Since the Browser now only runs in multi-process mode, we have no use for this single-process ConsoleClient. :^)
2021-08-26Browser: Use LibConfig instead of Core::ConfigFileAndreas Kling
2021-06-17Everywhere: Add component declarationsGunnar Beutner
This adds component declarations so that users can select to not build certain parts of the OS.
2021-05-17Browser: Move main browser window logic into a BrowserWindow classAndreas Kling
Having so much the logic and lambdas in main() was getting unwieldy. Moving it into a class simplifies this, and also opens up a path towards supporting "Open in New Window" :^)
2021-04-11Browser: Initial cookie storage implementationTimothy Flynn
This adds storage for cookies that maye be set via 'document.cookie' in JavaScript or the Set-Cookie HTTP header. For now, it parses only the name-value pair from a set-cookie line, but does not parse optional attributes. Currently, storage is ephemeral and only survives for the lifetime of the Browser instance.
2021-03-26Browser: Add right-click context menu item for editing bookmarksTimothy Flynn
This allows users to right-click on a bookmark button to open a small dialog for editing bookmark titles and URLs.
2021-01-12Applications: Move to Userland/Applications/Andreas Kling