summaryrefslogtreecommitdiff
path: root/src/yuzu
AgeCommit message (Collapse)Author
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.
2022-09-15UI: Fix link to TAS help pageKyle Kienapfel
Tools -> TAS -> Configure TAS Thanks to Rei on discord for the fix. Basically: openExternalLinks is a checkbox in Qt Creator
2022-09-12Merge pull request #8880 from german77/slow-movingMai
input_common: Increase mapping timer from 2.5 seconds to 4 seconds
2022-09-11input_common: Increase mapping timer from 2.5 seconds to 4 secondsgerman77
2022-09-10fix black iconNarr the Reg
2022-09-10yuzu: Multiple room UI improvementsgerman77
2022-09-09Merge pull request #8864 from german77/toggle_analogbunnei
input_common: Add support for analog toggle
2022-09-09ldn: Initial implementationFearlessTobi
2022-09-08Merge pull request #8819 from liamwhite/cash-moneylat9nq
video_core: add option for pessimistic flushing
2022-09-07core: nfp: Implement amiibo encryptiongerman77
2022-09-06yuzu: input: fix invert symbol on axis and order options alphabeticallyNarr the Reg
2022-09-06input_common: Add support for analog toggleNarr the Reg
2022-09-04mini_dump: Address review feedbacklat9nq
Uses fmt::print as opposed to std::fprintf. Adds a missing return. static's a single-use function. Initializes structs as opposed to std::memset where possible. Fixes CMake linkage. Co-authored-by: Lioncash <mathew1800@gmail.com> mini_dump: Use a namespace Co-authored-by: Lioncash <mathew1800@gmail.com>
2022-09-04vcpkg,cmake: Use vcpkg for dbghelplat9nq
2022-09-04mini_dump: Check for debugger before spawning a childlat9nq
mini_dump: Clean up mini_dump: Fix MSVC error mini_dump: Silence MSVC warning C4700 Zero initialize deb_ev. mini_dump: Add license info
2022-09-04mini_dump: Cleanup and add commentslat9nq
Removes some unnecessary code. wip
2022-09-04yuzu: Use a debugger to generate minidumpslat9nq
yuzu: Move mini_dump out of core startup_checks: Better exception handling
2022-09-03Qt: Make General->Debug scrollableKyle Kienapfel
Configuration -> General -> Debug is getting a bit crowded. yzct12345 submit this originally, so I'm tagging them as a co-author. The original #6714 also modifies the Controls -> Player N sections, but it looks like more work is needed to make the current area scrollable. Co-authored-by: yzct12345 <87620833+yzct12345@users.noreply.github.com>
2022-09-02Address review commentsFearlessTobi
2022-08-27yuzu/chat_room: Make font size biggerFearlessTobi
2022-08-27yuzu/multiplayer: Warn when game is running or no network interface is selectedFearlessTobi
2022-08-27yuzu: Display current game version in multiplayer roomFearlessTobi
Makes it easier for users to recognize connection errors caused by different game versions.
2022-08-27yuzu_room: Remove dependency on coreFearlessTobi
2022-08-25video_core: add option for pessimistic flushingLiam
2022-08-22yuzu: Force camera output to be saved on a buffer (#8805)Narr the Reg
2022-08-20Merge pull request #8783 from german77/looongliamwhite
yuzu: Allow longer controller profile names
2022-08-20Qt: Retranslate GameList header and Filter lineKyle Kienapfel
Didn't notice this until I was trying to change the default font to Comic Sans MS when language is set to English in yuzu.
2022-08-18yuzu: Allow longer controller profile namesNarr the Reg
2022-08-15yuzu: Fix crash on shutdownFearlessTobi
Previously, accessing the room_network when it was already freed would crash the emulator on shutdown. Co-Authored-By: Narr the Reg <5944268+german77@users.noreply.github.com>
2022-08-15core, yuzu: Address first part of review commentsFearlessTobi
2022-08-15core, network: Add ability to proxy socket packetsFearlessTobi
2022-08-12Merge pull request #8756 from Kelebek1/volbunnei
Allow audio volume up to 200%
2022-08-12Merge pull request #8741 from Docteh/abootMai
Qt: tweak ui files