Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-21 | config: Remove unused functions | lat9nq | |
2023-07-21 | settings: Delete cpu_accuracy_first_time | lat9nq | |
Almost a 2 year old migration setting now | |||
2023-07-21 | shared_widget: Improve logging, use Setting::Ranged | lat9nq | |
2023-07-21 | settings: Document BasicSetting, add Ranged | lat9nq | |
2023-07-21 | settings: Move IsConfiguringGlobal to settings_common | lat9nq | |
2023-07-21 | configuration/shared: Clean up includes [IWYU] | lat9nq | |
2023-07-21 | configure_graphics: Fix vulkan_device bug | lat9nq | |
2023-07-21 | settings: Move some simple data to BasicSetting | lat9nq | |
Reduces the need for the compiler to duplicate this code, by about 100KB executable size. | |||
2023-07-21 | settings_setting: Fix errors | lat9nq | |
ToString didn't have a constexpr if statement where needed. Canonicalize missed an else, causing unreachable code error on MSVC. | |||
2023-07-21 | (ui,)settings: Use explicit instantiation | lat9nq | |
Reduces compile times a tad on clang. | |||
2023-07-21 | settings: Remove redundant false literals | lat9nq | |
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 | FIXME configuration: Avoid unnecessary allocations | lat9nq | |
ConfigurationShared::Widget needs to be created with a builder. This would avoid some duplicated code. | |||
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 | settings_enums: Add const type where needed | lat9nq | |
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_translation: Populate combobox enums with macro | lat9nq | |
2023-07-21 | settings: yuzu is not capitalized why is it capitalized stop no bad | lat9nq | |
2023-07-21 | configuration: Document odd widget cases | lat9nq | |
Explain why we need to do things differently at times, to serve as a reference. | |||
2023-07-21 | settings: Reorder | lat9nq | |
Groups graphics audio and system settings together in a way that reflects the frontend. This also just conceptually groups them more nicely than they were. | |||
2023-07-21 | shared_translation: Add translation for use video framrate | lat9nq | |
2023-07-21 | settings: Report all contained settings values | lat9nq | |
Also adds a couple characters that denotes the state of the setting. M for modified, or not default. C for custom, in context of per-game settings. | |||
2023-07-21 | settings_enums: Cannonicalize settings names | lat9nq | |
Gives every option of the enums a string literal via a macro. | |||
2023-07-21 | settings,general: Rename non-confirming enums | lat9nq | |
2023-07-21 | configuration: Use IDs to sort holds | lat9nq | |
2023-07-21 | settings,general: Rename/reorder setting ids | lat9nq | |
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 | android-config: Adapt settings rework | lat9nq | |
2023-07-21 | c_per_game: Inform when settings might not be configurable | lat9nq | |
2023-07-21 | shared_translation: Fix pragma once | lat9nq | |
2023-07-21 | shared_translation: Add translation for AstcRecompression | lat9nq | |
2023-07-21 | configure_system: Hide locale warn at start | lat9nq | |
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: Workaround for Windows Qt bug | lat9nq | |
Odd issue happens that dragging the cpu or system tabs in custom configs would cause the window to take up the entire verticle space of the screen. | |||
2023-07-21 | shared_translation: Add missing tooltips | lat9nq | |
2023-07-21 | settings: Make volume runtime-configurable | lat9nq | |
2023-07-21 | configuration: Clean up includes a bit | lat9nq | |
2023-07-21 | configuration_shared: Remove old custom config setup functions | lat9nq | |
2023-07-21 | configure_cpu: Generate UI | 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 | settings: Split enums to new file | lat9nq | |
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 | settings, uisettings: Initialize linkage counter | lat9nq | |
2023-07-21 | configure_system: Implement with for loop | lat9nq | |