piclist 0.5.1 → 0.5.3
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 +38 -0
- package/README.md +3 -3
- package/dist/core/PicGo.d.ts +1 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/types/index.d.ts +5 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,41 @@
|
|
|
1
|
+
## :tada: 0.5.3 (2023-04-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### :sparkles: Features
|
|
5
|
+
|
|
6
|
+
* add auth user upload for imgur ([ebfe657](https://github.com/Kuingsmile/PicList-Core/commit/ebfe657))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :bug: Bug Fixes
|
|
10
|
+
|
|
11
|
+
* compatibility with auto-delete ([f9248d5](https://github.com/Kuingsmile/PicList-Core/commit/f9248d5))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### :pencil: Documentation
|
|
15
|
+
|
|
16
|
+
* update docs ([2ffac40](https://github.com/Kuingsmile/PicList-Core/commit/2ffac40))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## :tada: 0.5.2 (2023-04-18)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### :sparkles: Features
|
|
24
|
+
|
|
25
|
+
* add auth user upload for imgur ([ebfe657](https://github.com/Kuingsmile/PicList-Core/commit/ebfe657))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### :bug: Bug Fixes
|
|
29
|
+
|
|
30
|
+
* compatibility with auto-delete ([f9248d5](https://github.com/Kuingsmile/PicList-Core/commit/f9248d5))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### :pencil: Documentation
|
|
34
|
+
|
|
35
|
+
* update docs ([2ffac40](https://github.com/Kuingsmile/PicList-Core/commit/2ffac40))
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
1
39
|
## :tada: 0.5.1 (2023-04-15)
|
|
2
40
|
|
|
3
41
|
|
package/README.md
CHANGED
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
|
|
10
10
|

|
|
11
11
|
|
|
12
|
-
|
|
13
12
|
A tool for picture uploading. Both CLI & api supports. It also supports plugin system, please check [Awesome-PicGo](https://github.com/PicGo/Awesome-PicGo) to find powerful plugins.
|
|
14
13
|
|
|
15
14
|
Based on Picgo-Core and add some features.
|
|
@@ -19,15 +18,16 @@ Based on Picgo-Core and add some features.
|
|
|
19
18
|
## 修改列表
|
|
20
19
|
|
|
21
20
|
* 增加了水印添加、图片压缩和图片格式转换功能
|
|
22
|
-
- CLI
|
|
21
|
+
- CLI命令下通过 `picgo set buildin watermark`和 `picgo set buildin compress`设置水印和压缩参数
|
|
23
22
|
- 图片处理位于beforeTransform之前,不与任何插件冲突
|
|
24
23
|
* smms, imgur和github图床增加hash返回参数,配合piclist的删除功能
|
|
25
24
|
* 增加了webdav内置支持
|
|
25
|
+
* imgur图床添加了对账户上传的支持
|
|
26
26
|
* axios等依赖升级到最新版本
|
|
27
27
|
|
|
28
28
|
## Installation
|
|
29
29
|
|
|
30
|
-
PicList should be installed with node.js >=
|
|
30
|
+
PicList should be installed with node.js >= 16
|
|
31
31
|
|
|
32
32
|
### before install
|
|
33
33
|
|
package/dist/core/PicGo.d.ts
CHANGED