summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration/configure_service.cpp
AgeCommit message (Collapse)Author
2021-08-12configuration: add option to select network interfacespholz
This commit renames the "Services" tab to "Network" and adds a combobox that allows the user to select the network interface that yuzu should use. This new setting is now used to get the local IP address in Network::GetHostIPv4Address. This prevents yuzu from selecting the wrong network interface and thus using the wrong IP address. The return type of Network::GetHostIPv4Adress has also been changed.
2021-06-28general: Make most settings a BasicSettinglat9nq
Creates a new BasicSettings class in common/settings, and forces setting a default and label for each setting that uses it in common/settings. Moves defaults and labels from both frontends into common settings. Creates a helper function in each frontend to facillitate reading the settings now with the new default and label properties. Settings::Setting is also now a subclass of Settings::BasicSetting. Also adds documentation for both Setting and BasicSetting.
2021-04-14common: Move settings to common from core.bunnei
- Removes a dependency on core and input_common from common.
2021-01-17configure_service: Only compile FormatEventStatusString when ↵lat9nq
YUZU_ENABLE_BOXCAT is enabled The function is unused if YUZU_ENABLE_BOXCAT is disabled, causing a -Wunused-funciton error when compiled. Wrapping it with `#ifdef YUZU_ENABLE_BOXCAT` to prevent compiling the function when the variable is disabled. Opting to not use [[maybe unused]] in case the function is totally unused in the future.
2020-06-20Add translation of "Current Boxcat Events"David Marcec
2020-06-19Fix compilation when not building with boxcatDavid Marcec
Fixes compilation when trying to build without boxcat enabled
2019-10-04yuzu/configure_service: Silence -WswitchReinUsesLisp
2019-10-02qt: Add service dialogZach Hilman
2019-09-30boxcat: Implement events global fieldZach Hilman
2019-09-30yuzu: Add UI tab to configure BCAT servicesZach Hilman
Also displays current events if boxcat is selected.