summaryrefslogtreecommitdiff
path: root/src/yuzu
AgeCommit message (Collapse)Author
2023-03-27qt: Fix log softlockNarr the Reg
2023-03-17config: Fix controller config from resettingNarr the Reg
2023-03-13configure_audio: Fix output mode setting not savingMorph
2023-03-13Merge pull request #9941 from german77/settingsliamwhite
yuzu: Move audio settings to audio section
2023-03-12kernel: convert KThread to new styleLiam
2023-03-12kernel: convert KPort, KSessionLiam
2023-03-12general: fix spelling mistakesLiam
2023-03-11yuzu: Move audio settings to audio sectiongerman77
2023-03-11yuzu: Remove console id settinggerman77
2023-03-05main: (Windows) Set the current timer resolution to the maximumMorph
Increases the precision of thread sleeps on Windows.
2023-02-28cmake: use correct boost imported targetsAlexandre Bouvier
2023-02-26Revert "yuzu: config: Remove player 8 and 9 from config file"Narr the Reg
2023-02-26Merge pull request #9849 from ameerj/async-astcliamwhite
texture_cache: Add asynchronous ASTC texture decoding
2023-02-25yuzu: config: Remove player 8 and 9 from config fileNarr the Reg
2023-02-25config: Fix per game Force max clockgerman77
2023-02-22configuration: Add async ASTC decode settingameerj
2023-02-21Merge pull request #9847 from german77/timeoutliamwhite
yuzu: Set a lower timeout for discord presence
2023-02-21yuzu: Set a lower timeout for discord presenceNarr the Reg
2023-02-21externals: Update cpp-httplib to latestAlexandre Bouvier
2023-02-19Qt: Reintroduce scaling for touch inputgerman77
2023-02-18Merge pull request #9815 from german77/qt-mouseliamwhite
Qt: Fix mouse scalling
2023-02-16yuzu: Shutdown game on restart to reload per game configNarr the Reg
2023-02-16yuzu: Write to config file on important config changesNarr the Reg
2023-02-16input_common: Split mouse input into individual devicesNarr the Reg
2023-02-15Qt: Fix mouse scallinggerman77
2023-02-15Merge pull request #9796 from liamwhite/currentliamwhite
general: rename CurrentProcess to ApplicationProcess
2023-02-15Merge pull request #9782 from arades79/fix-consexpr-value-declaration-usageliamwhite
Fix consexpr value declaration usage
2023-02-14Revert "main: Fix borderless fullscreen for high dpi scaled displays"liamwhite
2023-02-14remove static from pointer sized or smaller types for aesthetics, change ↵arades79
constexpr static to static constexpr for consistency Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14add static lifetime to constexpr values to force compile time evaluation ↵arades79
where possible Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-13general: rename CurrentProcess to ApplicationProcessLiam
2023-02-12main: Fix borderless fullscreen for high dpi scaled displaysMorph
On Windows, a borderless window will be treated the same as exclusive fullscreen when the window geometry matches the physical dimensions of the screen. However, with High DPI scaling, when the devicePixelRatioF() is > 1, the borderless window apparently is not treated as exclusive fullscreen and functions correctly. One can verify and replicate this behavior by using a high resolution (4K) display, and switching between 100% and 200% scaling in Windows' display settings. At 100%, without the addition of 1, it is treated as exclusive fullscreen. At 200%, with or without the addition of 1, it is treated as borderless windowed. Therefore, we can use (read: abuse) this difference in behavior to fix this issue for those with higher resolution displays when the Qt scaling ratio is > 1. Should this behavior be changed in the future, please revisit this workaround.
2023-02-10Merge pull request #9759 from german77/pro_controllerbunnei
input_common: Reintroduce custom pro controller support
2023-02-09main: Re-add QtWebEngine zoom factorMorph
For some reason, I had removed this in https://github.com/yuzu-emu/yuzu/pull/4949/commits/ad6cec71ecd61aa2533d9efa89b68837516f8464 This should fix any improperly scaled web applets.
2023-02-09input_common: Reintroduce custom pro controller supportNarr the Reg
2023-02-06Merge pull request #4949 from Morph1984/hidpi-temp-fixliamwhite
main: Enable High DPI fixes for Qt >= 5.14
2023-02-06Merge pull request #9644 from SaiKai/volume_quicksettingbunnei
add volume quicksetting with volume slider
2023-02-04Merge pull request #9720 from SoRadGaming/discordPresenceUpdatebunnei
Game Image with Discord RPC
2023-02-05Add Game Icon for Discord RPCSorab
Connected to Yuzu Compatibility Page
2023-02-04remove disambiguation argument from mute textJonas Gutenschwager
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
2023-02-02added 'Hide empty rooms' toggle to lobbyLuke Sawczak
fixed typo fixed typo fixed typo clang
2023-02-01yuzu: config: Draw turbo buttons with a different colorgerman77
2023-02-01input_common: Implement turbo buttonsgerman77
2023-01-28Merge pull request #9690 from german77/whoopsliamwhite
yuzu: config: Avoid reading deleted object
2023-01-28yuzu: config: Avoid reading deleted objectNarr the Reg
2023-01-28Merge pull request #9661 from SoRadGaming/LDNhostnameSupportliamwhite
LDN hostname support in direct connect
2023-01-28LDN Hostname Support in Direct ConnectSoRadGaming
- Added IPv6 & Namespace support in direct connection Regex - Updated Tooltip for Direct Connect UI - Removed Dropdown Connection Type in Direct Connect
2023-01-27Merge pull request #9539 from Wollnashorn/opengl-fsrliamwhite
video_core/opengl: Added FSR upscaling filter to the OpenGL renderer
2023-01-26video_core/opengl: Add FSR upscaling filter to the OpenGL rendererWollnashorn
2023-01-25main: Convert to device independent coordinates for scalingMorph
devicePixelRatioF() returns the scaling ratio when high dpi scaling is enabled. When high dpi scaling is enabled, the raw screen coordinate system is scaled to device independent coordinates.