Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-14 | applets: Append qt_ prefix to Qt frontend applets | Morph | |
2021-04-28 | applets/web: Fix a use-after-free when passing in the URL string | Morph | |
The URL string was being deleted before being used, leading to a use-after-free occurring when it is used afterwards. Fix this by taking the string by const ref to extend its lifetime, ensuring it doesn't get deleted before use. | |||
2020-12-18 | applets/web: Implement the online web browser applet | Morph | |
2020-12-18 | applets/web: Fix keyboard to emulated controller input | Morph | |
2020-12-18 | main, applets/web: Re-add progress dialog for RomFS extraction | Morph | |
2020-12-18 | applets/web: Implement the Qt web browser applet frontend | Morph | |
2020-12-18 | applets: Remove the previous web browser applet implementation | Morph | |
2020-12-05 | applets: Resolve variable shadowing | Morph | |
2019-06-24 | web_browser: Rename OpenPage to OpenPageLocal | Zach Hilman | |
This is more representative of what actually occurs, as web does support remote URLs which wouldn't need a romfs callback. This paves for easy future support of this with a call like 'OpenPageRemote' or similar. | |||
2019-01-17 | core/frontend/applets/web_browser: Make OpenPage() non-const | Lioncash | |
This is a function that definitely doesn't always have a non-modifying behavior across all implementations, so this should be made non-const. This gets rid of the need to mark data members as mutable to work around the fact mutating data members needs to occur. | |||
2019-01-17 | yuzu/web_browser: Make slot functions private | Lioncash | |
These currently aren't used by anything other than the QtWebBrowser class itself, and can be made private. | |||
2018-12-28 | web_browser: Add bounds checking to applet interface | Zach Hilman | |
2018-12-28 | qt: Implement Qt frontend to web browser | Zach Hilman | |
Using a custom reimplementation of QWebEngineView and an injector script. |