Update for commic archive file types. (#1276)

Comic book archive is not a distinct file format. It is a filename extension naming convention.
The filename extension indicates the archive type used:
.cb7 → 7z
.cbr → RAR
.cbt → TAR
.cbz → ZIP
This commit is contained in:
MonOcean
2023-03-25 20:17:32 +08:00
committed by GitHub
parent 47540eef95
commit 5c9072acfc

View File

@@ -26,7 +26,7 @@ namespace QuickLook.Plugin.ArchiveViewer
public class Plugin : IViewer
{
private static readonly string[] Extensions =
{".rar", ".zip", ".tar", ".tgz", ".gz", ".bz2", ".lz", ".xz", ".7z", ".jar", ".crx", ".nupkg"};
{".rar", ".zip", ".tar", ".tgz", ".gz", ".bz2", ".lz", ".xz", ".7z", ".jar", ".crx", ".nupkg", ".cb7", ".cbr", ".cbt", ".cbz"};
private ArchiveInfoPanel _panel;