Skip to content

Commit

Permalink
Merge pull request #759 from ionite34/backport/main/pr-758
Browse files Browse the repository at this point in the history
[dev to main] backport: Fix swarm args (758)
  • Loading branch information
mohnjiles authored Aug 8, 2024
2 parents 5644f30 + 9ded82d commit 86db8db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
- Fixed incorrect IPAdapter download links in the HuggingFace model browser
- Fixed potential memory leak of transient controls (Inference Prompt and Output Image Viewer) not being garbage collected due to event subscriptions
- Fixed Batch Count seeds not being recorded properly in Inference projects and image metadata
- Fixed [#795](https://github.com/LykosAI/StabilityMatrix/issues/795) - SwarmUI launch args not working properly
### Supporters
#### Visionaries
- Shoutout to our Visionary-tier Patreon supporter, **Scopp Mcdee**! Huge thanks for your continued support!
#### Pioneers
- Many thanks to our Pioneer-tier supporters on Patreon: **tankfox**, **tanangular**, **Mr. Unknown**, and **Szir777**! Your continued support is greatly appreciated!

## v2.11.5
### Added
Expand Down
4 changes: 3 additions & 1 deletion StabilityMatrix.Core/Models/Packages/StableSwarm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ void HandleConsoleOutput(ProcessOutput s)

dotnetProcess = await prerequisiteHelper
.RunDotnet(
args: [Path.Combine(releaseFolder, dllName), arguments.TrimEnd()],
args: new ProcessArgs(new[] { Path.Combine(releaseFolder, dllName) }).Concat(
arguments.TrimEnd()
),
workingDirectory: installedPackagePath,
envVars: aspEnvVars,
onProcessOutput: HandleConsoleOutput,
Expand Down

0 comments on commit 86db8db

Please sign in to comment.