Skip to content

Commit

Permalink
Added Web & Scan Information to Search Browser.
Browse files Browse the repository at this point in the history
  • Loading branch information
maforget committed Sep 22, 2024
1 parent d33a09e commit 6c7f5f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ComicRack.Engine/Controls/SearchBrowserControl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions ComicRack/Output/Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6c7f5f1

Please sign in to comment.