Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-15 | frontend: Set minimum window size to 640x360 instead of 1280x720 (#3413) | Morph | |
2020-05-14 | Merge pull request #3927 from jroweboy/fix-bug | bunnei | |
Frontend: Remove tracking for context wrapper | |||
2020-05-11 | Frontend: Remove tracking for context wrapper | James Rowe | |
2020-05-11 | core: settings: Add a setting for time zone. | bunnei | |
2020-05-06 | Menubar: fix mouse tracking bug | FearlessTobi | |
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com> | |||
2020-05-03 | Merge pull request #3637 from FearlessTobi/port-5094 | bunnei | |
Port citra-emu/citra#5094: "yuzu: Option to hide mouse on inactivity" | |||
2020-04-28 | Merge pull request #3771 from benru/dump-romfs-with-updates | bunnei | |
Dump RomFS command to include Updates | |||
2020-04-27 | Merge pull request #3742 from FernandoS27/command-list | bunnei | |
Optimize GPU Command Lists and Introduce Fast GPU Time Option | |||
2020-04-26 | Merge pull request #3795 from vitor-k/fix-folder | bunnei | |
Fix "Port citra-emu/citra#4956: "Fixes to game list sorting" #3611" | |||
2020-04-26 | Merge pull request #3791 from Kewlan/hotkey-config-plus | bunnei | |
configuration: Add Restore Default and Clear options to hotkeys | |||
2020-04-25 | Merge pull request #3761 from Kewlan/stick-modifier-slider | bunnei | |
configure_input_player: Use slider to edit modifier scale | |||
2020-04-25 | Fix the mistake in the port and update the comment for clarity | Vitor Kiguchi | |
2020-04-24 | Add Restore Defaults and Clear options to hotkeys | Kewlan | |
2020-04-24 | Merge pull request #3760 from Morph1984/trailing-filedir-separator | bunnei | |
frontend/filesystem: Add a trailing separator to the string path | |||
2020-04-23 | Clang Format. | Fernando Sahmkow | |
2020-04-23 | GPU: Add Fast GPU Time Option. | Fernando Sahmkow | |
2020-04-23 | Update src/yuzu/main.cpp with missing const | Ben Russell | |
Co-Authored-By: Mat M. <mathew1800@gmail.com> | |||
2020-04-23 | Dump RomFS command to include Updates | Ben Russell | |
Patch the RomFS with the selected updates before dumping. Previously the resulting RomFS only contained data from the original title. To dump the RomFS without updates the user can disable the update under Properties before choosing Dump RomFS. | |||
2020-04-23 | Merge pull request #3697 from lioncash/declarations | bunnei | |
CMakeLists: Enable -Wmissing-declarations on Linux builds | |||
2020-04-23 | Edit modifier_scale with the deadzone slider | Kewlan | |
2020-04-22 | Clang format. | Fernando Sahmkow | |
2020-04-22 | UI: Replasce accurate GPU option for GPU Accuracy Level | Fernando Sahmkow | |
2020-04-22 | Add a trailing separator to the string path | Morph | |
Fixes #3643 | |||
2020-04-20 | dynarmic: Add option to disable CPU JIT optimizations | MerryMage | |
2020-04-20 | yuzu: Option to hide mouse on inactivity | FearlessTobi | |
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com> | |||
2020-04-19 | Merge pull request #3655 from FearlessTobi/ui-retext-yuzu | bunnei | |
yuzu/main: Add better popup texts and remove duplicated actions | |||
2020-04-16 | General: Resolve warnings related to missing declarations | Lioncash | |
2020-04-15 | CMakeLists: Specify -Wextra on linux builds | Lioncash | |
Allows reporting more cases where logic errors may exist, such as implicit fallthrough cases, etc. We currently ignore unused parameters, since we currently have many cases where this is intentional (virtual interfaces). While we're at it, we can also tidy up any existing code that causes warnings. This also uncovered a few bugs as well. | |||
2020-04-14 | yuzu/main: Add better popup texts and remove duplicated actions | FearlessTobi | |
Makes popup texts more compact and clear and also links our quickstart guide now. Also removes OnMenuSelectEmulatedDirectory from the File dropdown, as the action already exists in the Filesystem tab and provides better visual feedback there. | |||
2020-04-11 | Merge pull request #3611 from FearlessTobi/port-4956 | bunnei | |
Port citra-emu/citra#4956: "Fixes to game list sorting" | |||
2020-04-10 | Merge pull request #3594 from ReinUsesLisp/vk-instance | bunnei | |
yuzu: Drop SDL2 and Qt frontend Vulkan requirements | |||
2020-04-10 | Merge pull request #3607 from FearlessTobi/input-kms | bunnei | |
yuzu/configuration: Fix input profiles and a wrong assert | |||
2020-04-09 | Merge pull request #3623 from ReinUsesLisp/renderdoc-bind-spam | Fernando Sahmkow | |
qt/bootmanager: Remove unnecessary glBindFramebuffer | |||
2020-04-08 | Place SL and SR in the right most column. | Kewlan | |
2020-04-07 | qt/bootmanager: Remove unnecessary glBindFramebuffer | ReinUsesLisp | |
Presentation context always has GL_DRAW_FRAMEBUFFER_BINDING as zero. There is no need to bind the default framebuffer constantly. According to Nsight this was using ~0.7ms per frame and it broke renderdoc captures. | |||
2020-04-07 | Addressed feedback: switched to snake case and fixed clang-format errors | SilverBeamx | |
2020-04-07 | Addressed feedback: removed CMake hack in favor of building the necessary ↵ | SilverBeamx | |
strings via the supplied title format | |||
2020-04-07 | yuzu: Drop SDL2 and Qt frontend Vulkan requirements | ReinUsesLisp | |
Create Vulkan instances and surfaces from the Vulkan backend. | |||
2020-04-07 | renderer_vulkan: Query device names from the backend | ReinUsesLisp | |
2020-04-06 | yuzu: Fixes to game list sorting | FearlessTobi | |
Should fix citra-emu/citra#4593. As the issue might not be entirely clear, I'll offer a short explanation from what I understood from it and found from experimentation. Currently yuzu offers the user the option to change the text that's displayed in the "Name" column in the game list. Generally, it is expected that the items are sorted based on the displayed text, but yuzu would sort them by title instead. Made it so that an access to SortRole returns the same as DisplayRole. There shouldn't be any UI changes, only change in behaviour. Also fixes a bug with directory sorting, where having the directories out of order would enable you to try to "move up" to the addDirectory button, which would crash the emulator. Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com> | |||
2020-04-05 | yuzu/configuration: Only assert that all buttons exist when we are handling ↵ | FearlessTobi | |
the click for a button device This fixes failed assertions that were present in yuzu master code for 18 months. | |||
2020-04-05 | yuzu/configure_input_simple: Fix "Docked Joycons" controller profile | FearlessTobi | |
This was incorrectly using PlayerIndex 1 when calling the ConfigureDialog. | |||
2020-04-03 | Merge pull request #3579 from Kewlan/reorder-shoulder | bunnei | |
configuration: Reorder shoulder buttons | |||
2020-04-02 | Merge pull request #3552 from jroweboy/single-context | Rodrigo Locatti | |
Refactor Context management (Fixes renderdoc on opengl issues) | |||
2020-03-30 | Frontend: Don't call DoneCurrent if the context isnt already current | James Rowe | |
2020-03-29 | Re-order the shoulder buttons both in the configuration menu, and in the code. | Kewlan | |
2020-03-28 | Merge pull request #3573 from FearlessTobi/port-5089 | bunnei | |
Port citra-emu/citra#5089: "Set render window's focus policy to Qt::StrongFocus" | |||
2020-03-28 | yuzu: fix the stuck in fullscreen mode bug | FearlessTobi | |
Co-Authored-By: Valentin Vanelslande <vvanelslandedev@gmail.com> | |||
2020-03-27 | Set render window to also accept focus via tabbing (Qt::StrongFocus) (#5089) | Vitor K | |
2020-03-26 | Merge pull request #3453 from FearlessTobi/remove-pause-lock | bunnei | |
yuzu: Remove exit lock for game pausing |