移除不用的脚本

This commit is contained in:
Bob.Song
2026-02-26 16:08:15 +08:00
parent 06e5d9ae1a
commit be43dbbf46
4999 changed files with 5034 additions and 845474 deletions

View File

@@ -15,6 +15,19 @@ namespace SRDebugger.Internal
get { return Settings.Instance.EnableBugReporter && !string.IsNullOrWhiteSpace(Settings.Instance.ApiKey); }
}
public string PrivacyPolicyMessage
{
get
{
return "By submitting this bug report you agree to our <color=#57B3F4>privacy policy</color>.";
}
}
public string PrivacyPolicyUrl
{
get { return SRDebugApi.PrivacyPolicyUrl; }
}
public void Submit(BugReport report, Action<BugReportSubmitResult> onComplete, IProgress<float> progress)
{
BugReportApi.Submit(report, Settings.Instance.ApiKey, onComplete, progress);