Integrate Sentry crash reporting for public builds

This commit is contained in:
Luke Street
2026-04-14 00:43:48 -06:00
parent 235949e452
commit c6d58afd94
10 changed files with 266 additions and 13 deletions
+8
View File
@@ -0,0 +1,8 @@
#pragma once
namespace dusk {
void InitializeCrashReporting();
void ShutdownCrashReporting();
} // namespace dusk
+1
View File
@@ -103,6 +103,7 @@ struct UserSettings {
ConfigVar<bool> skipPreLaunchUI;
ConfigVar<bool> showPipelineCompilation;
ConfigVar<bool> wasPresetChosen;
ConfigVar<bool> enableCrashReporting;
} backend;
};