| Age | Commit message (Collapse) | Author |
|
|
|
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
|
|
|
|
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
|
|
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.
|
|
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
|
|
|
|
|
|
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.
|
|
|
|
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.
|
|
Allow the user to configure the web applet usage ahead of booting the
application.
|
|
Ensures the configs are written and saved between boots
|
|
Inlines implementation of exclusive instructions into JITted code,
improving performance of applications relying heavily on these
instructions.
We also fastmem these instructions for additional speed, with
support for appropriate recompilation on fastmem failure.
An unsafe optimization to disable the intercore global_monitor is also
provided, should one wish to rely solely on cmpxchg semantics for
safety.
See also: merryhime/dynarmic#664
|
|
- This will be used to enable emulation of a larger memory arrangement.
|
|
nfp: Improve amiibo support
|
|
|
|
common: Revise and fix the UUID implementation
|
|
yuzu: New hotkeys and mute audio on background
|
|
|
|
|
|
|
|
|
|
This completes the removal of the old UUID implementation.
|
|
|
|
yuzu: config: Vibrate the controller while configuring vibration strength
|
|
yuzu: ui: Improve battery symbols
|
|
|
|
|
|
input_common: Add home and hard touch press buttons to UDP controllers
|
|
configure_filesystem: Add missing changeEvent() override
|
|
hotkeys: Don't translate hotkey buttons
|
|
This allows the dialog to be retranslated during runtime if the language
is changed.
|
|
All other dialog types we have use CamelCase naming.
|