change-image-suffix 2.1.17 → 2.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.1.19](https://github.com/GuoSirius/change-image-suffix/compare/v2.1.18...v2.1.19) (2026-05-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* use "%1" instead of %* for reliable argument quoting ([b159b4f](https://github.com/GuoSirius/change-image-suffix/commit/b159b4f43c7413f0c9dce0055fd726be26905f06))
|
|
11
|
+
|
|
12
|
+
### [2.1.18](https://github.com/GuoSirius/change-image-suffix/compare/v2.1.17...v2.1.18) (2026-05-25)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* remove emojis from menu labels, remove MultiSelectModel ([a991d75](https://github.com/GuoSirius/change-image-suffix/commit/a991d7534416901746456d879a52fb5a4bc4661b))
|
|
18
|
+
* use %* with MultiSelectModel=Player for single-window multi-select ([4b5b94b](https://github.com/GuoSirius/change-image-suffix/commit/4b5b94be3128f9a438bfff099ccb53d3ef0ef683))
|
|
19
|
+
|
|
5
20
|
### [2.1.17](https://github.com/GuoSirius/change-image-suffix/compare/v2.1.16...v2.1.17) (2026-05-25)
|
|
6
21
|
|
|
7
22
|
|
package/dist/index.js
CHANGED
|
@@ -61,11 +61,11 @@ function installContextMenu() {
|
|
|
61
61
|
const scriptPath = path.join(__dirname, 'index.js');
|
|
62
62
|
// ── 格式列表(webp 排第一,其他按常见程度排序)──
|
|
63
63
|
const formats = [
|
|
64
|
-
{ verb: 'webp', label: '
|
|
65
|
-
{ verb: 'jpg', label: '
|
|
66
|
-
{ verb: 'png', label: '
|
|
67
|
-
{ verb: 'avif', label: '
|
|
68
|
-
{ verb: 'tiff', label: '
|
|
64
|
+
{ verb: 'webp', label: 'WebP' },
|
|
65
|
+
{ verb: 'jpg', label: 'JPG' },
|
|
66
|
+
{ verb: 'png', label: 'PNG' },
|
|
67
|
+
{ verb: 'avif', label: 'AVIF' },
|
|
68
|
+
{ verb: 'tiff', label: 'TIFF' },
|
|
69
69
|
];
|
|
70
70
|
// ── 使用 ExtendedSubCommandsKey,直接调用 node.exe(无 bat 中转)──
|
|
71
71
|
// AllFilesystemObjects 覆盖文件和目录,支持混合多选
|