Skip to content

Commit

Permalink
Merge pull request #367 from ionite34/add-motion-module
Browse files Browse the repository at this point in the history
Add motion module
  • Loading branch information
mohnjiles authored Nov 24, 2023
2 parents 85e4960 + d1e80ee commit e349eae
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.4
### Fixed
- Fixed errors preventing Model Browser from finding results with certain search queries

## v2.6.3
### Fixed
- Fixed InvalidOperationException during prerequisite installs on certain platforms where process name and duration reporting are not supported
Expand Down
1 change: 1 addition & 0 deletions StabilityMatrix.Avalonia/App.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ internal static IServiceCollection ConfigureServices()
};
jsonSerializerOptions.Converters.Add(new ObjectToInferredTypesConverter());
jsonSerializerOptions.Converters.Add(new DefaultUnknownEnumConverter<CivitFileType>());
jsonSerializerOptions.Converters.Add(new DefaultUnknownEnumConverter<CivitModelType>());
jsonSerializerOptions.Converters.Add(
new JsonStringEnumConverter(JsonNamingPolicy.CamelCase)
);
Expand Down
9 changes: 8 additions & 1 deletion StabilityMatrix.Core/Models/Api/CivitModelType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,29 @@ public enum CivitModelType
{
[ConvertTo<SharedFolderType>(SharedFolderType.StableDiffusion)]
Checkpoint,

[ConvertTo<SharedFolderType>(SharedFolderType.TextualInversion)]
TextualInversion,

[ConvertTo<SharedFolderType>(SharedFolderType.Hypernetwork)]
Hypernetwork,

[ConvertTo<SharedFolderType>(SharedFolderType.Lora)]
LORA,

[ConvertTo<SharedFolderType>(SharedFolderType.ControlNet)]
Controlnet,

[ConvertTo<SharedFolderType>(SharedFolderType.LyCORIS)]
LoCon,

[ConvertTo<SharedFolderType>(SharedFolderType.VAE)]
VAE,

// Unused/obsolete/unknown/meta options
AestheticGradient,
Model,
MotionModule,
Poses,
Upscaler,
Wildcards,
Expand Down

0 comments on commit e349eae

Please sign in to comment.