@ -31,7 +31,7 @@
FontSize="11"
Foreground="{DynamicResource TextControlForeground}"
Margin="0,2,0,0"
Text="{Binding CivitModel.Name, FallbackValue=''}"
Text="{Binding CivitModel.LatestModelVersion, FallbackValue=''}"
VerticalAlignment="Center" />
<Grid>
<controls:BetterAdvancedImage
@ -55,4 +55,8 @@ public class CivitModel
return fullFilesSize;
}
public string LatestModelVersion => ModelVersions != null && ModelVersions.Any()
? ModelVersions[0].Name
: string.Empty;
@ -26,5 +26,6 @@ public enum CivitModelType
Model,
[ConvertTo<SharedFolderType>(SharedFolderType.LyCORIS)]
LoCon,
Other,
All,