| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-05-19 | Merge pull request #2468 from lioncash/deduction | Hexagon12 | |
| yuzu: Remove explicit types from locks where applicable | |||
| 2019-05-19 | yuzu/applets/profile_select: Mark header string as translatable | Lioncash | |
| This is a user-facing string, so it should be marked as translatable. | |||
| 2019-05-14 | yuzu: Remove explicit types from locks where applicable | Lioncash | |
| With C++17's deduction guides, the type doesn't need to be explicitly specified within locking primitives anymore. | |||
| 2019-04-17 | web_browser: Make OpenPage non-const | Zach Hilman | |
| 2019-04-17 | qt: Add dialog implementation of Error applet | Zach Hilman | |
| 2019-04-17 | web_browser: Make OpenPage const | Zach Hilman | |
| 2019-04-09 | Merge pull request #2132 from FearlessTobi/port-4437 | bunnei | |
| Port citra-emu/citra#4437: "citra-qt: Make hotkeys configurable via the GUI (Attempt 2)" | |||
| 2019-04-03 | yuzu/applets/software_keyboard: Use QDialogButtonBox standard buttons ↵ | Lioncash | |
| instead of custom buttons Like the previous change, this allows Qt to handle proper translations of the UI buttons, rather than us needing to handle it. | |||
| 2019-04-03 | yuzu/applets/profile_select: Use QDialogButtonBox standard buttons instead ↵ | Lioncash | |
| of custom buttons Makes for shorter code, while also not requiring the buttons to be directly translated, they'll be handled by Qt itself. | |||
| 2019-04-01 | general: Use deducation guides for std::lock_guard and std::unique_lock | Lioncash | |
| Since C++17, the introduction of deduction guides for locking facilities means that we no longer need to hardcode the mutex type into the locks themselves, making it easier to switch mutex types, should it ever be necessary in the future. | |||
| 2019-03-16 | yuzu: Make hotkeys configurable via the GUI | Adityarup Laha | |
| * Adds a new Hotkeys tab in the Controls group. * Double-click a Hotkey to rebind it. | |||
| 2019-03-04 | web_browser: Add shortcut to Enter key to exit applet | Zach Hilman | |
| Addresses issues where a user in fullscreen could not exit some web applets without leaving fullscreen. | |||
| 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: std::move std::function instances in OpenPage() | Lioncash | |
| Avoids the need to potentially reallocate the contained callbacks. | |||
| 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. | |||
| 2018-12-03 | applets: Correct event ResetTypes from OneShot to Sticky | Zach Hilman | |
| Fixes bugs relating to signalling in software keyboard. | |||
| 2018-12-03 | qt: Implement GUI dialog frontend for ProfileSelector | Zach Hilman | |
| Presents profiles in a list, similar to switch. | |||
| 2018-11-20 | yuzu/applets/software_keyboard: Override accept() and reject() instead of ↵ | Lioncash | |
| providing own differently named member functions Uses Qt's built-in interface instead of rolling our own separate one on top of it. This also fixes a bug in reject() where we were calling accept() instead of reject(). | |||
| 2018-11-20 | yuzu/applets/software_keyboard: std::move std::function instances where ↵ | Lioncash | |
| applicable std::function instances can potentially allocate. std::moveing them prevents an avoidable allocation in that case. | |||
| 2018-11-20 | yuzu/applets/software_keyboard: Make slots private functions | Lioncash | |
| These aren't required to be public. | |||
| 2018-11-18 | software_keyboard: Add max and current length display to dialog | Zach Hilman | |
| 2018-11-18 | applet: Add operation completed callback | Zach Hilman | |
| 2018-11-18 | software_keyboard: Make GetText asynchronous | Zach Hilman | |
| a | |||
| 2018-11-18 | am: Allow applets to push multiple and different channels of data | Zach Hilman | |
| 2018-11-18 | am: Deglobalize software keyboard applet | Zach Hilman | |
| 2018-11-18 | qt/main: Register Qt Software Keyboard frontend with AM | Zach Hilman | |
| Allows using Qt provider over default. | |||
| 2018-11-18 | qt/applets: Provide Qt frontend implementation of software keyboard | Zach Hilman | |
| Implements all of the features of the keyboard, including length, default text, character validation, and UTF-16 character support. | |||
