From 0b79bb2f73ca2d755260fa109e1c0ddd8fa69403 Mon Sep 17 00:00:00 2001 From: NeuralFault <65365345+NeuralFault@users.noreply.github.com> Date: Fri, 21 Aug 2026 20:21:29 -0400 Subject: [PATCH 1/2] Fix launch mode option formatting in StableSwarm Underscores are used in the launch args in upstream. --- StabilityMatrix.Core/Models/Packages/StableSwarm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StabilityMatrix.Core/Models/Packages/StableSwarm.cs b/StabilityMatrix.Core/Models/Packages/StableSwarm.cs index 70d8110ab..ed9915a36 100644 --- a/StabilityMatrix.Core/Models/Packages/StableSwarm.cs +++ b/StabilityMatrix.Core/Models/Packages/StableSwarm.cs @@ -128,7 +128,7 @@ await RebuildDotnetProject(installedPackage.FullPath, csprojName, null) { Name = "Launch Mode", Type = LaunchOptionType.Bool, - Options = ["--launch-mode web", "--launch-mode webinstall"], + Options = ["--launch_mode web", "--launch_mode webinstall"], }, LaunchOptionDefinition.Extras, ]; From d503ef3872b42eeda0a16da7afb72f0f0375c121 Mon Sep 17 00:00:00 2001 From: NeuralFault <65365345+NeuralFault@users.noreply.github.com> Date: Fri, 21 Aug 2026 22:19:49 -0400 Subject: [PATCH 2/2] Add 'none' option to Launch Mode definitions --- StabilityMatrix.Core/Models/Packages/StableSwarm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StabilityMatrix.Core/Models/Packages/StableSwarm.cs b/StabilityMatrix.Core/Models/Packages/StableSwarm.cs index ed9915a36..b9d43abbb 100644 --- a/StabilityMatrix.Core/Models/Packages/StableSwarm.cs +++ b/StabilityMatrix.Core/Models/Packages/StableSwarm.cs @@ -128,7 +128,7 @@ await RebuildDotnetProject(installedPackage.FullPath, csprojName, null) { Name = "Launch Mode", Type = LaunchOptionType.Bool, - Options = ["--launch_mode web", "--launch_mode webinstall"], + Options = ["--launch_mode none", "--launch_mode web", "--launch_mode webinstall"], }, LaunchOptionDefinition.Extras, ];