Skip to content

Commit ef0dd22

Browse files
authored
Prepare for 0.15.4 (#415)
1 parent a6d34bc commit ef0dd22

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ 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.15.4]
7+
### Added
8+
- Add a new setting `leetcode.filePath`. Now users can use this setting to dynamicly specify the relative folder name and file name. [#PR380](https://github.com/jdneo/vscode-leetcode/pull/380)
9+
10+
### Fixed
11+
- Missing language `Rust` in the supported language list. [#PR412](https://github.com/jdneo/vscode-leetcode/pull/412)
12+
- Cannot show output when the answer is wrong. [#414](https://github.com/jdneo/vscode-leetcode/issues/414)
13+
614
## [0.15.3]
715
### Added
816
- Support `Pick One` [#263](https://github.com/jdneo/vscode-leetcode/issues/263)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
| `leetcode.editor.shortcuts` | Specify the customized shorcuts in editors. Supported values are: `submit`, `test`, `solution` and `description`. | `["submit, test"]` |
126126
| `leetcode.enableSideMode` | Specify whether `preview`, `solution` and `submission` tab should be grouped into the second editor column when solving a problem. | `true` |
127127
| `leetcode.nodePath` | Specify the `Node.js` executable path. for example, C:\Program Files\nodejs\node.exe | `node` |
128+
| `leetcode.showCommentDescription` | Specify whether to include the problem description in the comments | `false` |
128129

129130
## Want Help?
130131

docs/README_zh-CN.md

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@
125125
| `leetcode.editor.shortcuts` | 指定在编辑器内所自定义的快捷方式。可用的快捷方式有: `submit`, `test`, `solution`, `description`| `["submit, test"]` |
126126
| `leetcode.enableSideMode` | 指定在解决一道题时,是否将`问题预览``高票答案``提交结果`窗口集中在编辑器的第二栏。 | `true` |
127127
| `leetcode.nodePath` | 指定 `Node.js` 可执行文件的路径。如:C:\Program Files\nodejs\node.exe | `node` |
128+
| `leetcode.showCommentDescription` | 指定是否要在注释中显示题干。 | `false` |
128129

129130
## 需要帮助?
130131
在遇到任何问题时,可以先查看一下[疑难解答](https://github.com/jdneo/vscode-leetcode/wiki/%E7%96%91%E9%9A%BE%E8%A7%A3%E7%AD%94)以及[常见问题](https://github.com/jdneo/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.15.3",
5+
"version": "0.15.4",
66
"author": "Sheng Chen",
77
"publisher": "shengchen",
88
"license": "MIT",

0 commit comments

Comments
 (0)