Skip to content

Commit 42bb734

Browse files
authored
Merge pull request #287 from LykosAI/main
Release v2.6.4
2 parents d977f4e + 70cb033 commit 42bb734

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to Stability Matrix will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html).
77

8+
## v2.6.4
9+
### Fixed
10+
- Fixed errors preventing Model Browser from finding results with certain search queries
11+
812
## v2.6.3
913
### Fixed
1014
- Fixed InvalidOperationException during prerequisite installs on certain platforms where process name and duration reporting are not supported

StabilityMatrix.Avalonia/App.axaml.cs

+1
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ internal static IServiceCollection ConfigureServices()
423423
};
424424
jsonSerializerOptions.Converters.Add(new ObjectToInferredTypesConverter());
425425
jsonSerializerOptions.Converters.Add(new DefaultUnknownEnumConverter<CivitFileType>());
426+
jsonSerializerOptions.Converters.Add(new DefaultUnknownEnumConverter<CivitModelType>());
426427
jsonSerializerOptions.Converters.Add(
427428
new JsonStringEnumConverter(JsonNamingPolicy.CamelCase)
428429
);

StabilityMatrix.Core/Models/Api/CivitModelType.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,29 @@ public enum CivitModelType
1111
{
1212
[ConvertTo<SharedFolderType>(SharedFolderType.StableDiffusion)]
1313
Checkpoint,
14+
1415
[ConvertTo<SharedFolderType>(SharedFolderType.TextualInversion)]
1516
TextualInversion,
17+
1618
[ConvertTo<SharedFolderType>(SharedFolderType.Hypernetwork)]
1719
Hypernetwork,
20+
1821
[ConvertTo<SharedFolderType>(SharedFolderType.Lora)]
1922
LORA,
23+
2024
[ConvertTo<SharedFolderType>(SharedFolderType.ControlNet)]
2125
Controlnet,
26+
2227
[ConvertTo<SharedFolderType>(SharedFolderType.LyCORIS)]
2328
LoCon,
29+
2430
[ConvertTo<SharedFolderType>(SharedFolderType.VAE)]
2531
VAE,
26-
32+
2733
// Unused/obsolete/unknown/meta options
2834
AestheticGradient,
2935
Model,
36+
MotionModule,
3037
Poses,
3138
Upscaler,
3239
Wildcards,

0 commit comments

Comments
 (0)