change-image-suffix 2.1.18 → 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 +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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
|
+
|
|
5
12
|
### [2.1.18](https://github.com/GuoSirius/change-image-suffix/compare/v2.1.17...v2.1.18) (2026-05-25)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.js
CHANGED
|
@@ -71,7 +71,7 @@ function installContextMenu() {
|
|
|
71
71
|
// AllFilesystemObjects 覆盖文件和目录,支持混合多选
|
|
72
72
|
const menuBases = [
|
|
73
73
|
{ base: 'HKCU\\Software\\Classes\\Directory\\Background\\shell\\cis', subMenu: 'Directory\\ContextMenus\\cis', arg: '-p "%V"' },
|
|
74
|
-
{ base: 'HKCU\\Software\\Classes\\AllFilesystemObjects\\shell\\cis', subMenu: 'Directory\\ContextMenus\\cis_afo', arg: '
|
|
74
|
+
{ base: 'HKCU\\Software\\Classes\\AllFilesystemObjects\\shell\\cis', subMenu: 'Directory\\ContextMenus\\cis_afo', arg: '"%1"', multiSelect: true },
|
|
75
75
|
];
|
|
76
76
|
// 1. 用 .reg 文件写子菜单(避免 cmd.exe 引号嵌套解析出错)
|
|
77
77
|
const regLines = ['Windows Registry Editor Version 5.00', ''];
|