Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-23 | Update FSR to 1.0.2 | Moonlacer | |
Updates yuzu's FSR implementation to 1.0.2 | |||
2022-01-22 | Merge pull request #7716 from german77/volume | bunnei | |
yuzu: Add volume hotkeys | |||
2022-01-21 | Merge pull request #7737 from bunnei/fix-dummy-thread-leak | bunnei | |
Various fixes to HLE service thread management | |||
2022-01-21 | yuzu: Add modifiers for keyboard | Narr the Reg | |
2022-01-21 | Use Default Colorful theme by default outside of Windows | v1993 | |
On OSes with system-wide theming this allows yuzu to follow system style, regardless of its exact coloration, working well with both light and dark system themes. Dark /Colorful, on the other hand, forces dark theme regardless of user preferences set in system settings, making for a poor default. Use Colorful variation to keep in line with icon style of patron-voted Dark Colorful. | |||
2022-01-20 | hle: kernel: KThread: Rename thread_type_for_debugging -> thread_type. | bunnei | |
- This will be used to ensure that we do not schedule dummy threads. | |||
2022-01-18 | Merge pull request #7725 from german77/mouse_in_motion | bunnei | |
input_common: Reintroduce motion from mouse and use button names | |||
2022-01-17 | uisettings: Add enumeration type for themes | Morph | |
Eliminates the usage of a magic number to indicate the default index of the themes array, | |||
2022-01-17 | config: Change default theme to Dark Colorful | gidoly | |
2022-01-16 | input_common: Reintroduce motion from mouse and use button names | german77 | |
2022-01-15 | yuzu: Add volume up/down hotkeys | german77 | |
2022-01-15 | yuzu: Remove speed limit hotkeys | german77 | |
2022-01-13 | Merge pull request #7690 from Morph1984/increase-file-limit-win | bunnei | |
yuzu: main: Increase the open file limit on Windows to 8192 | |||
2022-01-11 | Merge pull request #7633 from german77/hotkeys | bunnei | |
yuzu: Add controller hotkeys | |||
2022-01-09 | yuzu: main: Increase the open file limit on Windows to 8192 | Morph | |
This is a temporary solution for now to accommodate for mods containing more than 4096 files. | |||
2022-01-07 | yuzu: Use pad parameter to choose the correct controller | german77 | |
2022-01-06 | yuzu: Add controller hotkeys | german77 | |
2022-01-04 | configure_per_game: Initialize tabs after loading custom configuration | lat9nq | |
Changes tab initialization to happen after the configuration is loaded, which means that it no longer happens as member initializers in the ConfigurePerGame constructor. Removes the cluster of ??_tab->SetConfiguration's that I added earlier to get around this issue initially. Fixes a regression in #6774 | |||
2022-01-03 | Merge pull request #7251 from FernandoS27/shader-dump | bunnei | |
ShaderDecompiler: Add a debug option to dump the game's shaders. | |||
2022-01-04 | ShaderDecompiler: Add a debug option to dump the game's shaders. | Fernando Sahmkow | |
2022-01-03 | Merge pull request #7662 from german77/uistatus | bunnei | |
yuzu: Fix UI elements not updating correctly | |||
2022-01-01 | controller_applet: Only populate supported controllers | german77 | |
2022-01-01 | yuzu: Fix UI elements not updating correctly | german77 | |
2021-12-29 | core/hid: Fix controller type validation | german77 | |
2021-12-22 | main: reword inhibit reason | liushuyu | |
2021-12-22 | main: fix wake lock in Flatpak ... | liushuyu | |
... by using the XDP system | |||
2021-12-21 | Merge pull request #7604 from ameerj/fullscreen-render-window | bunnei | |
main: Make separate render window fullscreen toggle on the monitor it resides in | |||
2021-12-20 | Merge pull request #7597 from bunnei/remove-global-lock | bunnei | |
core: hle: Remove global HLE lock. | |||
2021-12-19 | main: Refactor to reduce code duplication in ShowFullscreen() | ameerj | |
2021-12-19 | main: Make render window borderless fullscreen toggle on the monitor it ↵ | ameerj | |
resides in Toggling borderless fullscreen on the separate render window made it fullscreen on the monitor which the main yuzu window resided in. This change allows the render window to go fullscreen on the monitor it resides in, independent of the main window location. | |||
2021-12-17 | Merge pull request #7570 from ameerj/favorites-expanded | bunnei | |
game_list: Add persistent setting for the favorites row expanded state | |||
2021-12-17 | core: hle: Remove global HLE lock. | bunnei | |
- This was added early on as a hack to protect against some concurrency issues. - It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex. | |||
2021-12-15 | Merge pull request #7532 from goldenx86/patch-3 | bunnei | |
Update video core popup | |||
2021-12-16 | Suggestions from CrusadingNinja | Matías Locatti | |
2021-12-16 | Changed link | Matías Locatti | |
2021-12-14 | yuzu/main: Fix host memory byte units. GB to GiB | Wunkolo | |
I have `134850146304` bytes of ram and Yuzu was saying that I had `125.59 GB` of ram. But `125.59` is actually the amount of gi**bi**bytes I have. In gi**ga**bytes I would have `134.9`. Additionally, I changed the `1024 / 1024 / 1024` here into the `_GiB` user-literals that I added a while ago(#6519). https://www.wolframalpha.com/input/?i=134850146304+bytes | |||
2021-12-13 | qt_software_keyboard: Fix out of bounds array access | Morph | |
We were unconditionally accessing the keyboard_buttons array, even if the bottom_osk_index was for the numberpad, leading to an out of bounds array access. Fix this by accessing the proper array for the current button when the index is for the numberpad. | |||
2021-12-12 | game_list: Add persistent setting for the favorites row expanded state | ameerj | |
Previously, the favorites row was always expanded on launch. This change introduces a persistent setting that allows the favorites row's expanded state to be remembered between launches. | |||
2021-12-08 | profiler: Use QWheelEvent position().toPoint() | Morph | |
QWheelEvent::pos() is deprecated. Make use of position().toPoint() instead. | |||
2021-12-07 | Merge pull request #7506 from heinermann/focus_crash | Mai M | |
Fixed #7502 | |||
2021-12-06 | main: Update video core popup | Matías Locatti | |
Old version had formatting issues, and I want to provide an answer to the most common reason this pops up in the first place, outdated drivers. | |||
2021-12-04 | Fixed #7502 | Adam Heinermann | |
2021-12-04 | core/hid: Ensure only valid npad are connected | german77 | |
2021-12-03 | Merge pull request #7489 from Morph1984/steady-clock | bunnei | |
general: Replace high_resolution_clock with steady_clock | |||
2021-12-02 | yuzu: Implement basic controller navigation | german77 | |
2021-12-02 | general: Replace high_resolution_clock with steady_clock | Morph | |
On some OSes, high_resolution_clock is an alias to system_clock and is not monotonic in nature. Replace this with steady_clock. | |||
2021-11-29 | qt_controller: Make use of (Enable/Disable)AllControllerConfiguration | Morph | |
This also moves the use of DisableConfiguration to the destructor. | |||
2021-11-29 | general: Fix handheld typo | Morph | |
2021-11-28 | qt_controller: Fix input when the controller applet is ignored | german77 | |
2021-11-27 | settings: Add debug setting to enable all controllers | german77 | |