piclist 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 +12 -17
- package/dist/i18n/zh-CN.d.ts +1 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/plugins/uploader/telegraph.d.ts +2 -0
- package/dist/types/index.d.ts +4 -0
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -2,28 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
5
|
-
|
|
6
|
-

|
|
7
|
-
[](https://github.com/PicGo/bump-version)
|
|
8
|
-

|
|
5
|
+

|
|
9
6
|
|
|
10
7
|

|
|
11
8
|
|
|
12
9
|
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.
|
|
13
10
|
|
|
14
|
-
Based on Picgo-Core and add
|
|
11
|
+
Based on Picgo-Core and add more features.
|
|
15
12
|
|
|
16
13
|
**Typora support natively**.
|
|
17
14
|
|
|
18
|
-
##
|
|
15
|
+
## New Features
|
|
19
16
|
|
|
20
|
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
17
|
+
- Add watermark, compress and convert image format features
|
|
18
|
+
- Set watermark and compress parameters through `picgo set buildin watermark` and `picgo set buildin compress` under CLI command
|
|
19
|
+
- Image processing is beforeTransform, which does not conflict with any plugin
|
|
20
|
+
- Add support for advanced rename, you can set the rename rule through `picgo set buildin rename` under the CLI command
|
|
21
|
+
- Add new built-in picbed: WebDAV, SFTP, Local path
|
|
22
|
+
- Adds support for imgur account uploads
|
|
23
|
+
- Fix several bugs of PicGo-Core
|
|
27
24
|
|
|
28
25
|
## Installation
|
|
29
26
|
|
|
@@ -63,7 +60,7 @@ yarn add piclist -D
|
|
|
63
60
|
|
|
64
61
|
### Use in CLI
|
|
65
62
|
|
|
66
|
-
>
|
|
63
|
+
> PicList-Core uses `SM.MS` as the default upload pic-bed.
|
|
67
64
|
|
|
68
65
|
Show help:
|
|
69
66
|
|
|
@@ -105,8 +102,6 @@ picgo upload /xxx/xx/xx.jpg
|
|
|
105
102
|
picgo upload
|
|
106
103
|
```
|
|
107
104
|
|
|
108
|
-
Thanks to [vs-picgo](https://github.com/Spades-S/vs-picgo) && [Spades-S](https://github.com/Spades-S) for providing the method to upload picture from clipboard.
|
|
109
|
-
|
|
110
105
|
### Use in node project
|
|
111
106
|
|
|
112
107
|
#### Common JS
|
|
@@ -135,4 +130,4 @@ picgo.upload()
|
|
|
135
130
|
|
|
136
131
|
## Documentation
|
|
137
132
|
|
|
138
|
-
For more details, you can checkout [documentation](https://picgo.github.io/PicGo-Core-Doc/).
|
|
133
|
+
For more details, you can checkout [documentation of PicGo-Core](https://picgo.github.io/PicGo-Core-Doc/).
|
package/dist/i18n/zh-CN.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export declare const ZH_CN: {
|
|
|
71
71
|
PICBED_QINIU_MESSAGE_AREA: string;
|
|
72
72
|
PICBED_QINIU_MESSAGE_OPTIONS: string;
|
|
73
73
|
PICBED_QINIU_MESSAGE_URL: string;
|
|
74
|
+
PICBED_TELEGRAPH: string;
|
|
74
75
|
PICBED_IMGUR: string;
|
|
75
76
|
PICBED_IMGUR_CLIENTID: string;
|
|
76
77
|
PICBED_IMGUR_USERNAME: string;
|