| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-09-12 | Merge pull request #1302 from lioncash/config | bunnei | |
| yuzu/configure_gamelist: Mark combo-box strings as translatable | |||
| 2018-09-12 | Merge pull request #1163 from FearlessTobi/add-audio-stretching | bunnei | |
| audio_core: Add audio stretching support | |||
| 2018-09-12 | yuzu/configure_gamelist: Make combo box strings translatable | Lioncash | |
| Given these are shown to the user, they should be translatable. While we're at it, also set up the dialog to automatically retranslate the dialog along with the combo boxes if it receives a LanguageChange event. | |||
| 2018-09-12 | yuzu/configure_gamelist: Use std::array instead of std::vector for ↵ | Lioncash | |
| translatable strings We don't need to use an allocating container for these, given we know the fixed amount of strings being used. This is just a waste of memory. | |||
| 2018-09-12 | yuzu/configure_gamelist: Move combo box initializtion to their own functions | Lioncash | |
| Keeps the individual initialization of the combo boxes logically separate. We also shouldn't be dumping this sort of thing in the constructor directly. | |||
| 2018-09-11 | Merge pull request #1278 from tech4me/bg-color-fix | bunnei | |
| Port Citra #4047 & #4052: add change background color support | |||
| 2018-09-10 | Port #4141 from citra: Joystick hotplug support (#1275) | Tobias | |
| * Joystick hotplug support (#4141) * use SDL_PollEvent instead of SDL_JoystickUpdate Register hot plugged controller by GUID if they were configured in a previous session * Move SDL_PollEvent into its own thread * Don't store SDLJoystick pointer in Input Device; Get pointer on each GetStatus call * Fix that joystick_list gets cleared after SDL_Quit * Add VirtualJoystick for InputDevices thats never nullptr * fixup! Add VirtualJoystick for InputDevices thats never nullptr * fixup! fixup! Add VirtualJoystick for InputDevices thats never nullptr * Remove SDL_GameController, make SDL_Joystick* unique_ptr * fixup! Remove SDL_GameController, make SDL_Joystick* unique_ptr * Adressed feedback; fixed handling of same guid reconnects * fixup! Adressed feedback; fixed handling of same guid reconnects * merge the two joystick_lists into one * make SDLJoystick a member of VirtualJoystick * fixup! make SDLJoystick a member of VirtualJoystick * fixup! make SDLJoystick a member of VirtualJoystick * fixup! fixup! make SDLJoystick a member of VirtualJoystick * SDLJoystick: Addressed review comments * Address one missed review comment | |||
| 2018-09-10 | Remove multicore configure_general.ui | MysticExile | |
| 2018-09-10 | remove multicore in configure_general.cpp | MysticExile | |
| 2018-09-08 | Port Citra #4047 & #4052: add change background color support | tech4me | |
| 2018-09-08 | Add audio stretching support | fearlessTobi | |
| 2018-09-03 | settings: Save and load NAND/SD dirs from config | Zach Hilman | |
| 2018-08-28 | yuzu: Fix stick UI direction order | fearlessTobi | |
| 2018-08-23 | qt: Make default row data title name and title id | Zach Hilman | |
| Helps with installed games by making the title not a hexadecimal id string, instead the name. | |||
| 2018-08-22 | Swap "Plus" with "Minus" on the controller GUI (#1150) | literalmente-game | |
| * Swap "Plus" with "Minus" on the controller GUI Major fix /s | |||
| 2018-08-21 | config: Fixed icon size get set to 0 | tech4me | |
| 2018-08-21 | Port #3353 from Citra | fearlessTobi | |
| 2018-08-08 | Merge pull request #850 from DarkLordZach/icon-meta | bunnei | |
| Add Icons and Metadata Support | |||
| 2018-08-07 | configure_gamelist: Use explicit QVariant constructor | Zach Hilman | |
| 2018-08-07 | qt/hotkey: Get rid of global hotkey map instance | Lioncash | |
| Instead, we make a proper registry class and house it within the main window, then pass it to whatever needs access to the loaded hotkeys. This way, we avoid a global variable, and don't need to initialize a std::map instance before the program can do anything. | |||
| 2018-08-06 | Use const where applicable | Zach Hilman | |
| 2018-08-06 | Avoid parsing RomFS to directory in NCA | Zach Hilman | |
| 2018-08-06 | GDBStub works with both Unicorn and Dynarmic now (#941) | Hedges | |
| * GDBStub works with both Unicorn and Dynarmic now * Tidy up | |||
| 2018-08-06 | qt: Default destructors where applicable | Lioncash | |
| Makes code consistent with our style of defaulting special member functions where applicable. | |||
| 2018-08-04 | Merge pull request #849 from DarkLordZach/xci | bunnei | |
| XCI and Encrypted NCA Support | |||
| 2018-08-03 | Added ability to change username & language code in the settings ui. Added ↵ | David | |
| IProfile::Get and SET::GetLanguageCode for libnx tests (#851) | |||
| 2018-08-01 | Remove files that are not used | Zach Hilman | |
| 2018-07-31 | audio_core: Add configuration settings. | bunnei | |
| 2018-07-29 | Port #3911 from Citra: "Optimize settings application" | fearlessTobi | |
| 2018-07-21 | file_util: Use an enum class for GetUserPath() | Lioncash | |
| Instead of using an unsigned int as a parameter and expecting a user to always pass in the correct values, we can just convert the enum into an enum class and use that type as the parameter type instead, which makes the interface more type safe. We also get rid of the bookkeeping "NUM_" element in the enum by just using an unordered map. This function is generally low-frequency in terms of calls (and I'd hope so, considering otherwise would mean we're slamming the disk with IO all the time) so I'd consider this acceptable in this case. | |||
| 2018-07-17 | settings: Turn docked mode off by default. | bunnei | |
| 2018-07-02 | Add configurable logging backends | James Rowe | |
| 2018-06-27 | settings: Add a configuration for use_accurate_framebuffers. | bunnei | |
| 2018-05-10 | core: Add a configuration setting for use_multi_core. | bunnei | |
| 2018-03-30 | Remove whitespaces | N00byKing | |
| 2018-03-30 | Add Dark theme, Icon theming | N00byKing | |
| configure_general.ui: Add UI Option for Themes config.cpp: Save Theme Settings | |||
| 2018-03-26 | config: Use simplified checkbox (from Citra) for CPU JIT. | bunnei | |
| 2018-03-26 | config: Rename is_docked to use_docked_mode to be consistent with other ↵ | bunnei | |
| config bools. | |||
| 2018-03-26 | configure_general: Cleanup naming. | bunnei | |
| 2018-03-26 | qt: Add config option for is_docked. | bunnei | |
| 2018-03-26 | config: Add setting for whether the system is docked or not. | bunnei | |
| 2018-02-14 | pls, that was easy | Hexagon12 | |
| 2018-01-20 | Format: Run the new clang format on everything | James Rowe | |
| 2018-01-18 | Merge pull request #104 from RiverCityRansomware/resizedConfigWindow | bunnei | |
| Port citra #3336 | |||
| 2018-01-18 | ui: Rename almost all classes in configuration_input.ui (#99) | Evgeni Danailov | |
| * Rename verticalLayout_25 to verticalLayout_23. * Rename almost all classes. | |||
| 2018-01-18 | Port citra #3336 - Resizes the configuration window to not be so stretched out | River City Ransomware | |
| 2018-01-17 | Merge pull request #57 from nkatz565/fix-tr | bunnei | |
| Fix non translated string (same as Citra PR 2949) | |||
| 2018-01-17 | Fixed formatting | noah katz | |
| 2018-01-16 | Fix non translated string (same as Citra PR 2949) | noah katz | |
| 2018-01-16 | Merge pull request #45 from FearlessTobi/patch-1 | bunnei | |
| Implement Pull #3030 from Citra: Rename derivative class name | |||
