diff --git a/Leibit.BLL/InitializationBLL.cs b/Leibit.BLL/InitializationBLL.cs index 22d9ccd9..c3ad7a3f 100644 --- a/Leibit.BLL/InitializationBLL.cs +++ b/Leibit.BLL/InitializationBLL.cs @@ -7,6 +7,7 @@ using Leibit.Entities.Scheduling; using System; using System.Collections.Generic; +using System.Diagnostics; using System.IO; using System.Linq; using System.Runtime.CompilerServices; @@ -445,7 +446,12 @@ private void __GetSchedule(Station station, string path) private void __LoadScheduleFromFile(Station station, string scheduleFile, List tracks) { if (!File.Exists(scheduleFile)) - throw new OperationFailedException($"Die Datei '{scheduleFile}' existiert nicht."); + { + if (Debugger.IsAttached) + throw new OperationFailedException($"Die Datei '{scheduleFile}' existiert nicht."); + else + return; + } // Encoding e.g. for German Umlaute using (var reader = new StreamReader(scheduleFile, Encoding.GetEncoding("iso-8859-1"))) diff --git a/Leibit.Client.WPF/Leibit.Client.WPF.csproj b/Leibit.Client.WPF/Leibit.Client.WPF.csproj index 897093aa..9a650302 100644 --- a/Leibit.Client.WPF/Leibit.Client.WPF.csproj +++ b/Leibit.Client.WPF/Leibit.Client.WPF.csproj @@ -26,7 +26,7 @@ icon.ico - 0.6.1 + 0.6.2 https://github.com/jannikbecker/leibit https://github.com/jannikbecker/leibit app.manifest diff --git a/Leibit.Core/Data/sued/MLI.xml b/Leibit.Core/Data/sued/MLI.xml index 6f8d89c8..f1432b06 100644 --- a/Leibit.Core/Data/sued/MLI.xml +++ b/Leibit.Core/Data/sued/MLI.xml @@ -150,7 +150,7 @@ - + diff --git a/assets/ESTWonline.zip b/assets/ESTWonline.zip index fbbcac5c..bf219e55 100644 Binary files a/assets/ESTWonline.zip and b/assets/ESTWonline.zip differ diff --git a/assets/release_notes.md b/assets/release_notes.md index c37d252e..24447f79 100644 --- a/assets/release_notes.md +++ b/assets/release_notes.md @@ -2,5 +2,5 @@ Die Datei *Setup.exe* herunterladen und ausführen. Nach wenigen Sekunden startet LeiBIT. # Neue Funktionen in dieser Version -- Neuer Bereich "Tauernbahn" mit den Simulationen Hallein (#182), Bischofshofen (#181), Schwarzach-St. Veit (#180), Badgastein (#179), Mallnitz-Obervellach (#178) und Spittal-Millstättersee (#177). -- Korrekturen bei der automatischen Ermittlung von Pfaden (#198) \ No newline at end of file +- Fehlerkorrekturen +- Update ESTWonline auf Version 2.7 \ No newline at end of file