diff --git a/Utils/InIReader.cs b/Utils/InIReader.cs index 98dfb93..5c6c25c 100644 --- a/Utils/InIReader.cs +++ b/Utils/InIReader.cs @@ -77,6 +77,13 @@ namespace BlubbFish.Utils return this.cont.Keys.ToList(); } + public Dictionary GetSection(String section) { + if(this.cont.Keys.Contains(section)) { + return this.cont[section]; + } + return new Dictionary(); + } + public String GetValue(String section, String key) { if (!section.StartsWith("[")) { diff --git a/Utils/Properties/AssemblyInfo.cs b/Utils/Properties/AssemblyInfo.cs index ca74d29..73ace8a 100644 --- a/Utils/Properties/AssemblyInfo.cs +++ b/Utils/Properties/AssemblyInfo.cs @@ -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("1.0.4.1")] -[assembly: AssemblyFileVersion("1.0.4.1")] +[assembly: AssemblyVersion("1.0.5.0")] +[assembly: AssemblyFileVersion("1.0.5.0")]