Skip to content

Commit

Permalink
Archive file extensions in ASCII order
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Jan 7, 2025
1 parent bc7ae46 commit bbc5bee
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion QuickLook.Plugin/QuickLook.Plugin.ArchiveViewer/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,19 @@ 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", ".cb7", ".cbr", ".cbt", ".cbz"];
[
".7z",
".bz2",
".cb7", ".cbr", ".cbt", ".cbz", ".crx",
".gz",
".jar",
".lz",
".nupkg",
".rar",
".tar", ".tgz",
".xz",
".zip",
];

private ArchiveInfoPanel _panel;

Expand Down

0 comments on commit bbc5bee

Please sign in to comment.