Browse Source

chagenlog & Disclaimer

pull/240/head
JT 1 year ago
parent
commit
5d21d7ad1a
  1. 2
      CHANGELOG.md
  2. 5
      StabilityMatrix.Core/Models/Packages/KohyaSs.cs

2
CHANGELOG.md

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
- Added **Outputs page** for viewing generated images from any package, or the shared output folder
- Added [Stable Diffusion WebUI/UX](https://github.com/anapnoe/stable-diffusion-webui-ux) package
- Added [Stable Diffusion WebUI-DirectML](https://github.com/lshqqytiger/stable-diffusion-webui-directml) package
- Added [kohya_ss](https://github.com/bmaltais/kohya_ss) package
- Added GPU compatibility badges to the installers
- Added filtering of "incompatible" packages (ones that do not support your GPU) to all installers
- This can be overridden by checking the new "Show All Packages" checkbox
@ -33,6 +34,7 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
- Fixed Inference popup Install button not working on One-Click Installer
- Fixed Inference Prompt Completion window sometimes not showing while typing
- Fixed "Show Model Images" toggle on Checkpoints page sometimes displaying cut-off model images
- Fixed missing httpx package during Automatic1111 install
## v2.5.6
### Added

5
StabilityMatrix.Core/Models/Packages/KohyaSs.cs

@ -23,7 +23,7 @@ public class KohyaSs : BaseGitPackage
: base(githubApi, settingsManager, downloadService, prerequisiteHelper) { }
public override string Name => "kohya_ss";
public override string DisplayName { get; set; } = "Kohya's GUI";
public override string DisplayName { get; set; } = "kohya_ss";
public override string Author => "bmaltais";
public override string Blurb =>
"A Windows-focused Gradio GUI for Kohya's Stable Diffusion trainers";
@ -42,7 +42,8 @@ public class KohyaSs : BaseGitPackage
public override TorchVersion GetRecommendedTorchVersion() => TorchVersion.Cuda;
public override string Disclaimer => "Nvidia GPU with at least 8GB VRAM is recommended";
public override string Disclaimer =>
"Nvidia GPU with at least 8GB VRAM is recommended. May be unstable on Linux.";
public override bool OfferInOneClickInstaller => false;
public override SharedFolderMethod RecommendedSharedFolderMethod => SharedFolderMethod.Symlink;

Loading…
Cancel
Save