Skip to content

Commit

Permalink
Merge pull request #210 from jannikbecker/staging
Browse files Browse the repository at this point in the history
Version 0.6.2
  • Loading branch information
jannikbecker authored Jul 24, 2022
2 parents ba7816a + 54702ce commit b1abf56
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion Leibit.BLL/InitializationBLL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -445,7 +446,12 @@ private void __GetSchedule(Station station, string path)
private void __LoadScheduleFromFile(Station station, string scheduleFile, List<string> 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")))
Expand Down
2 changes: 1 addition & 1 deletion Leibit.Client.WPF/Leibit.Client.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>icon.ico</ApplicationIcon>
<Version>0.6.1</Version>
<Version>0.6.2</Version>
<PackageProjectUrl>https://github.com/jannikbecker/leibit</PackageProjectUrl>
<RepositoryUrl>https://github.com/jannikbecker/leibit</RepositoryUrl>
<ApplicationManifest>app.manifest</ApplicationManifest>
Expand Down
2 changes: 1 addition & 1 deletion Leibit.Core/Data/sued/MLI.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
</track>
</station>

<station name="Wasserburg" short="MWBG" refNr="72" scheduleFile="g72_____.abf">
<station name="Wasserburg" short="MWBG" refNr="72" scheduleFile="b72_____.abf">
<track name="1" calculateDelay="false">
<block name="72B1"/>
</track>
Expand Down
Binary file modified assets/ESTWonline.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions assets/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
- Fehlerkorrekturen
- Update ESTWonline auf Version 2.7

0 comments on commit b1abf56

Please sign in to comment.