piclist 1.9.0 → 1.9.1
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/.prettierrc +1 -2
- package/CHANGELOG.md +19 -0
- package/README.md +9 -0
- package/dist/i18n/zh-CN.d.ts +15 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/plugins/uploader/advancedplist.d.ts +2 -0
- package/dist/plugins/uploader/s3/uploader.d.ts +2 -5
- package/dist/plugins/uploader/utils.d.ts +18 -0
- package/dist/types/index.d.ts +10 -0
- package/package.json +3 -3
package/.prettierrc
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## :tada: 1.9.1 (2024-07-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### :sparkles: Features
|
|
5
|
+
|
|
6
|
+
* **custom:** add advanced picbed ([3c4c806](https://github.com/Kuingsmile/PicList-Core/commit/3c4c806))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### :package: Chore
|
|
10
|
+
|
|
11
|
+
* **custom:** remove eol in prettierrc ([6332a9b](https://github.com/Kuingsmile/PicList-Core/commit/6332a9b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### :pencil: Documentation
|
|
15
|
+
|
|
16
|
+
* **custom:** update docs ([696a054](https://github.com/Kuingsmile/PicList-Core/commit/696a054))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
1
20
|
# :tada: 1.9.0 (2024-07-05)
|
|
2
21
|
|
|
3
22
|
|
package/README.md
CHANGED
|
@@ -104,6 +104,15 @@ Then run:
|
|
|
104
104
|
docker-compose up -d
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
+
#### Install plugins in docker
|
|
108
|
+
|
|
109
|
+
You can use `docker exec` to install plugins in docker.
|
|
110
|
+
|
|
111
|
+
```bash
|
|
112
|
+
docker exec -it piclist sh
|
|
113
|
+
picgo install picgo-plugin-xxx
|
|
114
|
+
```
|
|
115
|
+
|
|
107
116
|
### Server
|
|
108
117
|
|
|
109
118
|
You can use `picgo-server` to start a server, default port is `36677`.
|
package/dist/i18n/zh-CN.d.ts
CHANGED
|
@@ -10,6 +10,21 @@ export declare const ZH_CN: {
|
|
|
10
10
|
PICBED_SMMS_MESSAGE_TOKEN: string;
|
|
11
11
|
PICBED_SMMS_BACKUP_DOMAIN: string;
|
|
12
12
|
PICBED_SMMS_MESSAGE_BACKUP_DOMAIN: string;
|
|
13
|
+
PICBED_ADVANCEDPLIST: string;
|
|
14
|
+
PICBED_ADVANCEDPLIST_ENDPOINT: string;
|
|
15
|
+
PICBED_ADVANCEDPLIST_MESSAGE_ENDPOINT: string;
|
|
16
|
+
PICBED_ADVANCEDPLIST_METHOD: string;
|
|
17
|
+
PICBED_ADVANCEDPLIST_MESSAGE_METHOD: string;
|
|
18
|
+
PICBED_ADVANCEDPLIST_FORM_DATA_KEY: string;
|
|
19
|
+
PICBED_ADVANCEDPLIST_MESSAGE_FORM_DATA_KEY: string;
|
|
20
|
+
PICBED_ADVANCEDPLIST_HEADERS: string;
|
|
21
|
+
PICBED_ADVANCEDPLIST_MESSAGE_HEADERS: string;
|
|
22
|
+
PICBED_ADVANCEDPLIST_BODY: string;
|
|
23
|
+
PICBED_ADVANCEDPLIST_MESSAGE_BODY: string;
|
|
24
|
+
PICBED_ADVANCEDPLIST_CUSTOM_PREFIX: string;
|
|
25
|
+
PICBED_ADVANCEDPLIST_MESSAGE_CUSTOM_PREFIX: string;
|
|
26
|
+
PICBED_ADVANCEDPLIST_RES_DATA_PATH: string;
|
|
27
|
+
PICBED_ADVANCEDPLIST_MESSAGE_RES_DATA_PATH: string;
|
|
13
28
|
PICBED_LOCAL: string;
|
|
14
29
|
PICBED_LOCAL_PATH: string;
|
|
15
30
|
PICBED_LOCAL_MESSAGE_PATH: string;
|