Skip to content

Commit 0d97ebf

Browse files
committed
1.5.1 Release commit.
1 parent 68415df commit 0d97ebf

9 files changed

Lines changed: 1442 additions & 1308 deletions

File tree

ImageViewer/About.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<Separator/>
3232
<TextBlock>
3333
<Hyperlink NavigateUri="https://github.com/dlemstra/Magick.NET" RequestNavigate="Hyperlink_RequestNavigate">
34-
Magick.NET(7.4.3.0) by Dirk Lemstra
34+
Magick.NET(7.4.4.0) by Dirk Lemstra
3535
</Hyperlink>
3636
</TextBlock>
3737
<TextBlock Text="License: Apache License 2.0" Foreground="#FFF0F0F0"/>
@@ -45,7 +45,7 @@
4545
<Separator/>
4646
<TextBlock>
4747
<Hyperlink NavigateUri="https://github.com/ravibpatel/AutoUpdater.NET" RequestNavigate="Hyperlink_RequestNavigate">
48-
Autoupdater.NET.Official(1.4.8.0) by RBSoft
48+
Autoupdater.NET.Official(1.4.9.0) by RBSoft
4949
</Hyperlink>
5050
</TextBlock>
5151
<TextBlock Text="License: MIT" Foreground="#FFF0F0F0"/>

ImageViewer/Command.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System;
2+
3+
namespace Frame
4+
{
5+
6+
public interface ICommand
7+
{
8+
void Execute();
9+
}
10+
}

ImageViewer/Frame.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@
8181
<PropertyGroup>
8282
<StartupObject>Frame.FrameApp</StartupObject>
8383
</PropertyGroup>
84+
<PropertyGroup>
85+
<SignManifests>false</SignManifests>
86+
</PropertyGroup>
8487
<ItemGroup>
8588
<ApplicationDefinition Include="App.xaml">
8689
<Generator>MSBuild:Compile</Generator>
@@ -89,6 +92,7 @@
8992
<Compile Include="About.xaml.cs">
9093
<DependentUpon>About.xaml</DependentUpon>
9194
</Compile>
95+
<Compile Include="Command.cs" />
9296
<Compile Include="Enums.cs" />
9397
<Compile Include="FileFormats.cs" />
9498
<Compile Include="FileId.cs" />
@@ -193,8 +197,8 @@
193197
<Reference Include="Dragablz, Version=0.0.3.203, Culture=neutral, processorArchitecture=MSIL">
194198
<HintPath>..\packages\Dragablz.0.0.3.203\lib\net45\Dragablz.dll</HintPath>
195199
</Reference>
196-
<Reference Include="Magick.NET-Q16-AnyCPU, Version=7.4.3.0, Culture=neutral, PublicKeyToken=2004825badfa91ec, processorArchitecture=MSIL">
197-
<HintPath>..\packages\Magick.NET-Q16-AnyCPU.7.4.3\lib\net40\Magick.NET-Q16-AnyCPU.dll</HintPath>
200+
<Reference Include="Magick.NET-Q16-AnyCPU, Version=7.4.4.0, Culture=neutral, PublicKeyToken=2004825badfa91ec, processorArchitecture=MSIL">
201+
<HintPath>..\packages\Magick.NET-Q16-AnyCPU.7.4.4\lib\net40\Magick.NET-Q16-AnyCPU.dll</HintPath>
198202
</Reference>
199203
<Reference Include="Microsoft.VisualBasic" />
200204
<Reference Include="PresentationCore" />

ImageViewer/ImageSettings.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,13 @@ void OnPropertyChanged([CallerMemberName] string propertyName = null)
127127
{
128128
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
129129
}
130+
131+
public void Reset()
132+
{
133+
MipValue = 0;
134+
IsGif = false;
135+
CurrentFrame = 0;
136+
EndFrame = 0;
137+
}
130138
}
131139
}

0 commit comments

Comments
 (0)