diff --git a/Filtration/Converters/SizeColorToRectConverter.cs b/Filtration/Converters/SizeColorToRectConverter.cs
index d839d09..216c0da 100644
--- a/Filtration/Converters/SizeColorToRectConverter.cs
+++ b/Filtration/Converters/SizeColorToRectConverter.cs
@@ -19,11 +19,13 @@ namespace Filtration.Converters
if (size < 0 || color < 0)
return new Rect(0, 0, 0, 0);
- Rect cropArea = new Rect();
- cropArea.Width = 64;
- cropArea.Height = 64;
- cropArea.X = 0 + size * 64;
- cropArea.Y = 0 + color * 64;
+ var cropArea = new Rect
+ {
+ Width = 64,
+ Height = 64,
+ X = 0 + size * 64,
+ Y = 0 + color * 64
+ };
return cropArea;
}
diff --git a/Filtration/Properties/AssemblyInfo.cs b/Filtration/Properties/AssemblyInfo.cs
index 205a539..8980579 100644
--- a/Filtration/Properties/AssemblyInfo.cs
+++ b/Filtration/Properties/AssemblyInfo.cs
@@ -11,7 +11,7 @@ using System.Windows;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("XVar Industries Inc.")]
[assembly: AssemblyProduct("Filtration")]
-[assembly: AssemblyCopyright("Copyright © Ben Wallis 2016")]
+[assembly: AssemblyCopyright("Copyright © Ben Wallis 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -50,7 +50,7 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("0.17")]
+[assembly: AssemblyVersion("0.18")]
[assembly: InternalsVisibleTo("Filtration.Tests")]
[assembly: InternalsVisibleTo("Filtration.ItemFilterPreview.Tests")]
diff --git a/Filtration/Views/AboutWindow.xaml b/Filtration/Views/AboutWindow.xaml
index 9862989..d5afb31 100644
--- a/Filtration/Views/AboutWindow.xaml
+++ b/Filtration/Views/AboutWindow.xaml
@@ -32,7 +32,7 @@
Filtration
- Copyright © 2017
+ Copyright © 2018
Created by Ben Wallis
https://github.com/ben-wallis/Filtration/
@@ -53,7 +53,8 @@
Special Thanks
- GlenCFL - Implemented support for the item filter 3.1 changes
+ GlenCFL - 3.1 changes
+ halil - 3.3 - 3.4 changes