From b4e9cce2b1ee90a6a05a7a2e19ffbce51c4c3e8a Mon Sep 17 00:00:00 2001 From: Manuel Kamper Date: Sun, 19 Mar 2023 15:00:17 +0100 Subject: [PATCH] fixed #1 --- Mk0.Software.ImageSorter/Main.Designer.cs | 3 +-- Mk0.Software.ImageSorter/Main.cs | 2 +- Mk0.Software.ImageSorter/Mk0.Software.ImageSorter.csproj | 2 +- Mk0.Software.ImageSorter/Properties/AssemblyInfo.cs | 4 ++-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Mk0.Software.ImageSorter/Main.Designer.cs b/Mk0.Software.ImageSorter/Main.Designer.cs index b92b2f0..baf36a6 100644 --- a/Mk0.Software.ImageSorter/Main.Designer.cs +++ b/Mk0.Software.ImageSorter/Main.Designer.cs @@ -820,8 +820,7 @@ this.KeyPreview = true; this.MinimumSize = new System.Drawing.Size(983, 605); this.Name = "Main"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "Image Sorter v2.1 | © 2015-2022 by kmpr.at"; + this.Text = "Image Sorter v2.3 | © 2015-2023 by kmpr.at"; this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing); this.Load += new System.EventHandler(this.Main_Load); this.Shown += new System.EventHandler(this.Main_Shown); diff --git a/Mk0.Software.ImageSorter/Main.cs b/Mk0.Software.ImageSorter/Main.cs index 0ada840..d084521 100644 --- a/Mk0.Software.ImageSorter/Main.cs +++ b/Mk0.Software.ImageSorter/Main.cs @@ -614,7 +614,7 @@ namespace Mk0.Software.ImageSorter { images.Clear(); - foreach (string image in Directory.EnumerateFiles(quellPath, "*.*", System.IO.SearchOption.AllDirectories).Where(s => fileTypes.Any(ext => ext == Path.GetExtension(s)))) + foreach (string image in Directory.EnumerateFiles(quellPath, "*.*", System.IO.SearchOption.AllDirectories).Where(s => fileTypes.Any(ext => ext == Path.GetExtension(s).ToLower()))) { images.Add(image); } diff --git a/Mk0.Software.ImageSorter/Mk0.Software.ImageSorter.csproj b/Mk0.Software.ImageSorter/Mk0.Software.ImageSorter.csproj index 4135da5..be14cd4 100644 --- a/Mk0.Software.ImageSorter/Mk0.Software.ImageSorter.csproj +++ b/Mk0.Software.ImageSorter/Mk0.Software.ImageSorter.csproj @@ -33,7 +33,7 @@ manuelkamper.com false 0 - 2.1.0.0 + 2.3.0.0 true true true diff --git a/Mk0.Software.ImageSorter/Properties/AssemblyInfo.cs b/Mk0.Software.ImageSorter/Properties/AssemblyInfo.cs index d28deda..9566b65 100644 --- a/Mk0.Software.ImageSorter/Properties/AssemblyInfo.cs +++ b/Mk0.Software.ImageSorter/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("kmpr.at")] [assembly: AssemblyProduct("ImageSorter")] -[assembly: AssemblyCopyright("Copyright © 2015-2022 by kmpr.at")] +[assembly: AssemblyCopyright("Copyright © 2015-2023 by kmpr.at")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern // übernehmen, indem Sie "*" eingeben: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.1.*")] +[assembly: AssemblyVersion("2.3.*")] //[assembly: AssemblyFileVersion("1.6.0.0")]