| Age | Commit message (Collapse) | Author |
|
This uses Qt's new high DPI application attributes for scaling the current window.
However, these aren't perfect as scaling with non integer scales will cause artifacts in UI, icons and other elements.
Therefore, we use a heuristic to select an appropriate integer scale value depending on the current screen resolution and applies this to the application.
|
|
This is fortunately disabled by default on Qt6, so we just have to check whether we are compiling with Qt6 or not.
|
|
Sets the AA_DisableWindowContextHelpButton attribute to disable this useless button globally.
|
|
- add checkbox to disable the controller applet UI
- when controller applet is disabled, use the yuzu-cmd fallback
controller applet that applies controller config based on rules
- See https://github.com/yuzu-emu/yuzu/issues/8552 for some discussion
|
|
|
|
TAS: Show all script lengths for multiplayer
|
|
|
|
|
|
cache
|
|
|
|
qt: continue event loop during game close
|
|
|
|
|
|
|
|
EmuThread: refactor
|
|
|
|
|
|
|
|
qt: handle wayland-egl platform name
|
|
let games gracefully exit
|
|
yuzu qt, common: Add option to create game shortcuts on Linux
|
|
|
|
Moves icon path to ~/.local/share/icons, though I'm opting to avoid
using the game title for the icon and desktop entry name as that would
cause filenames such as
"yuzu-cadence-of-hyrule-crypt-of-the-necrodancer-featuring-the-legend-of-zelda-demo.desktop".
|
|
This creates a Desktop Entry file and a PNG icon for the entry when the
user right-clicks a game and selects "Create Shortcut -> Create
{Application,Desktop} Shortcut". This uses the current executable's path
to create the shortcut.
yuzu qt: Add more error checking and OS gating for shortcuts
main: Remove FreeBSD gating for shortcuts
I'm not going to test FreeBSD, so I don't know if they follow
Freedesktop.org or not. I just have to let someone else verify that it
works there and let them enable it.
main: Move shortcut function to its own function
This function should really be in a common library, at least among
frontends.
main: Remove image manip references
main: Fix difference in MinGW and native GCC versions
main: Fix negation in creat shortcut
Addresses review comment
Co-authored-by: Jan Beich <jbeich@FreeBSD.org>
main: Re-enable freedesktop shorcuts for FreeBSD
|
|
Wayland does not allow clients to choose their own size and position
on the screen. The concept of fullscreening an application by sizing
it to the screen and removing decorations does not exist. Use
exclusive fullscreen instead.
|
|
|
|
|
|
|
|
Co-authored-by: goldenx86 <goldenx86@users.noreply.github.com>
Co-authored-by: BreadFish64 <breadfish64@users.noreply.github.com>
|
|
Configuration: Add per-game input profiles
|
|
video_core: add null backend
|
|
general: fix compile for Apple Clang
|
|
input_common: Pump SDL events from main thread
|
|
|
|
Also only reads/writes applicable configs for the custom profiles.
|
|
This is only used in the non-Windows path.
|
|
CMake: rework for Qt6 support
|
|
|
|
|
|
|
|
service: am: Implement cabinet applet
|
|
|
|
Gating the IR Sensor code behind a macro like so
`#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) && YUZU_USE_QT_MULTIMEDIA`
The YUZU_USE_QT_MULTIMEDIA flag is implemented in later commit
Also the locale fix in src/yuzu/main.cpp is now gated against Qt6,
as it causes compilation error
|
|
Add break for default cases
|
|
Visual Studio has an option to search all files in a solution, so I
did a search in there for "default:" looking for any missing break
statements.
I've left out default statements that return something, and that throw
something, even if via ThrowInvalidType. UNREACHABLE leads towards throw
R_THROW macro leads towards a return
|
|
|
|
|
|
|
|
|
|
Add CPU core count to log files
|