easyscreen-shot 1.0.1 → 1.0.2
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/README.md +4 -4
- package/bin/easyshot.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
# EasyScreenShot (EasyShot)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
## 核心优势
|
|
4
|
+
## ✅ 核心优势
|
|
5
5
|
|
|
6
6
|
- 支持输入截图尺寸
|
|
7
7
|
- 支持连续截图
|
|
8
8
|
- 支持边调整后方内容边截图
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## 📦 安装方法
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
npm install -g
|
|
13
|
+
npm install -g easyscreen-shot
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
## 使用方法
|
|
16
|
+
## 📝 使用方法
|
|
17
17
|
|
|
18
18
|
### 基础截图
|
|
19
19
|
```bash
|
package/bin/easyshot.js
CHANGED
|
@@ -11,7 +11,7 @@ const { loadConfig, saveConfig } = require('./config');
|
|
|
11
11
|
program
|
|
12
12
|
.name('easyshot')
|
|
13
13
|
.description('EasyScreenShot CLI Tool')
|
|
14
|
-
.version('1.0.
|
|
14
|
+
.version('1.0.2', '-v, --version', 'output the version number')
|
|
15
15
|
.option('-w, --watch', 'Watch mode: Consistent capture (Do not exit after capture)', false)
|
|
16
16
|
.option('-o, --output <dir>', 'Set default output directory for screenshots');
|
|
17
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easyscreen-shot",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Screenshot tool for customize size and consistent shot",
|
|
5
5
|
"main": "main.js",
|
|
6
6
|
"bin": {
|
|
@@ -36,4 +36,4 @@
|
|
|
36
36
|
"commander": "^14.0.2",
|
|
37
37
|
"electron": "^39.2.7"
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|