Skip to content

Commit

Permalink
- Added: Support new image input formats: dds (github issue #113).
Browse files Browse the repository at this point in the history
  • Loading branch information
Tichau committed Jan 19, 2024
1 parent 3c9235d commit 7502b84
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Application/FileConverter/Helpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -67,6 +67,7 @@ public static string GetExtensionCategory(string extension)
case "arw":
case "bmp":
case "cr2":
case "dds":
case "dng":
case "exr":
case "heic":
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7502b84

Please sign in to comment.