From 57847ff35898515f05697ebad8e817cdc361190f Mon Sep 17 00:00:00 2001 From: Ednunp <29843396+Ednunp@users.noreply.github.com> Date: Tue, 7 Jul 2026 20:36:17 +0100 Subject: [PATCH] Pan/EQ: label the advanced mode "12 band"; single recordings include the machine name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two of Ed's test findings: the EQ mode picker still said "10 band advanced EQ" (it's 12 now); and a single-file recording's name now carries the recorder's machine name too — " RemSound recording ." — matching the split tracks. Held for release. Co-Authored-By: Claude Opus 4.8 --- src/RemSound.App/MainForm.cs | 2 +- src/RemSound.App/RecordingController.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/RemSound.App/MainForm.cs b/src/RemSound.App/MainForm.cs index c89c733..2f835d6 100644 --- a/src/RemSound.App/MainForm.cs +++ b/src/RemSound.App/MainForm.cs @@ -3155,7 +3155,7 @@ public sealed class MainForm : Form panSlider.ValueChanged += (_, _) => OnPanChanged(); resetPeerEqButton.Click += (_, _) => OnResetPeerEq(); eqModeList.Items.Add("3 band basic EQ"); - eqModeList.Items.Add("10 band advanced EQ"); + eqModeList.Items.Add("12 band advanced EQ"); eqModeList.SelectedIndexChanged += (_, _) => OnEqModeChanged(); var peerLabel = new MnemonicLabel { Text = "Peer to shape (Alt+&U)", AutoSize = true, MnemonicTarget = panEqPeerList }; diff --git a/src/RemSound.App/RecordingController.cs b/src/RemSound.App/RecordingController.cs index 5ab26b8..1cf3024 100644 --- a/src/RemSound.App/RecordingController.cs +++ b/src/RemSound.App/RecordingController.cs @@ -264,7 +264,7 @@ internal sealed class RecordingController Path.Combine(BaseFolder(s), now.ToString("yyyy-MM-dd")); private static string SingleTrackPath(RecordingSettings s, DateTime now) => - Path.Combine(DateFolder(s, now), $"{now:HH-mm-ss} RemSound recording.{AudioRecorder.ExtensionFor(s.FileFormat)}"); + Path.Combine(DateFolder(s, now), $"{now:HH-mm-ss} RemSound recording {Sanitize(Environment.MachineName)}.{AudioRecorder.ExtensionFor(s.FileFormat)}"); private static string MultiTrackFolder(RecordingSettings s, DateTime now) => Path.Combine(DateFolder(s, now), $"{now:HH-mm-ss} RemSound recording multi track");