Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
organization-id: '7969f8b6-d946-4a74-9bac-a55856d8b8e0'
project-slug: 'PerformanceMonitor'
signing-policy-slug: 'test-signing'
signing-policy-slug: 'release-signing'
artifact-configuration-slug: 'Dashboard'
github-artifact-id: '${{ steps.upload-dashboard.outputs.artifact-id }}'
wait-for-completion: true
Expand All @@ -127,7 +127,7 @@ jobs:
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
organization-id: '7969f8b6-d946-4a74-9bac-a55856d8b8e0'
project-slug: 'PerformanceMonitor'
signing-policy-slug: 'test-signing'
signing-policy-slug: 'release-signing'
artifact-configuration-slug: 'Lite'
github-artifact-id: '${{ steps.upload-lite.outputs.artifact-id }}'
wait-for-completion: true
Expand All @@ -140,7 +140,7 @@ jobs:
api-token: '${{ secrets.SIGNPATH_API_TOKEN }}'
organization-id: '7969f8b6-d946-4a74-9bac-a55856d8b8e0'
project-slug: 'PerformanceMonitor'
signing-policy-slug: 'test-signing'
signing-policy-slug: 'release-signing'
artifact-configuration-slug: 'Installers'
github-artifact-id: '${{ steps.upload-installer.outputs.artifact-id }}'
wait-for-completion: true
Expand Down
5 changes: 3 additions & 2 deletions Lite/Controls/AlertsHistoryTab.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
using Microsoft.Win32;
using PerformanceMonitorLite.Controls;
using PerformanceMonitorLite.Models;
using PerformanceMonitorLite.Helpers;
using PerformanceMonitorLite.Services;

namespace PerformanceMonitorLite.Controls;
Expand Down Expand Up @@ -419,7 +420,7 @@ private void CopyAllRows_Click(object sender, RoutedEventArgs e)

foreach (var col in grid.Columns)
{
sb.Append(col.Header?.ToString() ?? "");
sb.Append(DataGridClipboardBehavior.GetHeaderText(col));
sb.Append('\t');
}
sb.AppendLine();
Expand Down Expand Up @@ -456,7 +457,7 @@ private void ExportToCsv_Click(object sender, RoutedEventArgs e)

var headers = new List<string>();
foreach (var col in grid.Columns)
headers.Add(CsvEscape(col.Header?.ToString() ?? ""));
headers.Add(CsvEscape(DataGridClipboardBehavior.GetHeaderText(col)));
sb.AppendLine(string.Join(",", headers));

foreach (var item in grid.Items)
Expand Down
5 changes: 3 additions & 2 deletions Lite/Controls/FinOpsTab.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
using System.Windows.Media;
using Microsoft.Win32;
using PerformanceMonitorLite.Models;
using PerformanceMonitorLite.Helpers;
using PerformanceMonitorLite.Services;

namespace PerformanceMonitorLite.Controls;
Expand Down Expand Up @@ -884,7 +885,7 @@ private void CopyAllRows_Click(object sender, RoutedEventArgs e)

foreach (var col in grid.Columns)
{
sb.Append(col.Header?.ToString() ?? "");
sb.Append(DataGridClipboardBehavior.GetHeaderText(col));
sb.Append('\t');
}
sb.AppendLine();
Expand Down Expand Up @@ -930,7 +931,7 @@ private void ExportToCsv_Click(object sender, RoutedEventArgs e)

var headers = new List<string>();
foreach (var col in grid.Columns)
headers.Add(CsvEscape(col.Header?.ToString() ?? ""));
headers.Add(CsvEscape(DataGridClipboardBehavior.GetHeaderText(col)));
sb.AppendLine(string.Join(",", headers));

foreach (var item in grid.Items)
Expand Down
2 changes: 1 addition & 1 deletion Lite/Controls/ServerTab.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@
}

var tz = ServerTimeHelper.GetTimezoneLabel(ServerTimeHelper.CurrentDisplayMode);
ConnectionStatusText.Text = $"{_server.ServerNameDisplay} - Last refresh: {DateTime.Now:HH:mm:ss} ({tz})";

Check warning on line 851 in Lite/Controls/ServerTab.xaml.cs

View workflow job for this annotation

GitHub Actions / build

Dereference of a possibly null reference.
}
catch (Exception ex)
{
Expand Down Expand Up @@ -4213,7 +4213,7 @@
var headers = new List<string>();
foreach (var col in grid.Columns)
{
headers.Add(CsvEscape(col.Header?.ToString() ?? "", sep));
headers.Add(CsvEscape(DataGridClipboardBehavior.GetHeaderText(col), sep));
}
sb.AppendLine(string.Join(sep, headers));

Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,17 @@ See [THIRD_PARTY_NOTICES.md](THIRD_PARTY_NOTICES.md) for complete license texts.

---

## Sponsors

<table>
<tr>
<td><a href="https://signpath.io"><img src="https://about.signpath.io/wp-content/uploads/2024/01/signpath_logo_blue.svg" alt="SignPath" width="40"></a></td>
<td>Free code signing on Windows provided by <a href="https://signpath.io">SignPath.io</a>, certificate by <a href="https://signpath.org">SignPath Foundation</a></td>
</tr>
</table>

---

## License

Copyright (c) 2026 Darling Data, LLC. Licensed under the MIT License. See [LICENSE](LICENSE) for details.
Expand Down
Loading