From ad98499da0f2527e6531066c9b65f75141128003 Mon Sep 17 00:00:00 2001 From: C4illin Date: Thu, 27 Feb 2025 22:17:02 +0100 Subject: [PATCH] chore: move libheif below vips --- README.md | 2 +- src/converters/main.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 87e6587..2baa269 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ A self-hosted online file converter. Supports over a thousand different formats. |------------------------------------------------------------------------------|---------------|---------------|-------------| | [libjxl](https://github.com/libjxl/libjxl) | JPEG XL | 11 | 11 | | [resvg](https://github.com/RazrFalcon/resvg) | SVG | 1 | 1 | -| [libheif](https://github.com/strukturag/libheif) | HEIF | 7 | 6 | | [Vips](https://github.com/libvips/libvips) | Images | 45 | 23 | +| [libheif](https://github.com/strukturag/libheif) | HEIF | 2 | 4 | | [XeLaTeX](https://tug.org/xetex/) | LaTeX | 1 | 1 | | [Calibre](https://calibre-ebook.com/) | E-books | 26 | 19 | | [Pandoc](https://pandoc.org/) | Documents | 43 | 65 | diff --git a/src/converters/main.ts b/src/converters/main.ts index 43fae19..08acbf4 100644 --- a/src/converters/main.ts +++ b/src/converters/main.ts @@ -50,14 +50,14 @@ const properties: Record< properties: propertiesresvg, converter: convertresvg, }, - libheif: { - properties: propertiesLibheif, - converter: convertLibheif, - }, vips: { properties: propertiesImage, converter: convertImage, }, + libheif: { + properties: propertiesLibheif, + converter: convertLibheif, + }, xelatex: { properties: propertiesxelatex, converter: convertxelatex,