Age | Commit message (Collapse) | Author |
|
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.
|
|
ldn: Implement "local wireless" networked multiplayer
|
|
Migrate deploy-linux.sh from lat9nq's repo.
|
|
Fix "controller.colors_state.right" being "left"
|
|
Align index buffe size when vertex_buffer_unified_memory enable
|
|
|
|
|
|
Update translations (2022-10-01)
|
|
|
|
video_core: Modify astc texture decode error fill value
|
|
service: hid: Partially implement palma controller
|
|
ci/linux: Drop linuxdeploy usage
|
|
yuzu: Silence some clang warnings
|
|
core/loader: Return nullptr if file is nullptr
|
|
Recent versions of Docker appear to cause the Qt linuxdeploy plugin to
throw a boost file copy error.
This switches from linuxdeploy to a script of mine I've been working on
for a while.
|
|
|
|
cmake: fix git detection
|
|
|
|
Do not try to pause core timing from the audio thread when using single-core
|
|
chore: fix some typos
|
|
yuzu: sort input profiles by name
|
|
ci/linux: Use AppRun.sh to start AppImage
|
|
yuzu qt: Add option to disable startup Vulkan check
|
|
|
|
sockets: Make fd member variable protected
|
|
audio_renderer: Make GetCommandBuffer() take a u32
|
|
audio_manager: Minor cleanup related changes
|
|
Fix some typos reported by Lintian
|
|
Other things shouldn't be able to directly mess around with the
descriptor
|
|
|
|
|
|
This function is only ever called with unsigned types, and all of the
other interface functions take session_id as a u32, so this makes the
class a little more consistent.
|
|
Moves the include into the cpp file to lessen header dependencies.
|
|
We can just use a local here to get rid of a second cast.
|
|
Prevents unnecessary reallocations in the event the captured variables
are larger than the internal std::function buffer.
|
|
Allows us to get rid of some unnecessary forward declarations and
includes.
|
|
This isn't used, so it can be removed.
|
|
This isn't used by the class, so this can be removed for the time being.
|
|
The current AppRun is more difficult to update. This script still
uses the old version of AppImageKit-checkrt, but now we use the shell
script version so we can set our own environment variables as the
application starts up.
This specific version searches for and sets the correct root CA file to
prevent SSL errors in yuzu.
|
|
|
|
astc: Enable parallel CPU astc decoding
|
|
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.
|
|
core: implement HwOpus GetWorkBufferSizeForMultiStreamEx
|
|
|
|
core: nfp: Implement amiibo encryption
|
|
[Coretiming/NVNFlinger] Improve multi-core vsync timing, and core timing accuracy
|
|
audio_core: Mark several member functions as const
|
|
GIT: Modify .gitignore to ignore wildcard for build directories
|
|
UI: move icons from default into colorful theme.
|
|
Helps if you have multiple build folders. There are other, dark ways to
hide extra build folders from git, but this is better.
See: https://github.com/citra-emu/citra/pull/6130
|