Skip to content

Commit fff2aee

Browse files
author
David Khristepher Santos
committed
More fixes
1 parent 29d9eb7 commit fff2aee

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

Diffusion.Toolkit/Localization/default.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"Welcome.Subtitle": "Let's get you started!",
44
"Welcome.Folders.Title": "Select the folders you want to scan",
55
"Welcome.Folders.Subtitle": "These folders will be watched for new content and will be scanned recursively.",
6+
"Welcome.Folders.AddFolder": "Add Folder",
7+
"Welcome.Folders.RemoveFolder": "Remove Folder",
68
"Welcome.Metadata.Title": "Select additional metadata for searching",
79
"Welcome.Metadata.Subtitle": " By default Diffusion Toolkit will store basic supported metadata. You may chose to store additional metadata as needed.",
810
"Welcome.Metadata.ComfyUI": "Check this option if you use ComfyUI and you want to search in ComfyUI Node Properties.",

Diffusion.Toolkit/Release Notes/What's New v1.10.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A new setting has been added: **Settings > Video > Loop Video**. This controls w
2020

2121
If you have a ComfyUI video that has metadata that can't be read, please raise an issue on Github and attach the sample file
2222

23-
You can now filter by **Type** (Image, Video) using the Filter popup
23+
You can now filter by **Type** (Image, Video) using the Filter popup, or by adding the query `type: image` or `type: video`
2424

2525
## Custom Tags
2626

Diffusion.Toolkit/WelcomeWindow.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
</Grid.ColumnDefinitions>
5353
<ListBox ItemsSource="{Binding ImagePaths}" SelectedIndex="{Binding SelectedIndex}" Margin="0,0,10,0"></ListBox>
5454
<StackPanel Grid.Column="1">
55-
<Button Click="AddFolder_OnClick" Margin="0,0,0,10" Height="26" Content="{lex:Loc Settings.General.AddFolder}"></Button>
56-
<Button Click="RemoveFolder_OnClick" Margin="0,0,0,10" Height="26" Content="{lex:Loc Settings.General.RemoveFolder}"></Button>
55+
<Button Click="AddFolder_OnClick" Margin="0,0,0,10" Height="26" Content="{lex:Loc Welcome.Folders.AddFolder}"></Button>
56+
<Button Click="RemoveFolder_OnClick" Margin="0,0,0,10" Height="26" Content="{lex:Loc Welcome.Folders.RemoveFolder}"></Button>
5757
</StackPanel>
5858
</Grid>
5959
<CheckBox IsChecked="{Binding ScanForNewImagesOnStartup}" Margin="5,0,0,0" Content="{lex:Loc Settings.Images.ScanForNewImagesOnStartup}"></CheckBox>

Diffusion.Toolkit/WelcomeWindow.xaml.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ public class WelcomeModel : BaseNotify
2323
public WelcomeModel()
2424
{
2525
Step = 1;
26+
StoreWorkflow = true;
27+
StoreMetadata = true;
2628
}
2729

2830
public ICommand Escape

0 commit comments

Comments
 (0)