aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
AgeCommit message (Collapse)Author
2022-01-15yuzu: Add volume up/down hotkeysgerman77
2022-01-15yuzu: Remove speed limit hotkeysgerman77
2022-01-13Merge pull request #7690 from Morph1984/increase-file-limit-winbunnei
yuzu: main: Increase the open file limit on Windows to 8192
2022-01-09yuzu: main: Increase the open file limit on Windows to 8192Morph
This is a temporary solution for now to accommodate for mods containing more than 4096 files.
2022-01-06yuzu: Add controller hotkeysgerman77
2022-01-01yuzu: Fix UI elements not updating correctlygerman77
2021-12-22main: reword inhibit reasonliushuyu
2021-12-22main: fix wake lock in Flatpak ...liushuyu
... by using the XDP system
2021-12-19main: Refactor to reduce code duplication in ShowFullscreen()ameerj
2021-12-19main: 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-15Merge pull request #7532 from goldenx86/patch-3bunnei
Update video core popup
2021-12-16Suggestions from CrusadingNinjaMatías Locatti
2021-12-16Changed linkMatías Locatti
2021-12-14yuzu/main: Fix host memory byte units. GB to GiBWunkolo
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-07Merge pull request #7506 from heinermann/focus_crashMai M
Fixed #7502
2021-12-06main: Update video core popupMatí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-04Fixed #7502Adam Heinermann
2021-12-04core/hid: Ensure only valid npad are connectedgerman77
2021-12-02yuzu: Implement basic controller navigationgerman77
2021-11-27Merge pull request #7255 from german77/krakenFernando S
Project Kraken: Input rewrite
2021-11-26config: Remove vibration configurationgerman77
2021-11-25Merge pull request #7330 from MightyCreak/simplify-theme-selectionbunnei
Replace "Light" theme by "Default"
2021-11-24yuzu: Fix TAS from rebasegerman77
2021-11-24service/hid: Remove includes of core.h and settings.hgerman77
2021-11-24settings: Fix controller preview not displaying the correct controllergerman77
2021-11-24core/hid: Rename NpadType to NpadStyleIndexgerman77
2021-11-24second commit lion reviewgerman77
2021-11-24input_common: Revert deleted TAS functionsgerman77
2021-11-24service/hid: Fix gesture inputgerman77
2021-11-24configuration: Migrate controller settings to emulated controllergerman77
2021-11-24kraken: Fix errors from rebase and format filesgerman77
2021-11-24core: Register HIDgerman77
2021-11-24yuzu: Use new input on main and bootmanagergerman77
2021-11-24input_common: Rewrite keyboardgerman77
2021-11-24Refactor menu states and shortcuts in GMainWindow. (#7419)Adam Heinermann
Refactor menu states and shortcuts in GMainWindow. - Removed "Start", since it was always disabled unless it was "Continue" which has now been moved to "Pause". - Allow hotkeys to be used while in fullscreen. - Removed the load amiibo hotkey.
2021-11-21const fixesAdam Heinermann
2021-11-21Apply clang formatAdam Heinermann
2021-11-21Added TAS controls to the menu under ToolsAdam Heinermann
2021-11-19Merge pull request #7369 from Morph1984/amd-fsr-statusbarbunnei
main: Shorten AMD FSR status bar text
2021-11-19Merge pull request #7342 from goldenx86/patch-3bunnei
Replace keys error pop up
2021-11-18main: Fix default AA nameMorph
By default, no AA is applied, not FXAA
2021-11-18main: Shorten AMD FSR status bar textMorph
AMD'S FIDELITYFX SR -> FSR
2021-11-18Merge pull request #7353 from v1993/no-more-epilepsybunnei
Prevent window flickering when holding Esc
2021-11-17Prevent window flickering when holding EscValeri
Reported on discord by Levlight. Don't try to exit fullscreen if it's already off.
2021-11-16Yuzu UI: Add button for Anti AliasFernando Sahmkow
2021-11-16QtGUI: Add buttton to toggle the filter.FernandoS27
2021-11-16bootmanager: Fix screenshot resolution factor usageameerj
Fixes screenshots at non integer scaling
2021-11-16main: Add resolution scale label in the status barMorph
Shows the resolution scale as "Scale: {}x" in the status bar, where {} is a floating point value representing the current resolution scaling factor.
2021-11-16Replace keys error pop upMatías Locatti
Fight me.
2021-11-14Replace "Light" theme by "Default"Romain Failliot
This reflects the current behavior: Light = System default. If your system is set to dark theme, then Light = Dark, which is a bit confusing for the end user. In this PR, I propose to change "Light" with "Default". This way, the user has "Default" and "Default Colorful", which will apply the system theme. Now that the Flatpak respects the system theme, I think this makes much more sense. I also simplified the theme update. Before the code was branching between the default theme and the others, but I think we can have something simpler by forcing the default theme if no theme is defined in the settings, or if the selected theme doesn't exist. And if there's an error, tell the theme name in the error message.