Skip to content

Commit

Permalink
Quick Search will also search Custom Values with All
Browse files Browse the repository at this point in the history
  • Loading branch information
maforget committed Mar 26, 2024
1 parent fb50ec7 commit 5985699
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using cYo.Common.Collections;
using cYo.Common.ComponentModel;

namespace cYo.Projects.ComicRack.Engine
Expand Down Expand Up @@ -220,6 +222,11 @@ public static IEnumerable<string> GetOptionValueSet(ComicBook comicBook, Matcher
yield return comicBook.BookLocation;
yield return comicBook.ISBN;
yield return comicBook.ScanInformation;
foreach (var customValue in comicBook.GetCustomValues())
{
yield return customValue.Value;
}

}
}
}
1 change: 1 addition & 0 deletions ComicRack/Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Community Edition Build 0.9.180:
* CHANGE: Replaced the old news by the Community Edition commit history.
* CHANGE: Replaced the ComicRack.ini setting of DisableGhostscript by PdfEngineToUse, that let's you choose between Pdfium, Native & Ghostscript (if installed). Ghostscript will no longer be the default if installed, to use it you will need to set ""PdfEngineToUse = Ghostscript"".
* CHANGE: Permit to set the maximum memory to be more than 1GB without going unlimited. The new maximum is 4064MB, more than that will be unlimited. This will not change your current settings, if you are already set to unlimited it will stay that way.
* CHANGE: Magnifing glass maximum size is twice the previous size (512 x 512 => 1024 x 1024)

* BUGFIX: Fixed crash when the clipboard contains some objects while the program is idle. The check should now only happen on a right-click and not in the background. It should at least lessen the frequency of the crash, maybe remove it completely.
* BUGFIX: Fixed smartlist "in range" for dates, the second field wasn't taken into account.
Expand Down

0 comments on commit 5985699

Please sign in to comment.