From 7502b8475f8147f1aa18b273ca0fbc6c04749138 Mon Sep 17 00:00:00 2001 From: Adrien Allard Date: Fri, 19 Jan 2024 17:30:25 +0100 Subject: [PATCH] - Added: Support new image input formats: dds (github issue #113). --- Application/FileConverter/Helpers.cs | 3 ++- CHANGELOG.md | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Application/FileConverter/Helpers.cs b/Application/FileConverter/Helpers.cs index 40a6d64..0611f6f 100644 --- a/Application/FileConverter/Helpers.cs +++ b/Application/FileConverter/Helpers.cs @@ -22,7 +22,7 @@ namespace FileConverter public static class Helpers { public static readonly string[] CompatibleInputExtensions = { - "3gp","aac","aiff","ape","arw","avi","bik","bmp","cda","cr2","dng","doc","docx","exr", + "3gp","aac","aiff","ape","arw","avi","bik","bmp","cda","cr2","dds","dng","doc","docx","exr", "flac","flv","gif","heic","ico","jpg","jpeg","m4a","m4v","mkv","mov","mp3","mp4","mpg","mpeg", "nef","odp","ods","odt","oga","ogg","ogv","opus","pdf","png","ppt","pptx","psd","raf", "rm", "svg","tga","tif","tiff", "ts", "vob","wav","webm","webp","wma","wmv","xls","xlsx" @@ -67,6 +67,7 @@ public static string GetExtensionCategory(string extension) case "arw": case "bmp": case "cr2": + case "dds": case "dng": case "exr": case "heic": diff --git a/CHANGELOG.md b/CHANGELOG.md index 8167985..8382709 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,9 @@ - Added: More presets for scale and rotation in File Converter default configuration. - Added: Display conversion progress on the Windows taskbar item. - Added: Display estimated remaining time for each jobs. -- Added: Support new raw image input formats: arw, dng, nef, raf, cr2 and heic (github issue #96). -- Added: Support mpg, opus, rm, tif, ts input extension (github issue #23 #29 #59 #101 #111). +- Added: Support new image input formats: arw, cr2, dds, dng, nef, raf, tif and heic (github issue #29 #96 #113). +- Added: Support new video input formats: mpg, rm, ts (github issue #23 #59 #101). +- Added: Support new audio input formats: opus (github issue #111). - Added: Icons on context menu elements and conversion preset list actions. - Added: Remove the need to ask administrator privileges to edit File Converter settings (github issue #4 #30 #32). - Added: Highlight in red elements that contains errors in the preset list.