summaryrefslogtreecommitdiff
path: root/src/yuzu
AgeCommit message (Collapse)Author
2022-11-12Merge pull request #9231 from goldenx86/corecountMai
Add CPU core count to log files
2022-11-11Add CPU core count to log filesMatías Locatti
2022-11-11Merge pull request #9133 from FearlessTobi/compat-improvementsliamwhite
yuzu/compatdb: Improve compatibility submission system
2022-11-11yuzu/main: Change to 8_GiB instead of magic numberTobias
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
2022-11-10Merge pull request #9223 from goldenx86/threadcountbunnei
Add CPU thread count to log files
2022-11-10Merge pull request #9198 from liamwhite/arm64bunnei
Initial ARM64 support
2022-11-11Merge pull request #9180 from Docteh/remove_stuffMai
UI: split up strings relating to content removal
2022-11-10Me likesMatías Locatti
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
2022-11-10yuzu/compatdb: Rework compatibility submission systemFearlessTobi
Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com>
2022-11-10Add CPU thread count to log filesMatías Locatti
2022-11-09Initial ARM64 supportLiam
2022-11-06yuzu: Change QtKeyToSwitchKey switch case to arraygerman77
2022-11-04UI: split up strings relating to content removalKyle Kienapfel
Requested by Italian translator (Fs00 in Discord) "Remove Installed Game %1?" "Error Removing %1" I didn't press for translated strings, so have a taste direct from deepl Rimuovere il contenuto del gioco installato? Rimuovere l'aggiornamento del gioco installato? Rimuovere il DLC del gioco installato?
2022-11-04Qt: enable recent Linux features on more UnicesJan Beich
- Prevent sleep via xdg-desktop-portal after fa7abafa5f2a - Pause on suspend after b7642cff3611 - Exit on SIGINT/SIGTERM after 9479940a1fc7 - Improve dark themes after b51db125676f
2022-11-04UI: Add options to hide extra columns (#9093)Piplup
UI change that allows the user to hide the size and or file types columns
2022-11-02remove unnecessary sepator in file menu (main.ui)Ludovic
2022-10-30Merge pull request #9091 from Docteh/what_compat_listliamwhite
UI: Add option to hide the compatibility list
2022-10-22yuzu: Resolve -Wpessimizing-moveMorph
2022-10-22startup_checks: Resolve -Wstringop-truncationMorph
Copies up to sizeof(p_name) - 1 in strncpy and null terminates it at p_name[254]
2022-10-22startup_checks: Resolve -WformatMorph
2022-10-20Merge pull request #9099 from Docteh/undockedliamwhite
Controller Applet had instance of Undocked, make Handheld
2022-10-20Controller Applet had instance of Undocked, make HandheldKyle Kienapfel
Remember that time we renamed the Undocked option to Handheld in the status bar, and then later remembered the Controller Configuration? Scrolling through Transifex I noticed that we still have one instance of "Undocked" in the text.
2022-10-19Merge pull request #9082 from Morph1984/futureliamwhite
savedata_factory: Detect future save data paths
2022-10-19UI: Add option to hide the compatibility listKyle Kienapfel
Option is added directly below the option for the addons column Defaulting to hide compatibility list. Changing default works properly. Co-authored-by: Piplup <piplup55@users.noreply.github.com>
2022-10-18core: Partially persist emulation state across game boots.bunnei
2022-10-16savedata_factory: Detect future save data pathsMorph
Enable compatibility for new account/device save paths planned on a future implementation.
2022-10-15fix a tiny spelling mistakeKyle Kienapfel
Kreato pointed this out over on discord.
2022-10-13Merge pull request #9039 from Kelebek1/auto_backendliamwhite
Auto select the SDL audio backend when Cubeb latency is too high
2022-10-12Merge pull request #9047 from german77/steam-aspectbunnei
yuzu: Add 16:10 aspect ratio
2022-10-10yuzu: Add 16:10 aspect ratioNarr the Reg
2022-10-09Choose the SDL audio backend when Cubeb reports too high of a latencyKelebek1
2022-10-07Merge pull request #9030 from Morph1984/api-disableMai
configure_graphics: Fix graphics API selection when a game is running
2022-10-07Merge pull request #8807 from Docteh/default_fontsliamwhite
Qt: work around Qt5's font choice for Chinese (in Windows)
2022-10-07configure_graphics: Fix graphics API selection when a game is runningMorph
The graphics API setting should not be changed when a game is running.
2022-10-06Vulkan Swapchain: Overall improvements.Fernando Sahmkow
2022-10-03common: remove "yuzu:" prefix from thread namesLiam
2022-10-02Merge pull request #8955 from german77/amiibo-rewritebunnei
core: nfp: Rewrite implementation to remove direct access from the frontend
2022-10-02yuzu: Use virtual amiibo driver instead of nfp servicegerman77
2022-10-01Qt: work around Qt5's font choice for ChineseKyle Kienapfel
On Windows there are currently two fonts used. The first, does the Menu, QTreeView and Tooltips Second is Everything else which is a default font. From inspecting QApplication::font() at runtime Windows 10 English: QFont(MS Shell Dlg 2,8.25,-1,5,50,0,0,0,0,0) Windows 11 Japanese: MS UI Gothic,9 ,-1,5,50,0,0,0,0,0 Windows 11 Traditional Chinese: PMingLiU,9 ,-1,5,50,0,0,0,0,0 Windows 11 Simplified Chinese: SimSun,9 ,-1,5,50,0,0,0,0,0 Windows 11 Korean: Gulim,9 ,-1,5,50,0,0,0,0,0 I initially investigated dynamically changing the font when the UI language is English, but this was getting quite messy Qt6 makes changes to default font in some situations, so this PR is being narrowed in scope to only effect Chinese font choices. This change only effects rendering of Latin/Cyrillic characters.
2022-10-01Merge pull request #8876 from FearlessTobi/multiplayer-part3bunnei
ldn: Implement "local wireless" networked multiplayer
2022-09-28Merge pull request #8940 from german77/silencebunnei
yuzu: Silence some clang warnings
2022-09-23Merge pull request #8948 from german77/orderMorph
yuzu: sort input profiles by name
2022-09-23yuzu: sort input profiles by nameNarr the Reg
2022-09-21yuzu: Silence some clang warningsNarr the Reg
2022-09-20Address some review commentsFearlessTobi
2022-09-19yuzu qt: Add option to disable startup Vulkan checklat9nq
The startup check apparently confuses other programs when yuzu launches 2 processes and then quickly closes one of them. Though this isn't really our issues it's also not a big deal for me to add an option to work around that issue.
2022-09-17Merge pull request #8827 from german77/amiibo_releasebunnei
core: nfp: Implement amiibo encryption
2022-09-16Merge pull request #8906 from Docteh/fix_iconsbunnei
UI: move icons from default into colorful theme.
2022-09-16Merge pull request #8682 from lat9nq/dumpyMorph
yuzu qt: Add option to create Windows crash dumps
2022-09-15UI: move icons from default into colorful theme.Kyle Kienapfel
colorful theme has been default theme for awhile. having colorful theme try and grab icons from other theme doesn't work on Linux. Also adding two additional icons, info is to hint to the user that they should hit verify after pasting in a token, sync is to show that the verification is occurring.