Added appimage to executables

This commit is contained in:
Thorsten Sommer 2025-06-28 22:33:30 +02:00
parent 70622492a9
commit 12c389b08f
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -21,5 +21,5 @@ public readonly record struct FileTypeFilter(string FilterName, string[] FilterE
public static FileTypeFilter AllImages => new(TB("All Image Files"), ["jpg", "jpeg", "png", "gif", "bmp", "tiff"]);
public static FileTypeFilter Executables => new(TB("Executable Files"), ["exe", "app", "bin"]);
public static FileTypeFilter Executables => new(TB("Executable Files"), ["exe", "app", "bin", "appimage"]);
}