πŸ‘¨πŸ“ Removed @author Stephen Kaplan <skaplanofficial@gmail.com> comments πŸ™ - Thank-you Stephen main

This commit is contained in:
Nikolaj Frey 2024-02-27 21:20:18 +11:00
parent 1b41384a85
commit 6d66d662dc
33 changed files with 19 additions and 39 deletions

View File

@ -1,16 +1,17 @@
{ {
"name": "sips", "name": "thingtime-commander",
"version": "1.6.0", "version": "1.7.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "sips", "name": "thingtime-commander",
"version": "1.6.0", "version": "1.7.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@raycast/api": "^1.48.8", "@raycast/api": "^1.48.8",
"@raycast/utils": "^1.4.18", "@raycast/utils": "^1.4.18",
"fuse.js": "^7.0.0",
"mathjs": "^11.8.2", "mathjs": "^11.8.2",
"run-applescript": "^6.1.0", "run-applescript": "^6.1.0",
"svgo": "^3.0.2", "svgo": "^3.0.2",
@ -1406,6 +1407,14 @@
"integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==",
"dev": true "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": { "node_modules/get-stream": {
"version": "6.0.1", "version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "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==", "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==",
"dev": true "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": { "get-stream": {
"version": "6.0.1", "version": "6.0.1",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",

View File

@ -21,7 +21,6 @@
], ],
"license": "MIT", "license": "MIT",
"preferences": [ "preferences": [
{ {
"title": "Image Input", "title": "Image Input",
"name": "inputMethod", "name": "inputMethod",
@ -87,7 +86,6 @@
"default": true, "default": true,
"required": false "required": false
} }
], ],
"commands": [ "commands": [
{ {
@ -168,7 +166,6 @@
} }
] ]
}, },
{ {
"name": "convert", "name": "convert",
"title": "Convert Images", "title": "Convert Images",
@ -350,11 +347,11 @@
"transform" "transform"
] ]
} }
], ],
"dependencies": { "dependencies": {
"@raycast/api": "^1.48.8", "@raycast/api": "^1.48.8",
"@raycast/utils": "^1.4.18", "@raycast/utils": "^1.4.18",
"fuse.js": "^7.0.0",
"mathjs": "^11.8.2", "mathjs": "^11.8.2",
"run-applescript": "^6.1.0", "run-applescript": "^6.1.0",
"svgo": "^3.0.2", "svgo": "^3.0.2",

View File

@ -2,7 +2,6 @@
* @file apply-filter.tsx * @file apply-filter.tsx
* *
* @summary Raycast command to apply filters on selected images. * @summary Raycast command to apply filters on selected images.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:52:33 * Created at : 2023-07-06 14:52:33
* Last modified : 2023-07-06 15:47:50 * Last modified : 2023-07-06 15:47:50

View File

@ -2,7 +2,6 @@
* @file components/ImageGeneratorActionPanel.tsx * @file components/ImageGeneratorActionPanel.tsx
* *
* @summary Action panel for image generator grid items. * @summary Action panel for image generator grid items.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 11:45:04 * Created at : 2023-07-06 11:45:04
* Last modified : 2023-07-06 16:47:05 * Last modified : 2023-07-06 16:47:05

View File

@ -2,7 +2,6 @@
* @file components/ImagePatternGrid.tsx * @file components/ImagePatternGrid.tsx
* *
* @summary Grid view for selecting an image pattern to generate. * @summary Grid view for selecting an image pattern to generate.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 11:44:03 * Created at : 2023-07-06 11:44:03
* Last modified : 2023-07-06 14:52:12 * Last modified : 2023-07-06 14:52:12

View File

@ -2,7 +2,6 @@
* @file components/SizeSelectionActionPanel.tsx * @file components/SizeSelectionActionPanel.tsx
* *
* @summary Action panel for image size selection grid items. * @summary Action panel for image size selection grid items.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 16:46:33 * Created at : 2023-07-06 16:46:33
* Last modified : 2023-07-06 16:46:49 * Last modified : 2023-07-06 16:46:49

View File

@ -2,7 +2,6 @@
* @file convert.tsx * @file convert.tsx
* *
* @summary Raycast command to convert selected images between various formats. * @summary Raycast command to convert selected images between various formats.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:53:25 * Created at : 2023-07-06 14:53:25
* Last modified : 2023-07-06 15:47:53 * Last modified : 2023-07-06 15:47:53

View File

@ -2,7 +2,6 @@
* @file create-image.tsx * @file create-image.tsx
* *
* @summary Raycast command to create images with various patterns and dimensions. * @summary Raycast command to create images with various patterns and dimensions.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:53:50 * Created at : 2023-07-06 14:53:50
* Last modified : 2023-07-06 16:48:08 * Last modified : 2023-07-06 16:48:08

View File

@ -2,7 +2,6 @@
* @file flip-horizontally.ts * @file flip-horizontally.ts
* *
* @summary Raycast command to flip selected images horizontally. * @summary Raycast command to flip selected images horizontally.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:54:33 * Created at : 2023-07-06 14:54:33
* Last modified : 2023-07-18 18:48:24 * Last modified : 2023-07-18 18:48:24

View File

@ -2,7 +2,6 @@
* @file flip-vertically.ts * @file flip-vertically.ts
* *
* @summary Raycast command to flip selected images vertically. * @summary Raycast command to flip selected images vertically.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:55:04 * Created at : 2023-07-06 14:55:04
* Last modified : 2023-07-18 18:48:29 * Last modified : 2023-07-18 18:48:29

View File

@ -2,7 +2,6 @@
* @file operations/convertOperation.ts * @file operations/convertOperation.ts
* *
* @summary Image conversion operation with support for basic image formats, SVGs, WebP, and PDFs. * @summary Image conversion operation with support for basic image formats, SVGs, WebP, and PDFs.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-dd 00:19:37 * Created at : 2023-07-dd 00:19:37
* Last modified : 2024-01-27 13:31:19 * Last modified : 2024-01-27 13:31:19

View File

@ -2,7 +2,6 @@
* @file operations/convertOperation.ts * @file operations/convertOperation.ts
* *
* @summary Image conversion operation with support for basic image formats, SVGs, WebP, and PDFs. * @summary Image conversion operation with support for basic image formats, SVGs, WebP, and PDFs.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-dd 00:19:37 * Created at : 2023-07-dd 00:19:37
* Last modified : 2024-01-27 13:31:19 * Last modified : 2024-01-27 13:31:19

View File

@ -2,7 +2,6 @@
* @file operations/filterOperation.ts * @file operations/filterOperation.ts
* *
* @summary Image filter operation with support for basic image formats, SVGs, WebP, and PDFs. * @summary Image filter operation with support for basic image formats, SVGs, WebP, and PDFs.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-dd 00:32:49 * Created at : 2023-07-dd 00:32:49
* Last modified : 2023-07-dd 00:32:49 * Last modified : 2023-07-dd 00:32:49

View File

@ -2,7 +2,6 @@
* @file operations/flipOperation.ts * @file operations/flipOperation.ts
* *
* @summary Image flipping operation with support for basic image formats, SVGs, WebP, and PDFs. * @summary Image flipping operation with support for basic image formats, SVGs, WebP, and PDFs.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-05 23:16:12 * Created at : 2023-07-05 23:16:12
* Last modified : 2023-07-06 15:48:56 * Last modified : 2023-07-06 15:48:56

View File

@ -2,7 +2,6 @@
* @file operations/optimizeOperation.ts * @file operations/optimizeOperation.ts
* *
* @summary Image optimization operation with support for basic image formats, SVGs, and WebP. * @summary Image optimization operation with support for basic image formats, SVGs, and WebP.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-05 23:49:16 * Created at : 2023-07-05 23:49:16
* Last modified : 2023-07-06 14:51:57 * Last modified : 2023-07-06 14:51:57

View File

@ -2,7 +2,6 @@
* @file operations/padOperation.ts * @file operations/padOperation.ts
* *
* @summary Image padding operation with support for basic image formats, SVGs, and WebP. * @summary Image padding operation with support for basic image formats, SVGs, and WebP.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-05 23:35:48 * Created at : 2023-07-05 23:35:48
* Last modified : 2023-07-06 14:51:59 * Last modified : 2023-07-06 14:51:59

View File

@ -2,7 +2,6 @@
* @file operations/resizeOperation.ts * @file operations/resizeOperation.ts
* *
* @summary Image resizing operation with support for basic image formats, SVGs, and WebP. * @summary Image resizing operation with support for basic image formats, SVGs, and WebP.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-05 23:31:23 * Created at : 2023-07-05 23:31:23
* Last modified : 2023-07-06 14:52:02 * Last modified : 2023-07-06 14:52:02

View File

@ -2,7 +2,6 @@
* @file operations/rotateOperation.ts * @file operations/rotateOperation.ts
* *
* @summary Image rotation operation with support for basic image formats, SVGs, WebP, and PDFs. * @summary Image rotation operation with support for basic image formats, SVGs, WebP, and PDFs.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-05 23:24:24 * Created at : 2023-07-05 23:24:24
* Last modified : 2023-07-06 14:52:04 * Last modified : 2023-07-06 14:52:04

View File

@ -2,7 +2,6 @@
* @file operations/runOperation.ts * @file operations/runOperation.ts
* *
* @summary Runs an operation on the selected images. * @summary Runs an operation on the selected images.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-18 18:45:28 * Created at : 2023-07-18 18:45:28
* Last modified : 2023-07-18 18:46:08 * Last modified : 2023-07-18 18:46:08

View File

@ -2,7 +2,6 @@
* @file operations/scaleOperation.ts * @file operations/scaleOperation.ts
* *
* @summary Image scaling operation with support for basic image formats, SVGs, and WebP. * @summary Image scaling operation with support for basic image formats, SVGs, and WebP.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-05 23:05:46 * Created at : 2023-07-05 23:05:46
* Last modified : 2023-07-06 15:48:36 * Last modified : 2023-07-06 15:48:36

View File

@ -2,7 +2,6 @@
* @file operations/padOperation.ts * @file operations/padOperation.ts
* *
* @summary Image sanitization operation with support for basic image formats, SVGs, and WebP. * @summary Image sanitization operation with support for basic image formats, SVGs, and WebP.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-05 23:35:48 * Created at : 2023-07-05 23:35:48
* Last modified : 2024-01-28 05:10:25 * Last modified : 2024-01-28 05:10:25

View File

@ -2,7 +2,6 @@
* @file optimize.ts * @file optimize.ts
* *
* @summary Raycast command to optimize selected images. * @summary Raycast command to optimize selected images.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:55:16 * Created at : 2023-07-06 14:55:16
* Last modified : 2023-07-18 18:48:32 * Last modified : 2023-07-18 18:48:32

View File

@ -2,7 +2,6 @@
* @file pad.ts * @file pad.ts
* *
* @summary Raycast command to add padding to selected images. * @summary Raycast command to add padding to selected images.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:55:36 * Created at : 2023-07-06 14:55:36
* Last modified : 2023-07-18 18:48:38 * Last modified : 2023-07-18 18:48:38

View File

@ -2,7 +2,6 @@
* @file resize.ts * @file resize.ts
* *
* @summary Raycast command to resize selected images to a specified width and/or height. * @summary Raycast command to resize selected images to a specified width and/or height.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:55:58 * Created at : 2023-07-06 14:55:58
* Last modified : 2023-07-18 18:48:42 * Last modified : 2023-07-18 18:48:42

View File

@ -2,7 +2,6 @@
* @file rotate.ts * @file rotate.ts
* *
* @summary Raycast command to rotate selected images by a specified number of degrees. * @summary Raycast command to rotate selected images by a specified number of degrees.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:56:15 * Created at : 2023-07-06 14:56:15
* Last modified : 2023-07-18 18:48:47 * Last modified : 2023-07-18 18:48:47

View File

@ -2,7 +2,6 @@
* @file scale.ts * @file scale.ts
* *
* @summary Raycast command to scale selected images by a given factor. * @summary Raycast command to scale selected images by a given factor.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:56:29 * Created at : 2023-07-06 14:56:29
* Last modified : 2023-07-18 18:48:52 * Last modified : 2023-07-18 18:48:52

View File

@ -2,7 +2,6 @@
* @file utilities/clipboard.ts * @file utilities/clipboard.ts
* *
* @summary Utilities for interacting with and getting images from the clipboard. * @summary Utilities for interacting with and getting images from the clipboard.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:50:26 * Created at : 2023-07-06 14:50:26
* Last modified : 2023-07-06 15:48:31 * Last modified : 2023-07-06 15:48:31

View File

@ -2,7 +2,6 @@
* @file utilities/enums.ts * @file utilities/enums.ts
* *
* @summary Enumerations used throughout the extension. * @summary Enumerations used throughout the extension.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 00:52:09 * Created at : 2023-07-06 00:52:09
* Last modified : 2023-07-06 15:48:29 * Last modified : 2023-07-06 15:48:29

View File

@ -2,7 +2,6 @@
* @file utilities/filters.ts * @file utilities/filters.ts
* *
* @summary Helper functions and resources for applying filters to images and PDFs using Core Image and ASObjC. * @summary Helper functions and resources for applying filters to images and PDFs using Core Image and ASObjC.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-dd 00:44:28 * Created at : 2023-07-dd 00:44:28
* Last modified : 2023-07-dd 00:44:28 * Last modified : 2023-07-dd 00:44:28

View File

@ -2,7 +2,6 @@
* @file utilities/generators.ts * @file utilities/generators.ts
* *
* @summary Image generators and associated utilities. * @summary Image generators and associated utilities.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 11:54:14 * Created at : 2023-07-06 11:54:14
* Last modified : 2023-07-06 16:47:11 * Last modified : 2023-07-06 16:47:11

View File

@ -2,7 +2,6 @@
* @file utilities/preferences.ts * @file utilities/preferences.ts
* *
* @summary Preferences for the extension as a whole and for individual commands. * @summary Preferences for the extension as a whole and for individual commands.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 15:34:53 * Created at : 2023-07-06 15:34:53
* Last modified : 2023-07-06 15:41:56 * Last modified : 2023-07-06 15:41:56

View File

@ -2,7 +2,6 @@
* @file utilities/types.ts * @file utilities/types.ts
* *
* @summary Types used throughout the extension. * @summary Types used throughout the extension.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:47:41 * Created at : 2023-07-06 14:47:41
* Last modified : 2023-07-06 15:48:21 * Last modified : 2023-07-06 15:48:21

View File

@ -2,7 +2,6 @@
* @file utilities/utils.ts * @file utilities/utils.ts
* *
* @summary Helper functions used throughout the extension. * @summary Helper functions used throughout the extension.
* @author Stephen Kaplan <skaplanofficial@gmail.com>
* *
* Created at : 2023-07-06 14:48:00 * Created at : 2023-07-06 14:48:00
* Last modified : 2024-01-27 13:31:10 * Last modified : 2024-01-27 13:31:10