Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-12-31 | chore: update project branding to citron | Zephyron | |
2024-01-15 | Fix more typos | Viktor Szépe | |
2023-11-21 | shared_widget: Explicit capture of 'this' | Merry | |
2023-09-14 | shared_widget: Use default literals more | lat9nq | |
2023-09-13 | shared_widget: Forward-port Citra changes | lat9nq | |
Seemed like a good time to move these over. Also remove usage of std::sto{l,ll,ul,f,d} | |||
2023-09-03 | msvc: set warning level to /W4 globally | Danila Malyutin | |
And fix a bunch of warnings | |||
2023-08-26 | Merge pull request #11356 from lat9nq/console-mode-pg | liamwhite | |
general,config-qt: Present Console Mode as an enum with separate options in game properties | |||
2023-08-25 | ui: Fixed inverted controls on ReverseSlider widgets | BenjaminHalko | |
fixes: #11236 | |||
2023-08-22 | shared_widget: Implement radio groups | lat9nq | |
2023-07-30 | shared_widget: Only save global settings as needed | lat9nq | |
Fixes a potential but not reproduced issue where the custom config is being applied to the global config. | |||
2023-07-23 | shared_widget: Determine default request earlier | lat9nq | |
Fixes a bug where a restore button could be created for an unmanaged widget. | |||
2023-07-22 | shared_widget: Use QRegularExpression | lat9nq | |
2023-07-21 | common,qt-config: Remove usage of forward_list | lat9nq | |
2023-07-21 | common: Move global configuration state modifiers back to settings | lat9nq | |
2023-07-21 | configuration: Use enum index | lat9nq | |
2023-07-21 | settings,configuration: Add a default suffix | lat9nq | |
2023-07-21 | configuration: Use paired settings | lat9nq | |
2023-07-21 | shared_widget: Internalize component restoring | lat9nq | |
2023-07-21 | configuration: Use specialization of settings | lat9nq | |
Reduces some ugliness in frontend code. | |||
2023-07-21 | configuration: Use a builder to create widgets | lat9nq | |
This gets rid of some repeated code and sets us up to send more information to the new widget. | |||
2023-07-21 | shared_widget: Correct spelling | lat9nq | |
2023-07-21 | common,yuzu-qt: GCC warning silences | lat9nq | |
Fixes -Wshadow, -Wdeprecated, and catch by copy rather than by ref. | |||
2023-07-21 | shared_widget: Some documentation, add shorter constructor | lat9nq | |
The shorter constructor enables us to specify some options without needing to specify the default values of multiplier which wasn't always appropriate and could be confusing. | |||
2023-07-21 | shared_widget: Improve logging, use Setting::Ranged | lat9nq | |
2023-07-21 | configuration/shared: Clean up includes [IWYU] | lat9nq | |
2023-07-21 | (ui,)settings: Use explicit instantiation | lat9nq | |
Reduces compile times a tad on clang. | |||
2023-07-21 | shared_widget: Avoid calling QWidgetPrivate::setVisible | lat9nq | |
This particular setVisible function is unnecessary. It also has horrible runtime performance, so much that it consumed maybe 80% of the time used to create a widget. | |||
2023-07-21 | shared_widget: Add SPDX header | lat9nq | |
2023-07-21 | general: Add typeinfo where needed | lat9nq | |
Using typeid without including typeinfo first produces an ill-formed program. | |||
2023-07-21 | shared_widget: Use actionTriggered for user input signals | lat9nq | |
Clicking the slider without directly interacting with the slider handle would change the value, but not trigger the restore button. | |||
2023-07-21 | shared_widget: Fix includes | lat9nq | |
2023-07-21 | shared_widget: Complete refactoring | lat9nq | |
Reduces code bloat a good bit by moving code specific to each sub widget to their own functions. | |||
2023-07-21 | shared_widget: Refactor again | lat9nq | |
Starting with combobox Putting code specific to the sub-widget in their own function. | |||
2023-07-21 | shared_widget: Force min width of 100 for restore button | lat9nq | |
Dark theme mandates a 100px minimum width for QAbstractButton, even though this is not desired here. | |||
2023-07-21 | configuration: Clean up includes a bit | lat9nq | |
2023-07-21 | configuration: Use a mapping of setting value to name | lat9nq | |
Makes comboboxes always correspond to the value of the setting they're modifying. | |||
2023-07-21 | settings, shared_widget: typo fixes | lat9nq | |
2023-07-21 | configure_audio: Implement ui generation | lat9nq | |
Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation configure_audio: Implement ui generation Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation settings: Make audio settings as enums | |||
2023-07-21 | shared_widget: Use a better icon | lat9nq | |
This one looks more relevant on Windows. | |||
2023-07-21 | shared_widget: Refactor helpers | lat9nq | |
Makes checkbox creation an option as opposed to a label. | |||
2023-07-21 | configure_system: Implement with for loop | lat9nq | |
2023-07-21 | shared_widget: Internalize extra setting configuration | lat9nq | |
2023-07-21 | shared_widget: Support checkbox + spinbox | lat9nq | |
2023-07-21 | shared_widget: Make button creation static | lat9nq | |
2023-07-21 | configuration: Move CreateWidget to a class | lat9nq | |
We were passing so many objects between the function and the caller that it needed to be redesigned. |