Browse Source

Change port options to string

pull/5/head
Ionite 1 year ago
parent
commit
548213737a
No known key found for this signature in database
  1. 4
      StabilityMatrix/Models/Packages/A3WebUI.cs
  2. 6
      StabilityMatrix/Models/Packages/DankDiffusion.cs
  3. 6
      StabilityMatrix/Models/Packages/VladAutomatic.cs

4
StabilityMatrix/Models/Packages/A3WebUI.cs

@ -40,8 +40,8 @@ public class A3WebUI : BaseGitPackage
new()
{
Name = "Port",
Type = LaunchOptionType.Int,
DefaultValue = 7860,
Type = LaunchOptionType.String,
DefaultValue = "7860",
Options = new() {"--port"}
},
new()

6
StabilityMatrix/Models/Packages/DankDiffusion.cs

@ -33,6 +33,12 @@ public class DankDiffusion : BasePackage
{
Name = "Xformers",
Options = new List<string> { "--xformers" }
},
new()
{
Name = "Extra Launch Arguments",
Type = LaunchOptionType.String,
Options = new() {""}
}
};

6
StabilityMatrix/Models/Packages/VladAutomatic.cs

@ -38,6 +38,12 @@ public class VladAutomatic : BaseGitPackage
{
Name = "Xformers",
Options = new() { "--xformers" }
},
new()
{
Name = "Extra Launch Arguments",
Type = LaunchOptionType.String,
Options = new() {""}
}
};

Loading…
Cancel
Save