| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-04-13 | Merge pull request #2357 from zarroboogs/force-30fps-mode | bunnei | |
| Add a toggle to force 30FPS mode | |||
| 2019-04-11 | ui_settings: Rename game directory variables | FreddyFunk | |
| 2019-04-09 | Merge pull request #2132 from FearlessTobi/port-4437 | bunnei | |
| Port citra-emu/citra#4437: "citra-qt: Make hotkeys configurable via the GUI (Attempt 2)" | |||
| 2019-04-09 | added a toggle to force 30fps mode | zarroboogs | |
| 2019-03-29 | core/yuzu: Remove enable_nfc setting | fearlessTobi | |
| This was initially added to prevent problems from stubbed/not implemented NFC services, but as we never encountered such and as it's only used in a deprecated function anyway, I guess we can just remove it to prevent more clutter of the settings. | |||
| 2019-03-16 | yuzu: Make hotkeys configurable via the GUI | Adityarup Laha | |
| * Adds a new Hotkeys tab in the Controls group. * Double-click a Hotkey to rebind it. | |||
| 2019-03-07 | citra_qt: Settings (configuration) rework | zhupengfei | |
| 2019-03-06 | settings: Add new graphics setting for use_asynchronous_gpu_emulation. | bunnei | |
| 2019-02-06 | settings: Hide shader cache behind a setting | ReinUsesLisp | |
| 2019-01-26 | Use QPixmap/QIcon for background color selection button | xperia64 | |
| 2019-01-22 | citra_qt: Log settings on launch | zhupengfei | |
| 2019-01-21 | Merge pull request #2035 from lioncash/fwd-decl | bunnei | |
| yuzu/configuration: Remove unnecessary inclusions where applicable | |||
| 2019-01-17 | yuzu/configuration/configure_input_player: Forward declare types where ↵ | Lioncash | |
| applicable Allows removing the inclusion of the main input common header from the UI config header. | |||
| 2019-01-17 | yuzu/configuration/configure_touchscreen_advanced: Remove unnecessary header ↵ | Lioncash | |
| inclusions | |||
| 2019-01-17 | yuzu/configuration/configure_per_general: Remove unused header inclusions | Lioncash | |
| 2019-01-17 | yuzu/configuration/configure_debug: Remove unused header inclusions | Lioncash | |
| 2019-01-17 | yuzu/configuration/configure_system: Remove unused header inclusions | Lioncash | |
| 2019-01-17 | yuzu/configuration/configure_web: Remove an unused lambda capture | Lioncash | |
| 'this' isn't actually used within the lambda, since what we need from the class is already assigned within the capture section of the lambda. | |||
| 2019-01-17 | yuzu/configuration/configure_web: Use an ellipsis with 'Verifying' text | Lioncash | |
| It's a common UI pattern to use an ellipsis to indicate an ongoing action, rather than just specifying the word by itself. | |||
| 2019-01-07 | settings: Fix comment structure | Zach Hilman | |
| 2019-01-07 | settings: Use std::chrono::seconds instead of s64 for RTC | Zach Hilman | |
| 2019-01-07 | qt: Provide UI to edit custom RTC settings | Zach Hilman | |
| 2019-01-07 | settings: Add custom RTC settings | Zach Hilman | |
| Stored as signed seconds since epoch. | |||
| 2019-01-04 | qt: Move profile manager to own UI tab | Zach Hilman | |
| 2019-01-02 | Merge pull request #1942 from DarkLordZach/profile-select-game-boot | bunnei | |
| qt: Add setting to prompt for user on game boot | |||
| 2019-01-02 | Merge pull request #1944 from FearlessTobi/port-4187 | bunnei | |
| Port citra-emu/citra#4187: "Qt/Configure: Use sidebar to divide tabs into smaller groups" | |||
| 2018-12-31 | yuzu/configure_general: Silence truncation warnings in loadConfiguration() | Lioncash | |
| The QPixmap API expects an unsigned int. | |||
| 2018-12-31 | yuzu/config: Silence truncation warnings | Lioncash | |
| 2018-12-28 | Qt/Configure: Use sidebar to divide tabs into smaller groups | spycrab | |
| 2018-12-27 | am: Implement GetSaveDataSize and ExtendSaveData | Zach Hilman | |
| These functions come in a pair and are needed by Smash Ultimate, Minecraft, and Skyrim, amongst others. | |||
| 2018-12-26 | Merge pull request #1948 from lioncash/translatable | bunnei | |
| configure_per_general: Mark UI strings as translatable in the constructor | |||
| 2018-12-26 | configure_per_general: Mark UI strings as translatable in the constructor | Lioncash | |
| These are user-facing strings, so they should be translatable. | |||
| 2018-12-26 | configure_input_simple: Make input profile array constexpr | Lioncash | |
| Calling tr() from a file-scope array isn't advisable, since it can be executed before the Qt libraries are even fully initialized, which can lead to crashes. Instead, the translatable strings should be annotated, and the tr() function should be called at the string's usage site. | |||
| 2018-12-25 | qt: Add setting to prompt for user on game boot | Zach Hilman | |
| Using the QtProfileSelectorDialog, this implementation is trivial. This mimics the real switch behavior of asking which user on every game boot, but it is default disabled as that might get inconvenient. | |||
| 2018-12-23 | Merge pull request #1886 from FearlessTobi/port-4164 | bunnei | |
| Port citra-emu/citra#4164: "citra_qt, video_core: Screenshot functionality" | |||
| 2018-12-23 | Merge pull request #1780 from DarkLordZach/controller-profiles | bunnei | |
| configure_input: Add Controller Setup Profiles and simplify input UI | |||
| 2018-12-18 | yuzu, video_core: Screenshot functionality | zhupengfei | |
| Allows capturing screenshot at the current internal resolution (native for software renderer), but a setting is available to capture it in other resolutions. The screenshot is saved to a single PNG in the current layout. | |||
| 2018-12-13 | audio_core: Make g_sink_details internally linked | Lioncash | |
| We can hide the direct array from external view and instead provide functions to retrieve the necessary info. This has the benefit of completely hiding the makeup of the SinkDetails structure from the rest of the code. Given that this makes the array hidden, we can also make the array constexpr by altering the members slightly. This gets rid of several static constructor calls related to std::vector and std::function. Now we don't have heap allocations here that need to occur before the program can even enter main(). It also has the benefit of saving a little bit of heap space, but this doesn't matter too much, since the savings in that regard are pretty tiny. | |||
| 2018-12-10 | Merge pull request #1819 from DarkLordZach/disable-addons | bunnei | |
| patch_manager: Add support for disabling patches | |||
| 2018-12-05 | configure_input_simple: Properly signal docked mode change | Zach Hilman | |
| 2018-12-05 | configure_input: Add ConfigureInputSimple as default input UI config | Zach Hilman | |
| Greatly simplifies the current input UI, while still allowing power users to tweak advanced settings. Adds 'input profiles', which are easy autoconfigurations to make getting started easy and fast. Also has a custom option which brings up the current, full UI. | |||
| 2018-12-05 | configure_input: Convert into QDialog | Zach Hilman | |
| 2018-12-05 | configure: Use ConfigureInputSimple for Input tab | Zach Hilman | |
| 2018-12-05 | ui_settings: Add UI setting for input profile index | Zach Hilman | |
| 2018-12-05 | configuration/config: Use an intermediary variable for accessing players | Lioncash | |
| Avoids typing the same long accessor just to retrieve player attributes. | |||
| 2018-12-04 | qt: Add Properties menu to game list right-click | Zach Hilman | |
| 2018-12-03 | qt: Add UI to display game properties and disable add-ons | Zach Hilman | |
| 2018-12-03 | config: Store and load disabled add-ons list | Zach Hilman | |
| 2018-12-02 | yuzu/configuration: Make slots private where applicable | Lioncash | |
| These slots are only ever attached to event handling mechanisms within the class itself, they're never used externally. Because of this, we can make the functions private. This also removes redundant usages of the private access specifier. | |||
| 2018-12-02 | yuzu/configuration: Add missing override specifiers to configuration-related ↵ | Lioncash | |
| classes Resolves trivial compiler warnings. | |||
