Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tinypng extension #14552

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions extensions/tinypng/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"root": true,
"env": {
"es2020": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"]
"extends": [
"@raycast"
]
}
9 changes: 8 additions & 1 deletion extensions/tinypng/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,12 @@
# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
.DS_Store
.vscode
7 changes: 7 additions & 0 deletions extensions/tinypng/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# TinyPNG Changelog

## [Minor improvements] - {PR_MERGE_DATE}

- Update dependencies
- Make the `method` in `Resizing Images` a Dropdown instead of a Text Field
- Fix the resize method for `scale`, where width and height are not both required
- In case a user sets the `Destination Folder Path` to the same folder, but doesn't enable `Overwrite Original Image File`, add `.compressed` or `.resized` to the file name to avoid overwriting the original file

## [New Features] - 2023-04-22

Enabled the ability to set the destination folder path.
Expand Down
Loading
Loading