piclist 0.5.0 → 0.5.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/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ ## :tada: 0.5.2 (2023-04-18)
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.1 (2023-04-15)
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
+
1
29
  # :tada: 0.3.0 (2023-03-09)
2
30
 
3
31
 
package/README.md CHANGED
@@ -9,7 +9,6 @@
9
9
 
10
10
  ![picgo-core](https://cdn.jsdelivr.net/gh/Molunerfinn/test/picgo/picgo-core-fix.jpg)
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命令下通过`picgo set buildin watermark`和`picgo set buildin compress`设置水印和压缩参数
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 >= 12 (v1.5.0-alpha.4 and small) & node.js >= 16 (since v1.5.0-alpha.5).
30
+ PicList should be installed with node.js >= 16
31
31
 
32
32
  ### before install
33
33
 
@@ -17,6 +17,7 @@ export declare class PicGo extends EventEmitter implements IPicGo {
17
17
  cmd: Commander;
18
18
  output: IImgInfo[];
19
19
  input: any[];
20
+ rawInput: any[];
20
21
  pluginHandler: PluginHandler;
21
22
  /**
22
23
  * @deprecated will be removed in v1.5.0+
@@ -60,7 +60,14 @@ export declare const ZH_CN: {
60
60
  PICBED_QINIU_MESSAGE_URL: string;
61
61
  PICBED_IMGUR: string;
62
62
  PICBED_IMGUR_CLIENTID: string;
63
+ PICBED_IMGUR_USERNAME: string;
64
+ PICBED_IMGUR_ACCESS_TOKEN: string;
65
+ PICBED_IMGUR_ALBUM: string;
63
66
  PICBED_IMGUR_PROXY: string;
67
+ PICBED_IMGUR_MESSAGE_CLIENTID: string;
68
+ PICBED_IMGUR_MESSAGE_USERNAME: string;
69
+ PICBED_IMGUR_MESSAGE_ACCESS_TOKEN: string;
70
+ PICBED_IMGUR_MESSAGE_ALBUM: string;
64
71
  PICBED_IMGUR_MESSAGE_PROXY: string;
65
72
  PICBED_UPYUN: string;
66
73
  PICBED_UPYUN_BUCKET: string;