| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-06-24 | general_frontend: Add documentation for parental controls and ecommerce applets | Zach Hilman | |
| 2019-06-24 | yuzu: Accept default applets for Parental Controls and ECommerce | Zach Hilman | |
| 2019-06-20 | Added missing space between two words | Alex Subaric | |
| Added missing whitespace character between two words in the "Warning Missing Derivation Components" warning message box. | |||
| 2019-06-05 | Merge pull request #2521 from lioncash/naming | bunnei | |
| yuzu/configuration: Make function naming consistent | |||
| 2019-06-05 | Merge pull request #2526 from lioncash/global | Zach Hilman | |
| core/telemetry_session: Remove usages of the global system accessor | |||
| 2019-06-05 | yuzu/configuration: Make function naming consistent | Lioncash | |
| 2019-06-05 | Merge pull request #2527 from lioncash/index | Zach Hilman | |
| yuzu/{profile_select, software_keyboard}: Tidy up interface | |||
| 2019-05-30 | main: Remove extraneous comment | Zach Hilman | |
| 2019-05-29 | yuzu/software_keyboard: Remove unnecessary GetStatus() member function | Lioncash | |
| Like with the profile selection dialog, we can just use the result of QDialog's exec() function to determine whether or not a dialog was accepted. | |||
| 2019-05-29 | profile_select: Remove unnecessary GetStatus() member function | Lioncash | |
| This behavior is already provided by the built-in exec() function. We just need to check the return value of it. | |||
| 2019-05-29 | profile_select: Return int instead of u32 for GetIndex() | Lioncash | |
| Qt uses a signed value to represent indices. We should follow this convention where applicable to avoid unnecessary sign-conversion warnings, as well as making it easier to interoperate with other aspects of Qt. While we're at it, we can also make a sign-conversion explicit. | |||
| 2019-05-28 | core/loader: Remove LoadKernelSystemMode | Lioncash | |
| This is a hold-over from Citra and doesn't apply to yuzu. | |||
| 2019-05-26 | yuzu: Clear partial/full game list cache when data is updated | Zach Hilman | |
| 2019-05-24 | yuzu/main: Specify string conversions where applicable | Lioncash | |
| 2019-05-09 | yuzu/main: Move window title updating logic to its own function | Lioncash | |
| For similar reasons to the previous change, we move this to a single function, so we don't need to duplicate the conversion logic in several places within main.cpp. | |||
| 2019-04-17 | main: Add GMainWindow hooks for Error display | Zach Hilman | |
| 2019-04-17 | main: Switch to AppletManager for frontend | Zach Hilman | |
| 2019-04-13 | Merge pull request #2017 from jroweboy/glwidget | bunnei | |
| Frontend: Migrate to QOpenGLWindow and support shared contexts | |||
| 2019-04-12 | Fix Clang Format | FreddyFunk | |
| 2019-04-11 | ui_settings: Rename game directory variables | FreddyFunk | |
| 2019-04-09 | Merge pull request #2353 from lioncash/surface | bunnei | |
| yuzu/debugger: Remove graphics surface viewer | |||
| 2019-04-09 | Merge pull request #1957 from DarkLordZach/title-provider | bunnei | |
| file_sys: Provide generic interface for accessing game data | |||
| 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-05 | yuzu/debugger: Remove graphics surface viewer | Lioncash | |
| This doesn't actually work anymore, and given how long it's been left in that state, it's unlikely anyone actually seriously used it. Generally it's preferable to use RenderDoc or Nsight to view surfaces. | |||
| 2019-04-04 | Merge pull request #2331 from lioncash/cache | bunnei | |
| yuzu/main: Minor adjustments to OnTransferableShaderCacheOpenFile() | |||
| 2019-04-04 | yuzu/main: Remove unnecessary includes | Lioncash | |
| While we're at it, don't use <QtGui> and <QtWidgets> and instead include exactly which headers we actually need. | |||
| 2019-04-04 | yuzu/main: Use QStringLiteral where applicable within ↵ | Lioncash | |
| OnTransferableShaderCacheOpenFile() Allows these strings to have no allocation cost when used at runtime. | |||
| 2019-04-04 | yuzu/main: Tidy up the error dialog string in ↵ | Lioncash | |
| OnTransferableShaderCacheOpenFile() Rather than scream that the file doesn't exist, we can clearly state what specifically doesn't exist, to avoid ambiguity, and make it easier to understand for non-primary English speakers/readers. | |||
| 2019-04-03 | yuzu/main: Remove unnecessary string concatenation in ↵ | Lioncash | |
| OnTransferableShaderCacheOpenFile() We can just make the trailing portion of the string part of the formatting, getting rid of the need to make another temporary string. | |||
| 2019-04-03 | yuzu/main: Make open_target a QString | Lioncash | |
| Simplifies the amount of string conversions necessary. We also don't need to log out what occurs here. | |||
| 2019-04-03 | yuzu/main: Use static variant of QFile's exists() | Lioncash | |
| There's no need to construct a QFile instance just to check for its existence. | |||
| 2019-04-03 | Merge pull request #2095 from FreddyFunk/open-transferable-shader-cache | bunnei | |
| frontend: Open transferable shader cache for a selected game in the gamelist | |||
| 2019-03-26 | game_list: Register content with ContentProvider | Zach Hilman | |
| 2019-03-25 | bootmanager: Bypass input focus issues | ReinUsesLisp | |
| 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-07 | Merge pull request #2196 from DarkLordZach/web-applet-esc | bunnei | |
| web_browser: Add shortcut to Enter key to exit applet | |||
| 2019-03-07 | Merge pull request #2205 from FearlessTobi/docked-undocked-hotkey | bunnei | |
| yuzu: add a hotkey to switch between undocked and docked mode | |||
| 2019-03-06 | Merge pull request #2190 from lioncash/ogl-global | bunnei | |
| core: Remove the global telemetry accessor function | |||
| 2019-03-06 | yuzu: add a hotkey to switch between undocked and docked mode | fearlessTobi | |
| 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-03-04 | yuzu: Remove usage of the global telemetry accessor | Lioncash | |
| In these cases the system object is nearby, and in the other, the long-form of accessing the telemetry instance is already used, so we can get rid of the use of the global accessor. | |||
| 2019-03-02 | citra_qt/main: make SPEED_LIMIT_STEP static constexpr | fearlessTobi | |
| MSVC does not seem to like using constexpr values in a lambda that were declared outside of it. Previously on MSVC build the hotkeys to inc-/decrease the speed limit were not working correctly because in the lambda the SPEED_LIMIT_STEP had garbage values. After googling around a bit I found: https://github.com/codeplaysoftware/computecpp-sdk/issues/95 which seems to be a similar issue. Trying the suggested fix to make the variable static constexpr also fixes the bug here. | |||
| 2019-02-08 | Use QString instead of std::string where applicable | unknown | |
| 2019-02-08 | Use constexpr char array instead of string where applicable | Mat M | |
| Co-Authored-By: FreddyFunk <frederic.laing.development@gmail.com> | |||
| 2019-02-08 | frontend: Open transferable shader cache for a selected game in the gamelist | unknown | |
| 2019-02-06 | gl_shader_cache: Link loading screen with disk shader cache load | ReinUsesLisp | |
| 2019-02-05 | Fix crash when no files are selected | xperia64 | |
| 2019-02-05 | Add file extension to screenshot filename if not provided | xperia64 | |
| 2019-01-23 | Merge pull request #2054 from bunnei/scope-context-refactor | bunnei | |
| frontend: Refactor ScopeAcquireWindowContext out of renderer_opengl. | |||
| 2019-01-23 | frontend: Refactor ScopeAcquireWindowContext out of renderer_opengl. | bunnei | |
