Skip to content

Commit adf255c

Browse files
authored
chore: Prepare for 0.18.0 (#714)
1 parent 802dc40 commit adf255c

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ All notable changes to the "leetcode" extension will be documented in this file.
33

44
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
55

6+
## [0.18.0]
7+
### Added
8+
- Add `star` command in shortcuts [PR#601](https://github.com/LeetCode-OpenSource/vscode-leetcode/pull/601)
9+
- Add an option to disable endpoint translation [#389](https://github.com/LeetCode-OpenSource/vscode-leetcode/issues/389)
10+
11+
### Changed
12+
- LeetCode actions are moved into sub-menu: `LeetCode` in the editor context menu. [PR#712](https://github.com/LeetCode-OpenSource/vscode-leetcode/pull/712)
13+
14+
### Fixed
15+
[Bugs fixed](https://github.com/LeetCode-OpenSource/vscode-leetcode/issues?q=is%3Aissue+milestone%3A0.18.0+is%3Aclosed+label%3Abug)
16+
617
## [0.17.0]
718
### Added
819
- Add TypeScript support [#560](https://github.com/LeetCode-OpenSource/vscode-leetcode/issues/560)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Thanks for [@yihong0618](https://github.com/yihong0618) provided a workaround wh
133133
| `leetcode.enableSideMode` | Specify whether `preview`, `solution` and `submission` tab should be grouped into the second editor column when solving a problem. | `true` |
134134
| `leetcode.nodePath` | Specify the `Node.js` executable path. for example, C:\Program Files\nodejs\node.exe | `node` |
135135
| `leetcode.showCommentDescription` | Specify whether to include the problem description in the comments | `false` |
136+
| `leetcode.useEndpointTranslation` | Use endpoint's translation (if available) | `true` |
136137

137138
## Want Help?
138139

docs/README_zh-CN.md

+1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@
134134
| `leetcode.enableSideMode` | 指定在解决一道题时,是否将`问题预览``高票答案``提交结果`窗口集中在编辑器的第二栏。 | `true` |
135135
| `leetcode.nodePath` | 指定 `Node.js` 可执行文件的路径。如:C:\Program Files\nodejs\node.exe | `node` |
136136
| `leetcode.showCommentDescription` | 指定是否要在注释中显示题干。 | `false` |
137+
| `leetcode.useEndpointTranslation` | 是否显示翻译版本内容。 | `true` |
137138

138139
## 需要帮助?
139140
在遇到任何问题时,可以先查看一下[疑难解答](https://github.com/LeetCode-OpenSource/vscode-leetcode/wiki/%E7%96%91%E9%9A%BE%E8%A7%A3%E7%AD%94)以及[常见问题](https://github.com/LeetCode-OpenSource/vscode-leetcode/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)寻求帮助。

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-leetcode",
33
"displayName": "LeetCode",
44
"description": "Solve LeetCode problems in VS Code",
5-
"version": "0.17.0",
5+
"version": "0.18.0",
66
"author": "Sheng Chen",
77
"publisher": "LeetCode",
88
"license": "MIT",

0 commit comments

Comments
 (0)