updated version to 0.18 and 2016 dates to 2018
This commit is contained in:
parent
15143f738f
commit
cc986eea21
|
@ -19,11 +19,13 @@ namespace Filtration.Converters
|
||||||
if (size < 0 || color < 0)
|
if (size < 0 || color < 0)
|
||||||
return new Rect(0, 0, 0, 0);
|
return new Rect(0, 0, 0, 0);
|
||||||
|
|
||||||
Rect cropArea = new Rect();
|
var cropArea = new Rect
|
||||||
cropArea.Width = 64;
|
{
|
||||||
cropArea.Height = 64;
|
Width = 64,
|
||||||
cropArea.X = 0 + size * 64;
|
Height = 64,
|
||||||
cropArea.Y = 0 + color * 64;
|
X = 0 + size * 64,
|
||||||
|
Y = 0 + color * 64
|
||||||
|
};
|
||||||
|
|
||||||
return cropArea;
|
return cropArea;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ using System.Windows;
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("XVar Industries Inc.")]
|
[assembly: AssemblyCompany("XVar Industries Inc.")]
|
||||||
[assembly: AssemblyProduct("Filtration")]
|
[assembly: AssemblyProduct("Filtration")]
|
||||||
[assembly: AssemblyCopyright("Copyright © Ben Wallis 2016")]
|
[assembly: AssemblyCopyright("Copyright © Ben Wallis 2018")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ using System.Windows;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("0.17")]
|
[assembly: AssemblyVersion("0.18")]
|
||||||
|
|
||||||
[assembly: InternalsVisibleTo("Filtration.Tests")]
|
[assembly: InternalsVisibleTo("Filtration.Tests")]
|
||||||
[assembly: InternalsVisibleTo("Filtration.ItemFilterPreview.Tests")]
|
[assembly: InternalsVisibleTo("Filtration.ItemFilterPreview.Tests")]
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
<StackPanel Grid.Row="0" Grid.Column="1">
|
<StackPanel Grid.Row="0" Grid.Column="1">
|
||||||
<TextBlock FontWeight="Black">Filtration</TextBlock>
|
<TextBlock FontWeight="Black">Filtration</TextBlock>
|
||||||
<TextBlock Text="{Binding Version}" />
|
<TextBlock Text="{Binding Version}" />
|
||||||
<TextBlock>Copyright © 2017</TextBlock>
|
<TextBlock>Copyright © 2018</TextBlock>
|
||||||
<TextBlock>Created by Ben Wallis</TextBlock>
|
<TextBlock>Created by Ben Wallis</TextBlock>
|
||||||
<TextBlock>
|
<TextBlock>
|
||||||
<Hyperlink NavigateUri="https://github.com/ben-wallis/Filtration/" extensions:HyperlinkExtensions.IsExternal="True">https://github.com/ben-wallis/Filtration/</Hyperlink>
|
<Hyperlink NavigateUri="https://github.com/ben-wallis/Filtration/" extensions:HyperlinkExtensions.IsExternal="True">https://github.com/ben-wallis/Filtration/</Hyperlink>
|
||||||
|
@ -53,7 +53,8 @@
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
<TextBlock FontWeight="Bold"><LineBreak/>Special Thanks</TextBlock>
|
<TextBlock FontWeight="Bold"><LineBreak/>Special Thanks</TextBlock>
|
||||||
<TextBlock TextWrapping="Wrap">GlenCFL - Implemented support for the item filter 3.1 changes</TextBlock>
|
<TextBlock TextWrapping="Wrap">GlenCFL - 3.1 changes</TextBlock>
|
||||||
|
<TextBlock TextWrapping="Wrap">halil - 3.3 - 3.4 changes</TextBlock>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<ScrollViewer Grid.Column="0" Grid.Row="1" Grid.ColumnSpan="2" Margin="0,20,0,0" >
|
<ScrollViewer Grid.Column="0" Grid.Row="1" Grid.ColumnSpan="2" Margin="0,20,0,0" >
|
||||||
|
|
Loading…
Reference in New Issue