Browse Source

Merge branch 'main' into inference

pull/165/head
Ionite 1 year ago committed by GitHub
parent
commit
bda1f03771
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 1
      StabilityMatrix.Avalonia/Assets.cs
  3. 2
      StabilityMatrix.Core/Models/Packages/A3WebUI.cs
  4. 4
      StabilityMatrix.Core/Models/RemoteResource.cs
  5. 1
      StabilityMatrix.Core/Models/SharedFolderType.cs

4
CHANGELOG.md

@ -5,6 +5,10 @@ All notable changes to Stability Matrix will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html).
## v2.4.6
### Added
- LDSR / ADetailer shared folder links for Automatic1111 Package
## v2.4.5
### Fixed
- Fixed "Library Dir not set" error on launch

1
StabilityMatrix.Avalonia/Assets.cs

@ -5,6 +5,7 @@ using System.Runtime.Versioning;
using Avalonia.Platform;
using StabilityMatrix.Avalonia.Models;
using StabilityMatrix.Core.Helper;
using StabilityMatrix.Core.Models;
namespace StabilityMatrix.Avalonia;

2
StabilityMatrix.Core/Models/Packages/A3WebUI.cs

@ -56,6 +56,8 @@ public class A3WebUI : BaseGitPackage
[SharedFolderType.Hypernetwork] = new[] { "models/hypernetworks" },
[SharedFolderType.ControlNet] = new[] { "models/ControlNet" },
[SharedFolderType.Codeformer] = new[] { "models/Codeformer" },
[SharedFolderType.LDSR] = new[] { "models/LDSR" },
[SharedFolderType.AfterDetailer] = new[] { "models/adetailer" }
};
[SuppressMessage("ReSharper", "ArrangeObjectCreationWhenTypeNotEvident")]

4
StabilityMatrix.Avalonia/Models/RemoteResource.cs → StabilityMatrix.Core/Models/RemoteResource.cs

@ -1,6 +1,4 @@
using System;
namespace StabilityMatrix.Avalonia.Models;
namespace StabilityMatrix.Core.Models;
/// <summary>
/// Defines a remote downloadable resource.

1
StabilityMatrix.Core/Models/SharedFolderType.cs

@ -28,4 +28,5 @@ public enum SharedFolderType
CLIP = 1 << 18,
ScuNET = 1 << 19,
GLIGEN = 1 << 20,
AfterDetailer = 1 << 21
}

Loading…
Cancel
Save