File tree 3 files changed +13
-1
lines changed
StabilityMatrix.Core/Models/Api
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to Stability Matrix will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning 2.0] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## v2.6.4
9
+ ### Fixed
10
+ - Fixed errors preventing Model Browser from finding results with certain search queries
11
+
8
12
## v2.6.3
9
13
### Fixed
10
14
- Fixed InvalidOperationException during prerequisite installs on certain platforms where process name and duration reporting are not supported
Original file line number Diff line number Diff line change @@ -423,6 +423,7 @@ internal static IServiceCollection ConfigureServices()
423
423
} ;
424
424
jsonSerializerOptions . Converters . Add ( new ObjectToInferredTypesConverter ( ) ) ;
425
425
jsonSerializerOptions . Converters . Add ( new DefaultUnknownEnumConverter < CivitFileType > ( ) ) ;
426
+ jsonSerializerOptions . Converters . Add ( new DefaultUnknownEnumConverter < CivitModelType > ( ) ) ;
426
427
jsonSerializerOptions . Converters . Add (
427
428
new JsonStringEnumConverter ( JsonNamingPolicy . CamelCase )
428
429
) ;
Original file line number Diff line number Diff line change @@ -11,22 +11,29 @@ public enum CivitModelType
11
11
{
12
12
[ ConvertTo < SharedFolderType > ( SharedFolderType . StableDiffusion ) ]
13
13
Checkpoint ,
14
+
14
15
[ ConvertTo < SharedFolderType > ( SharedFolderType . TextualInversion ) ]
15
16
TextualInversion ,
17
+
16
18
[ ConvertTo < SharedFolderType > ( SharedFolderType . Hypernetwork ) ]
17
19
Hypernetwork ,
20
+
18
21
[ ConvertTo < SharedFolderType > ( SharedFolderType . Lora ) ]
19
22
LORA ,
23
+
20
24
[ ConvertTo < SharedFolderType > ( SharedFolderType . ControlNet ) ]
21
25
Controlnet ,
26
+
22
27
[ ConvertTo < SharedFolderType > ( SharedFolderType . LyCORIS ) ]
23
28
LoCon ,
29
+
24
30
[ ConvertTo < SharedFolderType > ( SharedFolderType . VAE ) ]
25
31
VAE ,
26
-
32
+
27
33
// Unused/obsolete/unknown/meta options
28
34
AestheticGradient ,
29
35
Model ,
36
+ MotionModule ,
30
37
Poses ,
31
38
Upscaler ,
32
39
Wildcards ,
You can’t perform that action at this time.
0 commit comments