Skip to content

Commit 47b359d

Browse files
author
David Khristepher Santos
committed
Update version.txt
Add Release Notes Add default settings for v10
1 parent 10f9404 commit 47b359d

4 files changed

Lines changed: 39 additions & 3 deletions

File tree

Diffusion.Toolkit/Diffusion.Toolkit.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
<None Remove="Localization\fr-FR.json" />
6767
<None Remove="Release Notes\What%27s New v1.0.md" />
6868
<None Remove="Release Notes\What%27s New v1.1.md" />
69+
<None Remove="Release Notes\What%27s New v1.10.0.md" />
6970
<None Remove="Release Notes\What%27s New v1.2.md" />
7071
<None Remove="Release Notes\What%27s New v1.3.md" />
7172
<None Remove="Release Notes\What%27s New v1.4.md" />
@@ -104,6 +105,9 @@
104105
<EmbeddedResource Include="Release Notes\What's New v1.1.md">
105106
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
106107
</EmbeddedResource>
108+
<EmbeddedResource Include="Release Notes\What's New v1.10.0.md">
109+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
110+
</EmbeddedResource>
107111
<EmbeddedResource Include="Release Notes\What's New v1.2.md">
108112
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
109113
</EmbeddedResource>

Diffusion.Toolkit/MainWindow.xaml.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,11 +548,11 @@ private async void OnLoaded(object sender, RoutedEventArgs e)
548548
}
549549

550550

551+
// TODO: Find a better place to put this:
552+
// Set defaults for new version features
551553

552554

553555

554-
// TODO: Find a better place to put this:
555-
// Set defaults for new version features
556556
if (semVer < SemanticVersion.Parse("v1.9.0"))
557557
{
558558
_settings.ShowTags = true;
@@ -563,6 +563,12 @@ private async void OnLoaded(object sender, RoutedEventArgs e)
563563
_settings.PermanentlyDelete = false;
564564
}
565565

566+
if (semVer < SemanticVersion.Parse("v1.10.0"))
567+
{
568+
_settings.FileExtensions = $"{_settings.FileExtensions}, .mp4";
569+
_settings.LoopVideo = true;
570+
_settings.RenderMode = RenderMode.Default;
571+
}
566572

567573
if (semVer < AppInfo.Version)
568574
{
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# What's New in v1.10.0
2+
3+
## Updated to .NET 10
4+
5+
Download and install the [.NET Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/10.0)
6+
7+
## (Experimental) Video Support
8+
9+
This version adds support for indexing and previewing videos.
10+
11+
The ".mp4" extension has been added to Settings > General > File Extensions.
12+
13+
A new setting has been added: Settings > Video > Loop Video
14+
15+
Currently ComfyUI workflows can be read from videos saved using the VideoHelperSuite - Video Combine node
16+
17+
## Others
18+
19+
* Add support for ComfyUI workflows in JPEG files
20+
* Fixed errors reading Seed values larger than max INT
21+
22+
23+
24+
25+
26+

Diffusion.Toolkit/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.9.1
1+
v1.10.0

0 commit comments

Comments
 (0)