From 6fc38b9db01b61da3dfff97fa079b45779ddcf8a Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner <lorenz.stechauner@necronda.net> Date: Tue, 11 Jun 2024 12:40:25 +0200 Subject: [PATCH] Bump version to 0.8.3 --- Elwig/Dialogs/DeleteMemberDialog.xaml.cs | 2 +- Elwig/Elwig.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Elwig/Dialogs/DeleteMemberDialog.xaml.cs b/Elwig/Dialogs/DeleteMemberDialog.xaml.cs index 06494bf..77cfd75 100644 --- a/Elwig/Dialogs/DeleteMemberDialog.xaml.cs +++ b/Elwig/Dialogs/DeleteMemberDialog.xaml.cs @@ -41,7 +41,7 @@ namespace Elwig.Dialogs { } private void Update() { - var t = NameInput.Text.ToLower(); + var t = NameInput.Text.ToLower().Split(' '); var nameValid = NameParts.All(t.Contains); UpdateCheckBox(AreaComInput); UpdateCheckBox(DeliveryInput); diff --git a/Elwig/Elwig.csproj b/Elwig/Elwig.csproj index af157d8..6b7076e 100644 --- a/Elwig/Elwig.csproj +++ b/Elwig/Elwig.csproj @@ -7,7 +7,7 @@ <UseWPF>true</UseWPF> <PreserveCompilationContext>true</PreserveCompilationContext> <ApplicationIcon>Resources\Images\Elwig.ico</ApplicationIcon> - <Version>0.8.2</Version> + <Version>0.8.3</Version> <SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages> <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <ApplicationManifest>app.manifest</ApplicationManifest>