Skip to content

Commit b0aa51a

Browse files
committed
Report: the app is called GhostDeck
The support-report header and the window subtitle still carried the pre-rename name, so every report a user pastes into an issue opened with "MSI Profile Switcher" - including the one in #96, filed from 1.35.0. The migration constants in AppSettings and Autostart keep the old name on purpose: they are what moves settings and the autostart task off it.
1 parent 68912b7 commit b0aa51a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Forms/ReportForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private void BuildHeader()
114114
const int flags = (int)(TextFormatFlags.VerticalCenter | TextFormatFlags.Left | TextFormatFlags.NoPadding);
115115
TextRenderer.DrawText(g, title, titleFont, new Rectangle(LeftX, 0, tw + 4, HeaderH),
116116
Color.White, (TextFormatFlags)flags);
117-
TextRenderer.DrawText(g, MSI Profile Switcher", subFont,
117+
TextRenderer.DrawText(g, GhostDeck", subFont,
118118
new Rectangle(LeftX + tw + 14, 0, 500, HeaderH),
119119
Color.FromArgb(220, 255, 255, 255), (TextFormatFlags)flags);
120120
};
@@ -383,7 +383,7 @@ protected override void Dispose(bool disposing)
383383
private string BuildReport()
384384
{
385385
var sb = new StringBuilder();
386-
sb.AppendLine("=== MSI Profile Switcher — model support report ===");
386+
sb.AppendLine("=== GhostDeck — model support report ===");
387387
sb.AppendLine($"Generated: {DateTime.Now:yyyy-MM-dd HH:mm} (READ-ONLY, no EC writes)");
388388
sb.AppendLine($"App version: {_appVersion}");
389389
sb.AppendLine($"EC firmware: {(string.IsNullOrEmpty(_firmware) ? "(unknown)" : _firmware)}");

UI/ReportPage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ protected override void Dispose(bool disposing)
849849
private string BuildReport()
850850
{
851851
var sb = new StringBuilder();
852-
sb.AppendLine("=== MSI Profile Switcher — model support report ===");
852+
sb.AppendLine("=== GhostDeck — model support report ===");
853853
sb.AppendLine($"Generated: {DateTime.Now:yyyy-MM-dd HH:mm} (READ-ONLY, no EC writes)");
854854
sb.AppendLine($"App version: {D.AppVersion()}");
855855
sb.AppendLine($"EC firmware: {(string.IsNullOrEmpty(D.Firmware()) ? "(unknown)" : D.Firmware())}");

0 commit comments

Comments
 (0)