diff --git a/OotD.Core/Forms/MainForm.cs b/OotD.Core/Forms/MainForm.cs
index 267a5b0..a47f5a6 100644
--- a/OotD.Core/Forms/MainForm.cs
+++ b/OotD.Core/Forms/MainForm.cs
@@ -1176,7 +1176,7 @@ private void ButtonPrevious_Click(object sender, EventArgs e)
var (type, offset) = GetNextPreviousOffsetBasedOnCalendarViewMode(mode);
var targetDate = GetCalendarNavigationTargetDate(OutlookViewControl.SelectedDate, type, offset * -1);
- OutlookViewControl.GoToDate(targetDate.ToString(CultureInfo.CurrentCulture));
+ OutlookViewControl.GoToDate(targetDate.ToString(CultureInfo.InvariantCulture));
}
private void ButtonNext_Click(object sender, EventArgs e)
@@ -1188,7 +1188,7 @@ private void ButtonNext_Click(object sender, EventArgs e)
var (type, offset) = GetNextPreviousOffsetBasedOnCalendarViewMode(mode);
var targetDate = GetCalendarNavigationTargetDate(OutlookViewControl.SelectedDate, type, offset);
- OutlookViewControl.GoToDate(targetDate.ToString(CultureInfo.CurrentCulture));
+ OutlookViewControl.GoToDate(targetDate.ToString(CultureInfo.InvariantCulture));
}
diff --git a/OotD.Core/NLog.xsd b/OotD.Core/NLog.xsd
index d5961e2..60b3387 100644
--- a/OotD.Core/NLog.xsd
+++ b/OotD.Core/NLog.xsd
@@ -4591,6 +4591,7 @@
+
@@ -4645,6 +4646,11 @@
Option to suppress the extra spaces in the output json.
+
+
+ Whether to include "TraceId" + "SpanId" + "ParentId" from P:System.Diagnostics.Activity.Current
+
+
Whether to include "scopes"-section
diff --git a/OotD.Launcher/NLog.xsd b/OotD.Launcher/NLog.xsd
index d5961e2..60b3387 100644
--- a/OotD.Launcher/NLog.xsd
+++ b/OotD.Launcher/NLog.xsd
@@ -4591,6 +4591,7 @@
+
@@ -4645,6 +4646,11 @@
Option to suppress the extra spaces in the output json.
+
+
+ Whether to include "TraceId" + "SpanId" + "ParentId" from P:System.Diagnostics.Activity.Current
+
+
Whether to include "scopes"-section
diff --git a/version.txt b/version.txt
index 831446c..ac14c3d 100644
--- a/version.txt
+++ b/version.txt
@@ -1 +1 @@
-5.1.0
+5.1.1