mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-12 10:19:07 +00:00
ArchiveViewer: Add support for more file types (#820)
`.jar` and `.crx` file suppport are added, treated the same as `.zip` files
This commit is contained in:
@@ -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"};
|
||||
{".rar", ".zip", ".tar", ".tgz", ".gz", ".bz2", ".lz", ".xz", ".7z", ".jar", ".crx"};
|
||||
|
||||
private ArchiveInfoPanel _panel;
|
||||
|
||||
@@ -64,4 +64,4 @@ namespace QuickLook.Plugin.ArchiveViewer
|
||||
_panel = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user