Skip to content

Commit c5e2a12

Browse files
committed
HideUnknownLogLevel is not saved between runs fix #2256
1 parent 6110937 commit c5e2a12

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Analogy/CommonChangeLog.cs

+2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ public static IEnumerable<AnalogyChangeLog> GetChangeLog()
99
{
1010
return new List<AnalogyChangeLog>
1111
{
12+
new ("V8.0.0 - HideUnknownLogLevel is not saved between runs fix #2256", AnalogChangeLogType.Bug, "Lior Banai", new DateTime(2025, 02, 01), "8.0.0"),
1213
new ("V8.0.0 - Remove Bookmarks feature #2254", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2025, 02, 01), "8.0.0"),
14+
new ("V8.0.0 - TimeOffsetType can not be configured #2242", AnalogChangeLogType.Bug, "Lior Banai", new DateTime(2025, 02, 01), "8.0.0"),
1315
new ("V7.2.0 - Implement MessageOpened method #2205", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2024, 12, 20), "7.2.0"),
1416
new ("V7.2.0 - Add void MessageSelected(IAnalogyLogMessage message) API #2194", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2024, 12, 20), "7.2.0"),
1517
new ("V7.1.1 - Exception parsing value #2141", AnalogChangeLogType.Improvement, "Lior Banai", new DateTime(2024, 12, 14), "7.1.1"),

Analogy/Managers/UserSettingsManager.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -540,6 +540,7 @@ private UserSettings CreateUserSettings()
540540
WindowPositions = WindowPositions,
541541
SupportLinuxFormatting = SupportLinuxFormatting,
542542
CollapseFolderAndFilesPanel = CollapseFolderAndFilesPanel,
543+
HideUnknownLogLevel = HideUnknownLogLevel,
543544
};
544545
return userSettings;
545546
}
@@ -692,8 +693,7 @@ private void SavePerUserSettings()
692693
Settings.Default.ShowMessageDetails = ShowMessageDetails;
693694
Settings.Default.AdvancedMode = AdvancedMode;
694695
Settings.Default.AdvancedModeRawSQLFilterEnabled = AdvancedModeRawSQLFilterEnabled;
695-
Settings.Default.AdvancedModeAdditionalFilteringColumnsEnabled =
696-
AdvancedModeAdditionalFilteringColumnsEnabled;
696+
Settings.Default.AdvancedModeAdditionalFilteringColumnsEnabled = AdvancedModeAdditionalFilteringColumnsEnabled;
697697
Settings.Default.LogLevelSelection = LogLevelSelection.ToString();
698698
Settings.Default.ShowWhatIsNewAtStartup = ShowWhatIsNewAtStartup;
699699
Settings.Default.FontSettings = JsonConvert.SerializeObject(FontSettings);
@@ -718,6 +718,7 @@ private void SavePerUserSettings()
718718
Settings.Default.CombineOnlineProviders = CombineOnlineProviders;
719719
Settings.Default.WindowPositions = JsonConvert.SerializeObject(WindowPositions);
720720
Settings.Default.SupportLinuxFormatting = SupportLinuxFormatting;
721+
Settings.Default.HideUnknownLogLevel = HideUnknownLogLevel;
721722
Settings.Default.CollapseFolderAndFilesPanel = CollapseFolderAndFilesPanel;
722723
Settings.Default.Save();
723724
}

0 commit comments

Comments
 (0)