Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions OotD.Core/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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));
}


Expand Down
6 changes: 6 additions & 0 deletions OotD.Core/NLog.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -4591,6 +4591,7 @@
<xs:element name="maxRecursionLimit" type="xs:integer" minOccurs="0" maxOccurs="1" default="1" />
<xs:element name="renderEmptyObject" type="xs:boolean" minOccurs="0" maxOccurs="1" default="true" />
<xs:element name="suppressSpaces" type="xs:boolean" minOccurs="0" maxOccurs="1" default="false" />
<xs:element name="includeActivityIds" type="xs:boolean" minOccurs="0" maxOccurs="1" default="false" />
<xs:element name="includeScopes" type="xs:boolean" minOccurs="0" maxOccurs="1" default="false" />
<xs:element name="state" minOccurs="0" maxOccurs="unbounded" type="NLog.Layouts.JsonAttribute" />
<xs:element name="timestampFormat" type="xs:string" minOccurs="0" maxOccurs="1" default="o" />
Expand Down Expand Up @@ -4645,6 +4646,11 @@
<xs:documentation>Option to suppress the extra spaces in the output json.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="includeActivityIds" type="xs:boolean">
<xs:annotation>
<xs:documentation>Whether to include "TraceId" + "SpanId" + "ParentId" from P:System.Diagnostics.Activity.Current</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="includeScopes" type="xs:boolean">
<xs:annotation>
<xs:documentation>Whether to include "scopes"-section</xs:documentation>
Expand Down
6 changes: 6 additions & 0 deletions OotD.Launcher/NLog.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -4591,6 +4591,7 @@
<xs:element name="maxRecursionLimit" type="xs:integer" minOccurs="0" maxOccurs="1" default="1" />
<xs:element name="renderEmptyObject" type="xs:boolean" minOccurs="0" maxOccurs="1" default="true" />
<xs:element name="suppressSpaces" type="xs:boolean" minOccurs="0" maxOccurs="1" default="false" />
<xs:element name="includeActivityIds" type="xs:boolean" minOccurs="0" maxOccurs="1" default="false" />
<xs:element name="includeScopes" type="xs:boolean" minOccurs="0" maxOccurs="1" default="false" />
<xs:element name="state" minOccurs="0" maxOccurs="unbounded" type="NLog.Layouts.JsonAttribute" />
<xs:element name="timestampFormat" type="xs:string" minOccurs="0" maxOccurs="1" default="o" />
Expand Down Expand Up @@ -4645,6 +4646,11 @@
<xs:documentation>Option to suppress the extra spaces in the output json.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="includeActivityIds" type="xs:boolean">
<xs:annotation>
<xs:documentation>Whether to include "TraceId" + "SpanId" + "ParentId" from P:System.Diagnostics.Activity.Current</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="includeScopes" type="xs:boolean">
<xs:annotation>
<xs:documentation>Whether to include "scopes"-section</xs:documentation>
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.0
5.1.1
Loading