Skip to content

Commit 7e03d5d

Browse files
committed
📃 docs: update version and Change log
1 parent 00b7264 commit 7e03d5d

File tree

8 files changed

+27
-4
lines changed

8 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
# Change Log
22
All notable changes to the "markdown-image" extension will be documented in this file.
33

4+
## [1.1.40] - 2024-03-11
5+
6+
### Added
7+
- Added a new setting item `markdown-image.s3.cdn` to set the s3 cdn url.
8+
49
## [1.1.39] - 2024-03-06
10+
11+
### Added
512
- Add `Content-Type` to s3 upload method.
613

714
## [1.1.38] - 2024-02-24
15+
16+
### Added
817
- Supports Azure Blob Storage Passwordless authentication method.
918

1019
## [1.1.37] - 2024-02-17
20+
21+
### Added
1122
- Add support for Azure Storage.
1223

1324
## [1.1.36] - 2023-08-22

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ These values can be found in your S3 service provider dashboard
120120
- `markdown-image.s3.bucketName`: The name of the S3 bucket to upload images to. Access to the bucket should be public.
121121
- `markdown-image.s3.accessKeyId`: Your S3 API access key ID.
122122
- `markdown-image.s3.secretAccessKey`: Your S3 secret access key.
123+
- `markdown-image.s3.cdn`: Your S3 CDN Url. You can use variable `${bucket}` `${region}` `${pathname}` and `${filepath}`. For example: `https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`.
123124

124125
### SFTP Settings
125126

@@ -151,6 +152,9 @@ These values can be found in your S3 service provider dashboard
151152

152153
## Release Notes
153154

155+
### 1.1.40
156+
- Added a new setting item `markdown-image.s3.cdn` to set the s3 cdn url.
157+
154158
### 1.1.39
155159
- Add `Content-Type` to s3 upload method.
156160

README.zh-cn.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ sudo yum install xclip
126126
- `markdown-image.s3.bucketName`: 你的 S3 存储桶名称。存储桶访问权限应该是公开的。
127127
- `markdown-image.s3.accessKeyId`: 你的 S3 access key ID。
128128
- `markdown-image.s3.secretAccessKey`: 你的 S3 secret access key。
129+
- `markdown-image.s3.cdn`: 设置你的 S3 CDN URL。你可以使用变量 `${bucket}` `${region}` `${pathname}` and `${filepath}`。比如:`https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`
129130

130131
### SFTP 设置项目
131132

@@ -158,6 +159,9 @@ sudo yum install xclip
158159

159160
## 发布历史
160161

162+
### 1.1.40
163+
- 添加了新设置项目 `markdown-image.s3.cdn` 用于设置 s3 CDN 地址。
164+
161165
### 1.1.39
162166
- 为 s3 上传方法添加了 `Content-Type`
163167

README.zh-tw.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ sudo yum install xclip
120120
- `markdown-image.s3.bucketName`: 你的 S3 存儲桶名稱。存儲桶訪問權限應該是公開的。
121121
- `markdown-image.s3.accessKeyId`: 你的 S3 access key ID。
122122
- `markdown-image.s3.secretAccessKey`: 你的 S3 secret access key。
123+
- `markdown-image.s3.cdn`: 設定你的 S3 CDN URL。你可以使用變數 `${bucket}` `${region}` `${pathname}` and `${filepath}`。比如:`https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`
123124

124125
### SFTP 設置項目
125126

@@ -152,6 +153,9 @@ sudo yum install xclip
152153

153154
## 發布歷史
154155

156+
### 1.1.40
157+
- 新增了新設定項目 `markdown-image.s3.cdn` 用於設定 s3 CDN 位址。
158+
155159
### 1.1.39
156160
- 為 s3 上傳方法新增了 `Content-Type`
157161

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "markdown-image",
33
"displayName": "Markdown Image",
44
"description": "Easy to insert a image to markdown",
5-
"version": "1.1.39",
5+
"version": "1.1.40",
66
"publisher": "hancel",
77
"engines": {
88
"vscode": "^1.62.0"

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"markdown-image.s3.bucketName": "Your S3 bucket name.",
8181
"markdown-image.s3.accessKeyId": "Your S3 access key ID.",
8282
"markdown-image.s3.secretAccessKey": "Your S3 secret access key.",
83-
"markdown-image.s3.cdn": "Set Your S3 CDN Url. You can use variable `${bucket}` `${region}` `${pathname}` and `${filepath}`. For example: `https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`",
83+
"markdown-image.s3.cdn": "Your S3 CDN Url. You can use variable `${bucket}` `${region}` `${pathname}` and `${filepath}`. For example: `https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`.",
8484
"markdown-image.sftp.host": "The host of the remote server.",
8585
"markdown-image.sftp.port": "The ssh port of the remote server.",
8686
"markdown-image.sftp.username": "The username of the remote server.",

package.nls.zh-cn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"markdown-image.s3.bucketName": "你的 S3 存储桶名称。",
8080
"markdown-image.s3.accessKeyId": "你的 S3 access key ID。",
8181
"markdown-image.s3.secretAccessKey": "你的 S3 secret access key。",
82-
"markdown-image.s3.cdn": "设置你的 S3 CDN URL。你可以使用变量 `${bucket}` `${region}` `${pathname}` and `${filepath}`。比如:`https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`",
82+
"markdown-image.s3.cdn": "设置你的 S3 CDN URL。你可以使用变量 `${bucket}` `${region}` `${pathname}` and `${filepath}`。比如:`https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`",
8383
"markdown-image.sftp.host": "远程服务器地址。",
8484
"markdown-image.sftp.port": "SSH 服务端口。",
8585
"markdown-image.sftp.username": "远程用户名。",

package.nls.zh-tw.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"markdown-image.s3.bucketName": "你的 S3 存儲桶名稱。",
7979
"markdown-image.s3.accessKeyId": "你的 S3 access key ID.",
8080
"markdown-image.s3.secretAccessKey": "你的 S3 secret access key.",
81-
"markdown-image.s3.cdn": "設定你的 S3 CDN URL。你可以使用變數 `${bucket}` `${region}` `${pathname}` and `${filepath}`。比如:`https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`",
81+
"markdown-image.s3.cdn": "設定你的 S3 CDN URL。你可以使用變數 `${bucket}` `${region}` `${pathname}` and `${filepath}`。比如:`https://${bucket}.${region}.s3.amazonaws.com/${pathname}/${filepath}`",
8282
"markdown-image.sftp.host": "遠端伺服器地址。",
8383
"markdown-image.sftp.port": "SSH 服務端口。",
8484
"markdown-image.sftp.username": "遠端賬戶。",

0 commit comments

Comments
 (0)