From 6c7f5f14196fa57dfec14c910c65cbd82a05ccd3 Mon Sep 17 00:00:00 2001 From: maforget <11904426+maforget@users.noreply.github.com> Date: Sat, 21 Sep 2024 23:59:07 -0400 Subject: [PATCH] Added Web & Scan Information to Search Browser. --- ComicRack.Engine/Controls/SearchBrowserControl.cs | 6 ++++-- ComicRack/Output/Changes.txt | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ComicRack.Engine/Controls/SearchBrowserControl.cs b/ComicRack.Engine/Controls/SearchBrowserControl.cs index 5a31667..f553ffb 100644 --- a/ComicRack.Engine/Controls/SearchBrowserControl.cs +++ b/ComicRack.Engine/Controls/SearchBrowserControl.cs @@ -211,7 +211,7 @@ public SearchBrowserControl() private static void FillTypeCombo(ComboBox cb, int index, ListView lv, CheckBox chk, int selected) { - cb.Items.AddRange(new SelectionEntry[35] + cb.Items.AddRange(new SelectionEntry[] { new SelectionEntry(index, 0, "ShadowSeries", "Series", typeof(ComicBookSeriesMatcher), multiValue: false), new SelectionEntry(index, 1, "ShadowTitle", "Titles", typeof(ComicBookTitleMatcher), multiValue: false), @@ -247,7 +247,9 @@ private static void FillTypeCombo(ComboBox cb, int index, ListView lv, CheckBox new SelectionEntry(index, 31, "BookLocation", "Book Locations", typeof(ComicBookBookLocationMatcher), multiValue: false), new SelectionEntry(index, 32, "MainCharacterOrTeam", "Main Characters/Teams", typeof(ComicBookMainCharacterOrTeamMatcher), multiValue: false), new SelectionEntry(index, 33, "SeriesGroup", "Series Group", typeof(ComicBookSeriesGroupMatcher), multiValue: false), - new SelectionEntry(index, 34, "StoryArc", "Story Arcs", typeof(ComicBookStoryArcMatcher), multiValue: false) + new SelectionEntry(index, 34, "StoryArc", "Story Arcs", typeof(ComicBookStoryArcMatcher), multiValue: false), + new SelectionEntry(index, 35, "ScanInformation", "Scan Information", typeof(ComicBookScanInformationMatcher), multiValue: false), + new SelectionEntry(index, 36, "Web", "Web", typeof(ComicBookWebMatcher), multiValue: false), }.Sort()); cb.Tag = lv; lv.Tag = chk; diff --git a/ComicRack/Output/Changes.txt b/ComicRack/Output/Changes.txt index bbd3726..90c023e 100644 --- a/ComicRack/Output/Changes.txt +++ b/ComicRack/Output/Changes.txt @@ -22,6 +22,7 @@ Community Edition Build 0.9.180: * NEW: Added support for wildcard for "KeepFiles" in a script "Package.ini" (used for Data Manager multiple profiles). * NEW: Added a way to merge pages together. (See Wiki) * NEW: Added a check for update feature. +* NEW: Added the Scan Information & Web field to the Search Browser. * CHANGE: Program renamed to Community Edition, this means that a new config folder will be used %appdata%\cYo\ComicRack Community Edition.