diff options
author | TSRBerry <20988865+TSRBerry@users.noreply.github.com> | 2023-04-16 17:25:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-16 15:25:20 +0000 |
commit | 69b6ef7a4ae36994c293e423e1203096c294744c (patch) | |
tree | 3e8de70aee70ae0d28fd2684bea6e6606142d9cf /Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs | |
parent | 40e87c634ece65da3f740fcfbb6acb43e5cd71b3 (diff) |
[GUI] Add network interface dropdown (#4597)1.1.717
* Add network adapter dropdown from LDN build
* Ava: Add NetworkInterfaces to SettingsNetworkTab
* Add headless network interface option
* Add network interface dropdown to Avalonia
* Fix handling network interfaces without a gateway address
* gtk: Actually save selected network interface to config
* Increment config version
Diffstat (limited to 'Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs')
-rw-r--r-- | Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs b/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs index cb9adc86..c9e7f80e 100644 --- a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs @@ -14,7 +14,7 @@ namespace Ryujinx.Ui.Common.Configuration /// <summary> /// The current version of the file format /// </summary> - public const int CurrentVersion = 45; + public const int CurrentVersion = 46; /// <summary> /// Version of the configuration file format @@ -351,6 +351,11 @@ namespace Ryujinx.Ui.Common.Configuration public string PreferredGpu { get; set; } /// <summary> + /// GUID for the network interface used by LAN (or 0 for default) + /// </summary> + public string MultiplayerLanInterfaceId { get; set; } + + /// <summary> /// Uses Hypervisor over JIT if available /// </summary> public bool UseHypervisor { get; set; } |