πŸ‘¨πŸ“ 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",
"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",

View File

@ -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",

View File

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

View File

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

View File

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

View File

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

View File

@ -2,7 +2,6 @@
* @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

View File

@ -2,7 +2,6 @@
* @file create-image.tsx
*
* @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
* Last modified : 2023-07-06 16:48:08

View File

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

View File

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

View File

@ -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 <skaplanofficial@gmail.com>
*
* Created at : 2023-07-dd 00:19:37
* Last modified : 2024-01-27 13:31:19

View File

@ -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 <skaplanofficial@gmail.com>
*
* Created at : 2023-07-dd 00:19:37
* Last modified : 2024-01-27 13:31:19

View File

@ -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 <skaplanofficial@gmail.com>
*
* Created at : 2023-07-dd 00:32:49
* Last modified : 2023-07-dd 00:32:49

View File

@ -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 <skaplanofficial@gmail.com>
*
* Created at : 2023-07-05 23:16:12
* Last modified : 2023-07-06 15:48:56

View File

@ -2,7 +2,6 @@
* @file operations/optimizeOperation.ts
*
* @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
* Last modified : 2023-07-06 14:51:57

View File

@ -2,7 +2,6 @@
* @file operations/padOperation.ts
*
* @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
* Last modified : 2023-07-06 14:51:59

View File

@ -2,7 +2,6 @@
* @file operations/resizeOperation.ts
*
* @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
* Last modified : 2023-07-06 14:52:02

View File

@ -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 <skaplanofficial@gmail.com>
*
* Created at : 2023-07-05 23:24:24
* Last modified : 2023-07-06 14:52:04

View File

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

View File

@ -2,7 +2,6 @@
* @file operations/scaleOperation.ts
*
* @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
* Last modified : 2023-07-06 15:48:36

View File

@ -2,7 +2,6 @@
* @file operations/padOperation.ts
*
* @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
* Last modified : 2024-01-28 05:10:25

View File

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

View File

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

View File

@ -2,7 +2,6 @@
* @file resize.ts
*
* @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
* Last modified : 2023-07-18 18:48:42

View File

@ -2,7 +2,6 @@
* @file rotate.ts
*
* @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
* Last modified : 2023-07-18 18:48:47

View File

@ -2,7 +2,6 @@
* @file scale.ts
*
* @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
* Last modified : 2023-07-18 18:48:52

View File

@ -2,7 +2,6 @@
* @file utilities/clipboard.ts
*
* @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
* Last modified : 2023-07-06 15:48:31

View File

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

View File

@ -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 <skaplanofficial@gmail.com>
*
* Created at : 2023-07-dd 00:44:28
* Last modified : 2023-07-dd 00:44:28

View File

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

View File

@ -2,7 +2,6 @@
* @file utilities/preferences.ts
*
* @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
* Last modified : 2023-07-06 15:41:56

View File

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

View File

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