Age | Commit message (Collapse) | Author |
|
-mwindows doesn't work with Clang. tpoechtrager/wclang resolves this by
just using MinGW-GCC to link the executable, however this prevents us
from using LLVM-exclusive tools when building yuzu.
Solution is to send the linker argument we need from -mwindows directly
to the linker.
From https://gcc-help.gcc.gnu.narkive.com/FogklN5J/gcc-wl-subsystem-windows-mwindows-options
|
|
|
|
Another request from GillianMC.
The translated strings have been placed in a separate "Hotkeys" context as an alternative
to having to add the tr function to the Config class, or adding them to ConfigureHotkeys
context which is quite long. The English strings get attached to the items in the Action
column as "data", and are used for RetranslateUI and saving the hotkey configuration.
|
|
Use auto and a more descriptive variable name.
Secondly, fix some C++ misconceptions or constructing too many objects.
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
Co-authored-by: Lioncash <mathew1800@gmail.com>
|
|
The Icon was renamed in #8283 for Linux builds, and the fix proposed in #8312 would in turn break
the icon for Windows users.
I've decided to fix the aboutdialog.ui file via qtcreator.
I'm not sure its important to have the yuzu icon inside the About dialog grabbed from the local Qt theme,
but I've reword how the code works for that, and we can just delete those lines.
I've also thrown the yuzu.png through pngcrush to remove this warning
libpng warning: iCCP: known incorrect sRGB profile
Credit to abouvier for bringing bug up.
|
|
See ffd3afcf2
|
|
See ffd3afcf2
|
|
Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>
|
|
yuzu: config: Improve analog stick mapping
|
|
Looks like it was just missed when it was added, as currently the Network Tab only has one item
RetranslateUI is used more commonly throughout the project
|
|
The Custom RTC widget is under the influence of the computers System Locale.
The format strings are not necessarily related. As a small example, setting the Windows Language to Dansk, and then trying to use yuzu in English the requested AM/PM indicator is simply not shown
The display format for the Custom RTC field needs to be removed from src/yuzu/configuration/configure_system.ui
modifying the display format needs to be moved to src/yuzu/configuration/configure_system.cpp
|
|
Language List is from Dolphin, specifically https://github.com/dolphin-emu/dolphin/blob/master/Source/Core/DolphinQt/Settings/InterfacePane.cpp#L30
Any languages that are compiled in, but not in the list will be at the end.
|
|
to a stick
|
|
|
|
hotkeys: Trigger actions on a separate thread
|
|
|
|
This formats all copyright comments according to SPDX formatting guidelines.
Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
|
|
input_common: Map sticks correctly when mapped sideways
|
|
bootmanager: Don't create another screenshot request if previous one is not done yet
|
|
ui: translate hat directions
|
|
|
|
QObject ends up being its own translation context. But this works in our
favor. GetButtonName and GetDirectionName will share one translation the
directions such as "Left" "Right" and the ConfigureInputPlayer context
will contain translations that show up in the form, in places that aren't
those buttons.
|
|
Follow-up to 284934ebfdf5e530c960cf69969172ff76f40bea
Fixes #8218
|
|
done yet
|
|
ui: Fix Game Compatibility list translations
|
|
Reported by GillianMC on Discord. Looks to be a small quirk in the QT API.
setText(QObject::tr(status.text));
bringing up QObject breaks the link with the GameListItemCompat
|
|
|
|
|
|
|
|
Long story short, QT doesn't allow the link colors to be set via their stylesheets.
There are two ways to work with this, specify the color manually for every link (See the About dialog) The other way is to change the default palette.
IsDarkTheme is copy/pasted from src/yuzu/debugger/wait_tree.cpp
|
|
|
|
configuration: Add Paranoid CPU accuracy level
|
|
configure_hotkeys: Make first column stretch and not last column
|
|
|
|
Also configure minimum width of columns to be 150px.
|
|
This provides more sensible column widths.
|
|
configure_debug: Fix typo
|
|
build: cleanup installation of yuzu and yuzu-cmd
|
|
|
|
Explicitly specifying an install destination is not needed anymore since
CMake 3.14.
By removing the hardcoded ${CMAKE_INSTALL_PREFIX}/bin it is also now
possible to override the install destination via the command line. For
example, you can now install yuzu to /usr/games with
-DCMAKE_INSTALL_BINDIR=games
|
|
|
|
Disables most optimizations for the paranoid.
|
|
I thought I removed the double-asterisks in
db637b5a4c02772eb827ed01a6ecb430e4b65daa but I am apparently mistaken.
This corrects that.
While we're at it, capitalize `All` in the previous setting.
|
|
yuzu qt: Disable the web applet by default
|
|
|
|
|
|
|
|
|
|
|
|
The web applet causes multiple issues with the rest of the application.
Disable it by default and add a debug option to re-enable it until a
proper solution can be found.
|