From 6d66d662dc7d493e3e144aba8c11e377ff2689e5 Mon Sep 17 00:00:00 2001 From: Nikolaj Frey Date: Tue, 27 Feb 2024 21:20:18 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=A8=F0=9F=93=9D=20Removed=20@author=20?= =?UTF-8?q?Stephen=20Kaplan=20=20comments=20?= =?UTF-8?q?=F0=9F=99=8F=20-=20Thank-you=20Stephen=20main?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- raycast/package-lock.json | 22 +++++++++++++++---- raycast/package.json | 5 +---- raycast/src/apply-filter.tsx | 1 - .../components/ImageGeneratorActionPanel.tsx | 1 - raycast/src/components/ImagePatternGrid.tsx | 1 - .../components/SizeSelectionActionPanel.tsx | 1 - raycast/src/convert.tsx | 1 - raycast/src/create-image.tsx | 1 - raycast/src/flip-horizontally.ts | 1 - raycast/src/flip-vertically.ts | 1 - raycast/src/operations/anyOperation.ts | 1 - raycast/src/operations/convertOperation.ts | 1 - raycast/src/operations/filterOperation.ts | 1 - raycast/src/operations/flipOperation.ts | 1 - raycast/src/operations/optimizeOperation.ts | 1 - raycast/src/operations/padOperation.ts | 1 - raycast/src/operations/resizeOperation.ts | 1 - raycast/src/operations/rotateOperation.ts | 1 - raycast/src/operations/runOperation.ts | 1 - raycast/src/operations/scaleOperation.ts | 1 - raycast/src/operations/stripEXIFOperation.ts | 1 - raycast/src/optimize.ts | 1 - raycast/src/pad.ts | 1 - raycast/src/resize.ts | 1 - raycast/src/rotate.ts | 1 - raycast/src/scale.ts | 1 - raycast/src/utilities/clipboard.ts | 1 - raycast/src/utilities/enums.ts | 1 - raycast/src/utilities/filters.ts | 1 - raycast/src/utilities/generators.ts | 1 - raycast/src/utilities/preferences.ts | 1 - raycast/src/utilities/types.ts | 1 - raycast/src/utilities/utils.ts | 1 - 33 files changed, 19 insertions(+), 39 deletions(-) diff --git a/raycast/package-lock.json b/raycast/package-lock.json index 36c57b7..acf6718 100644 --- a/raycast/package-lock.json +++ b/raycast/package-lock.json @@ -1,16 +1,17 @@ { - "name": "sips", - "version": "1.6.0", + "name": "thingtime-commander", + "version": "1.7.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "sips", - "version": "1.6.0", + "name": "thingtime-commander", + "version": "1.7.0", "license": "MIT", "dependencies": { "@raycast/api": "^1.48.8", "@raycast/utils": "^1.4.18", + "fuse.js": "^7.0.0", "mathjs": "^11.8.2", "run-applescript": "^6.1.0", "svgo": "^3.0.2", @@ -1406,6 +1407,14 @@ "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, + "node_modules/fuse.js": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-7.0.0.tgz", + "integrity": "sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==", + "engines": { + "node": ">=10" + } + }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -3541,6 +3550,11 @@ "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "dev": true }, + "fuse.js": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/fuse.js/-/fuse.js-7.0.0.tgz", + "integrity": "sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==" + }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", diff --git a/raycast/package.json b/raycast/package.json index 12bfab4..fc17ea7 100644 --- a/raycast/package.json +++ b/raycast/package.json @@ -21,7 +21,6 @@ ], "license": "MIT", "preferences": [ - { "title": "Image Input", "name": "inputMethod", @@ -87,7 +86,6 @@ "default": true, "required": false } - ], "commands": [ { @@ -168,7 +166,6 @@ } ] }, - { "name": "convert", "title": "Convert Images", @@ -350,11 +347,11 @@ "transform" ] } - ], "dependencies": { "@raycast/api": "^1.48.8", "@raycast/utils": "^1.4.18", + "fuse.js": "^7.0.0", "mathjs": "^11.8.2", "run-applescript": "^6.1.0", "svgo": "^3.0.2", diff --git a/raycast/src/apply-filter.tsx b/raycast/src/apply-filter.tsx index fa67811..0b057ec 100644 --- a/raycast/src/apply-filter.tsx +++ b/raycast/src/apply-filter.tsx @@ -2,7 +2,6 @@ * @file apply-filter.tsx * * @summary Raycast command to apply filters on selected images. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:52:33 * Last modified : 2023-07-06 15:47:50 diff --git a/raycast/src/components/ImageGeneratorActionPanel.tsx b/raycast/src/components/ImageGeneratorActionPanel.tsx index 9048abb..b8782d5 100644 --- a/raycast/src/components/ImageGeneratorActionPanel.tsx +++ b/raycast/src/components/ImageGeneratorActionPanel.tsx @@ -2,7 +2,6 @@ * @file components/ImageGeneratorActionPanel.tsx * * @summary Action panel for image generator grid items. - * @author Stephen Kaplan * * Created at : 2023-07-06 11:45:04 * Last modified : 2023-07-06 16:47:05 diff --git a/raycast/src/components/ImagePatternGrid.tsx b/raycast/src/components/ImagePatternGrid.tsx index 1112715..2a01342 100644 --- a/raycast/src/components/ImagePatternGrid.tsx +++ b/raycast/src/components/ImagePatternGrid.tsx @@ -2,7 +2,6 @@ * @file components/ImagePatternGrid.tsx * * @summary Grid view for selecting an image pattern to generate. - * @author Stephen Kaplan * * Created at : 2023-07-06 11:44:03 * Last modified : 2023-07-06 14:52:12 diff --git a/raycast/src/components/SizeSelectionActionPanel.tsx b/raycast/src/components/SizeSelectionActionPanel.tsx index 36d09ec..85dc5de 100644 --- a/raycast/src/components/SizeSelectionActionPanel.tsx +++ b/raycast/src/components/SizeSelectionActionPanel.tsx @@ -2,7 +2,6 @@ * @file components/SizeSelectionActionPanel.tsx * * @summary Action panel for image size selection grid items. - * @author Stephen Kaplan * * Created at : 2023-07-06 16:46:33 * Last modified : 2023-07-06 16:46:49 diff --git a/raycast/src/convert.tsx b/raycast/src/convert.tsx index 73e7ba3..3376372 100644 --- a/raycast/src/convert.tsx +++ b/raycast/src/convert.tsx @@ -2,7 +2,6 @@ * @file convert.tsx * * @summary Raycast command to convert selected images between various formats. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:53:25 * Last modified : 2023-07-06 15:47:53 diff --git a/raycast/src/create-image.tsx b/raycast/src/create-image.tsx index 4eb4f64..c258400 100644 --- a/raycast/src/create-image.tsx +++ b/raycast/src/create-image.tsx @@ -2,7 +2,6 @@ * @file create-image.tsx * * @summary Raycast command to create images with various patterns and dimensions. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:53:50 * Last modified : 2023-07-06 16:48:08 diff --git a/raycast/src/flip-horizontally.ts b/raycast/src/flip-horizontally.ts index 51c0b78..ed57ba3 100644 --- a/raycast/src/flip-horizontally.ts +++ b/raycast/src/flip-horizontally.ts @@ -2,7 +2,6 @@ * @file flip-horizontally.ts * * @summary Raycast command to flip selected images horizontally. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:54:33 * Last modified : 2023-07-18 18:48:24 diff --git a/raycast/src/flip-vertically.ts b/raycast/src/flip-vertically.ts index b4bbf0f..d0b2bda 100644 --- a/raycast/src/flip-vertically.ts +++ b/raycast/src/flip-vertically.ts @@ -2,7 +2,6 @@ * @file flip-vertically.ts * * @summary Raycast command to flip selected images vertically. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:55:04 * Last modified : 2023-07-18 18:48:29 diff --git a/raycast/src/operations/anyOperation.ts b/raycast/src/operations/anyOperation.ts index f3494a0..8185678 100644 --- a/raycast/src/operations/anyOperation.ts +++ b/raycast/src/operations/anyOperation.ts @@ -2,7 +2,6 @@ * @file operations/convertOperation.ts * * @summary Image conversion operation with support for basic image formats, SVGs, WebP, and PDFs. - * @author Stephen Kaplan * * Created at : 2023-07-dd 00:19:37 * Last modified : 2024-01-27 13:31:19 diff --git a/raycast/src/operations/convertOperation.ts b/raycast/src/operations/convertOperation.ts index 1881659..dfc4053 100644 --- a/raycast/src/operations/convertOperation.ts +++ b/raycast/src/operations/convertOperation.ts @@ -2,7 +2,6 @@ * @file operations/convertOperation.ts * * @summary Image conversion operation with support for basic image formats, SVGs, WebP, and PDFs. - * @author Stephen Kaplan * * Created at : 2023-07-dd 00:19:37 * Last modified : 2024-01-27 13:31:19 diff --git a/raycast/src/operations/filterOperation.ts b/raycast/src/operations/filterOperation.ts index fa4809d..caddfca 100644 --- a/raycast/src/operations/filterOperation.ts +++ b/raycast/src/operations/filterOperation.ts @@ -2,7 +2,6 @@ * @file operations/filterOperation.ts * * @summary Image filter operation with support for basic image formats, SVGs, WebP, and PDFs. - * @author Stephen Kaplan * * Created at : 2023-07-dd 00:32:49 * Last modified : 2023-07-dd 00:32:49 diff --git a/raycast/src/operations/flipOperation.ts b/raycast/src/operations/flipOperation.ts index 8ebd053..5f49f72 100644 --- a/raycast/src/operations/flipOperation.ts +++ b/raycast/src/operations/flipOperation.ts @@ -2,7 +2,6 @@ * @file operations/flipOperation.ts * * @summary Image flipping operation with support for basic image formats, SVGs, WebP, and PDFs. - * @author Stephen Kaplan * * Created at : 2023-07-05 23:16:12 * Last modified : 2023-07-06 15:48:56 diff --git a/raycast/src/operations/optimizeOperation.ts b/raycast/src/operations/optimizeOperation.ts index b738db6..c6a91e8 100644 --- a/raycast/src/operations/optimizeOperation.ts +++ b/raycast/src/operations/optimizeOperation.ts @@ -2,7 +2,6 @@ * @file operations/optimizeOperation.ts * * @summary Image optimization operation with support for basic image formats, SVGs, and WebP. - * @author Stephen Kaplan * * Created at : 2023-07-05 23:49:16 * Last modified : 2023-07-06 14:51:57 diff --git a/raycast/src/operations/padOperation.ts b/raycast/src/operations/padOperation.ts index ad927cd..2d580cf 100644 --- a/raycast/src/operations/padOperation.ts +++ b/raycast/src/operations/padOperation.ts @@ -2,7 +2,6 @@ * @file operations/padOperation.ts * * @summary Image padding operation with support for basic image formats, SVGs, and WebP. - * @author Stephen Kaplan * * Created at : 2023-07-05 23:35:48 * Last modified : 2023-07-06 14:51:59 diff --git a/raycast/src/operations/resizeOperation.ts b/raycast/src/operations/resizeOperation.ts index 469a6de..368b22c 100644 --- a/raycast/src/operations/resizeOperation.ts +++ b/raycast/src/operations/resizeOperation.ts @@ -2,7 +2,6 @@ * @file operations/resizeOperation.ts * * @summary Image resizing operation with support for basic image formats, SVGs, and WebP. - * @author Stephen Kaplan * * Created at : 2023-07-05 23:31:23 * Last modified : 2023-07-06 14:52:02 diff --git a/raycast/src/operations/rotateOperation.ts b/raycast/src/operations/rotateOperation.ts index 1cdd77a..72d9b83 100644 --- a/raycast/src/operations/rotateOperation.ts +++ b/raycast/src/operations/rotateOperation.ts @@ -2,7 +2,6 @@ * @file operations/rotateOperation.ts * * @summary Image rotation operation with support for basic image formats, SVGs, WebP, and PDFs. - * @author Stephen Kaplan * * Created at : 2023-07-05 23:24:24 * Last modified : 2023-07-06 14:52:04 diff --git a/raycast/src/operations/runOperation.ts b/raycast/src/operations/runOperation.ts index 6466a94..cb3bf67 100644 --- a/raycast/src/operations/runOperation.ts +++ b/raycast/src/operations/runOperation.ts @@ -2,7 +2,6 @@ * @file operations/runOperation.ts * * @summary Runs an operation on the selected images. - * @author Stephen Kaplan * * Created at : 2023-07-18 18:45:28 * Last modified : 2023-07-18 18:46:08 diff --git a/raycast/src/operations/scaleOperation.ts b/raycast/src/operations/scaleOperation.ts index 0d36208..e377d41 100644 --- a/raycast/src/operations/scaleOperation.ts +++ b/raycast/src/operations/scaleOperation.ts @@ -2,7 +2,6 @@ * @file operations/scaleOperation.ts * * @summary Image scaling operation with support for basic image formats, SVGs, and WebP. - * @author Stephen Kaplan * * Created at : 2023-07-05 23:05:46 * Last modified : 2023-07-06 15:48:36 diff --git a/raycast/src/operations/stripEXIFOperation.ts b/raycast/src/operations/stripEXIFOperation.ts index 80bf4ed..bd0a925 100644 --- a/raycast/src/operations/stripEXIFOperation.ts +++ b/raycast/src/operations/stripEXIFOperation.ts @@ -2,7 +2,6 @@ * @file operations/padOperation.ts * * @summary Image sanitization operation with support for basic image formats, SVGs, and WebP. - * @author Stephen Kaplan * * Created at : 2023-07-05 23:35:48 * Last modified : 2024-01-28 05:10:25 diff --git a/raycast/src/optimize.ts b/raycast/src/optimize.ts index 82adf29..4f80723 100644 --- a/raycast/src/optimize.ts +++ b/raycast/src/optimize.ts @@ -2,7 +2,6 @@ * @file optimize.ts * * @summary Raycast command to optimize selected images. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:55:16 * Last modified : 2023-07-18 18:48:32 diff --git a/raycast/src/pad.ts b/raycast/src/pad.ts index e0115d4..2c3a932 100644 --- a/raycast/src/pad.ts +++ b/raycast/src/pad.ts @@ -2,7 +2,6 @@ * @file pad.ts * * @summary Raycast command to add padding to selected images. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:55:36 * Last modified : 2023-07-18 18:48:38 diff --git a/raycast/src/resize.ts b/raycast/src/resize.ts index ff744c8..be305c2 100644 --- a/raycast/src/resize.ts +++ b/raycast/src/resize.ts @@ -2,7 +2,6 @@ * @file resize.ts * * @summary Raycast command to resize selected images to a specified width and/or height. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:55:58 * Last modified : 2023-07-18 18:48:42 diff --git a/raycast/src/rotate.ts b/raycast/src/rotate.ts index 183258e..cd4b0e2 100644 --- a/raycast/src/rotate.ts +++ b/raycast/src/rotate.ts @@ -2,7 +2,6 @@ * @file rotate.ts * * @summary Raycast command to rotate selected images by a specified number of degrees. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:56:15 * Last modified : 2023-07-18 18:48:47 diff --git a/raycast/src/scale.ts b/raycast/src/scale.ts index 0582b4d..970f4e3 100644 --- a/raycast/src/scale.ts +++ b/raycast/src/scale.ts @@ -2,7 +2,6 @@ * @file scale.ts * * @summary Raycast command to scale selected images by a given factor. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:56:29 * Last modified : 2023-07-18 18:48:52 diff --git a/raycast/src/utilities/clipboard.ts b/raycast/src/utilities/clipboard.ts index 9c34fab..ad1ebf5 100644 --- a/raycast/src/utilities/clipboard.ts +++ b/raycast/src/utilities/clipboard.ts @@ -2,7 +2,6 @@ * @file utilities/clipboard.ts * * @summary Utilities for interacting with and getting images from the clipboard. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:50:26 * Last modified : 2023-07-06 15:48:31 diff --git a/raycast/src/utilities/enums.ts b/raycast/src/utilities/enums.ts index 9664643..8a8bc24 100644 --- a/raycast/src/utilities/enums.ts +++ b/raycast/src/utilities/enums.ts @@ -2,7 +2,6 @@ * @file utilities/enums.ts * * @summary Enumerations used throughout the extension. - * @author Stephen Kaplan * * Created at : 2023-07-06 00:52:09 * Last modified : 2023-07-06 15:48:29 diff --git a/raycast/src/utilities/filters.ts b/raycast/src/utilities/filters.ts index c52e1f2..4850746 100644 --- a/raycast/src/utilities/filters.ts +++ b/raycast/src/utilities/filters.ts @@ -2,7 +2,6 @@ * @file utilities/filters.ts * * @summary Helper functions and resources for applying filters to images and PDFs using Core Image and ASObjC. - * @author Stephen Kaplan * * Created at : 2023-07-dd 00:44:28 * Last modified : 2023-07-dd 00:44:28 diff --git a/raycast/src/utilities/generators.ts b/raycast/src/utilities/generators.ts index 1efcd59..a11cd2b 100644 --- a/raycast/src/utilities/generators.ts +++ b/raycast/src/utilities/generators.ts @@ -2,7 +2,6 @@ * @file utilities/generators.ts * * @summary Image generators and associated utilities. - * @author Stephen Kaplan * * Created at : 2023-07-06 11:54:14 * Last modified : 2023-07-06 16:47:11 diff --git a/raycast/src/utilities/preferences.ts b/raycast/src/utilities/preferences.ts index 74ff3f5..6240a6d 100644 --- a/raycast/src/utilities/preferences.ts +++ b/raycast/src/utilities/preferences.ts @@ -2,7 +2,6 @@ * @file utilities/preferences.ts * * @summary Preferences for the extension as a whole and for individual commands. - * @author Stephen Kaplan * * Created at : 2023-07-06 15:34:53 * Last modified : 2023-07-06 15:41:56 diff --git a/raycast/src/utilities/types.ts b/raycast/src/utilities/types.ts index 064c82d..1725573 100644 --- a/raycast/src/utilities/types.ts +++ b/raycast/src/utilities/types.ts @@ -2,7 +2,6 @@ * @file utilities/types.ts * * @summary Types used throughout the extension. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:47:41 * Last modified : 2023-07-06 15:48:21 diff --git a/raycast/src/utilities/utils.ts b/raycast/src/utilities/utils.ts index b548fcd..f0cd110 100644 --- a/raycast/src/utilities/utils.ts +++ b/raycast/src/utilities/utils.ts @@ -2,7 +2,6 @@ * @file utilities/utils.ts * * @summary Helper functions used throughout the extension. - * @author Stephen Kaplan * * Created at : 2023-07-06 14:48:00 * Last modified : 2024-01-27 13:31:10