πŸŒˆπŸ“¦πŸ§ πŸ¦„ app - renamed remix dir to app main

This commit is contained in:
Nikolaj Frey 2024-02-25 18:30:06 +11:00
parent cbfcaccd52
commit 1b41384a85
65 changed files with 9 additions and 18 deletions

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -175,6 +175,14 @@
"description": "Convert the selected images to the specified format", "description": "Convert the selected images to the specified format",
"mode": "view", "mode": "view",
"preferences": [ "preferences": [
{
"label": "WEBP",
"name": "showWEBP",
"description": "Whether to show WEBP as a conversion option",
"type": "checkbox",
"default": true,
"required": false
},
{ {
"title": "Enabled Formats", "title": "Enabled Formats",
"label": "ASTC", "label": "ASTC",
@ -328,14 +336,6 @@
"default": true, "default": true,
"required": false "required": false
}, },
{
"label": "WEBP",
"name": "showWEBP",
"description": "Whether to show WEBP as a conversion option",
"type": "checkbox",
"default": true,
"required": false
},
{ {
"label": "SVG", "label": "SVG",
"name": "showSVG", "name": "showSVG",

View File

@ -1,13 +1,3 @@
/**
* @file convert.tsx
*
* @summary Raycast command to convert selected images between various formats.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
*
* Created at : 2023-07-06 14:53:25
* Last modified : 2023-07-06 15:47:53
*/
import { Action, ActionPanel, getPreferenceValues, showToast, Toast, Icon, List, openCommandPreferences, closeMainWindow, showHUD } from "@raycast/api"; import { Action, ActionPanel, getPreferenceValues, showToast, Toast, Icon, List, openCommandPreferences, closeMainWindow, showHUD } from "@raycast/api";
import any from "./operations/anyOperation"; import any from "./operations/anyOperation";

View File

@ -19,6 +19,7 @@ import runOperation from "./operations/runOperation";
* All supported image formats for conversion. * All supported image formats for conversion.
*/ */
const FORMATS = [ const FORMATS = [
"WEBP",
"ASTC", "ASTC",
"BMP", "BMP",
"DDS", "DDS",