Merge pull request #3682 from onesounds/PreviewMedia

Add additional media file extensions for Preview
This commit is contained in:
DB P 2025-06-09 17:07:32 +09:00 committed by GitHub
commit 680c6cc51a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -391,7 +391,11 @@ namespace Flow.Launcher.Plugin.Explorer.Search
volumePath, freespace, totalspace, Environment.NewLine);
}
private static readonly string[] MediaExtensions = { ".jpg", ".png", ".avi", ".mkv", ".bmp", ".gif", ".wmv", ".mp3", ".flac", ".mp4" };
private static readonly string[] MediaExtensions =
{
".jpg", ".png", ".avi", ".mkv", ".bmp", ".gif", ".wmv", ".mp3", ".flac", ".mp4",
".m4a", ".m4v", ".heic", ".mov", ".flv", ".webm"
};
}
public enum ResultType