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");