diff --git a/Matomat/Configuration/Config.cs b/Matomat/Configuration/Config.cs index 819e9a0..01cbb0b 100644 --- a/Matomat/Configuration/Config.cs +++ b/Matomat/Configuration/Config.cs @@ -32,7 +32,11 @@ namespace Matomat.Configuration this.debug = (bool)config.GetValue("debug", typeof(bool)); this.sell = (bool)config.GetValue("sell", typeof(bool)); } - catch (Exception) { } + catch (Exception) { + Console.WriteLine("FATAL ERROR: Konnte die Configdatei nicht lesen!"); + Console.ReadLine(); + Environment.Exit(1); + } } internal static Config getInstance(string file) diff --git a/Matomat/Properties/AssemblyInfo.cs b/Matomat/Properties/AssemblyInfo.cs index b7f265c..6c41eab 100644 --- a/Matomat/Properties/AssemblyInfo.cs +++ b/Matomat/Properties/AssemblyInfo.cs @@ -33,6 +33,6 @@ using System.Resources; // Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern // übernehmen, indem Sie "*" eingeben: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.0.0.1")] +[assembly: AssemblyFileVersion("1.0.0.1")] [assembly: NeutralResourcesLanguageAttribute("de-DE")] diff --git a/Working/Matomat.exe b/Working/Matomat.exe index 18563f5..2885bd6 100644 Binary files a/Working/Matomat.exe and b/Working/Matomat.exe differ