Skip to content

Commit 724e2b1

Browse files
committed
fix: missing config copy properties
1 parent 77098be commit 724e2b1

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

.github/workflows/sentry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set outputs
2929
id: vars
3030
run: |
31-
echo "version=10.6.3" >> $GITHUB_OUTPUT
31+
echo "version=10.6.4" >> $GITHUB_OUTPUT
3232
echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
3333
- name: "Create Sentry release"
3434
uses: getsentry/action-release@v1.7.0

DisCatSharp.Docs/changelogs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ author: DisCatSharp Team
88

99
Please select the changelog you want to view from the left side.
1010

11-
Current: [v10.6.3](xref:changelogs_v10_10_6_3)
11+
Current: [v10.6.4](xref:changelogs_v10_10_6_4)

DisCatSharp.Docs/changelogs/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ items:
44
- name: Version 10.X
55
expanded: true
66
items:
7-
- name: Version 10.6.3
8-
href: v10/10_6_3.md
7+
- name: Version 10.6.4
8+
href: v10/10_6_4.md
99
- name: Version 10.6.2
1010
href: v10/10_6_2.md
1111
- name: Version 10.6.0

DisCatSharp.Docs/changelogs/v10/10_6_3.md renamed to DisCatSharp.Docs/changelogs/v10/10_6_4.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
uid: changelogs_v10_10_6_3
3-
title: Version 10.6.3
2+
uid: changelogs_v10_10_6_4
3+
title: Version 10.6.4
44
author: DisCatSharp Team
55
---
66

7-
# Upgrade from **10.6.2** to **10.6.3**
7+
# Upgrade from **10.6.2** to **10.6.4**
88

99
> [!NOTE]
1010
> This version improves the safety of data transmitted to sentry, if enabled.

DisCatSharp.Targets/Version.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
44
<PropertyGroup>
5-
<VersionPrefix>10.6.3</VersionPrefix>
5+
<VersionPrefix>10.6.4</VersionPrefix>
66
</PropertyGroup>
77
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''">
88
<Version>$(VersionPrefix)-$(VersionSuffix)-$(BuildNumber)</Version>

DisCatSharp/DiscordConfiguration.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public UdpClientFactoryDelegate UdpClientFactory
243243
/// <para>Whether to enable sentry.</para>
244244
/// <para>This helps us to track missing data and library bugs better.</para>
245245
/// <para>Defaults to <see langword="false"/>.</para>
246-
/// <para><note type="note">Please refer to https://docs.dcs.aitsys.dev/articles/misc/sentry for more information.</note></para>
246+
/// <para><note type="note">Please refer to the <a href="https://docs.dcs.aitsys.dev/articles/misc/sentry">docs</a> for more information.</note></para>
247247
/// </summary>
248248
public bool EnableSentry { internal get; set; } = false;
249249

@@ -432,12 +432,15 @@ public DiscordConfiguration(DiscordConfiguration other)
432432
this.Timezone = other.Timezone;
433433
this.ReportMissingFields = other.ReportMissingFields;
434434
this.EnableSentry = other.EnableSentry;
435+
this.AttachRecentLogEntries = other.AttachRecentLogEntries;
435436
this.AttachUserInfo = other.AttachUserInfo;
436437
this.FeedbackEmail = other.FeedbackEmail;
437438
this.DeveloperUserId = other.DeveloperUserId;
439+
this.EnableDiscordIdScrubber = other.EnableDiscordIdScrubber;
438440
this.HasShardLogger = other.HasShardLogger;
439441
this._exceptions = other._exceptions;
440442
this.EnableLibraryDeveloperMode = other.EnableLibraryDeveloperMode;
443+
this.DisableScrubber = other.DisableScrubber;
441444
this.SentryDebug = other.SentryDebug;
442445
this.DisableExceptionFilter = other.DisableExceptionFilter;
443446
this.CustomSentryDsn = other.CustomSentryDsn;

0 commit comments

Comments
 (0)