Skip to content

Commit 7d619b3

Browse files
committed
prepare for the 0.1.1 release
1 parent 9816d42 commit 7d619b3

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66
## [0.1.1]
77
### Fixed
88
- Fixed a bug in LeetCode Explorer [(#3)](https://github.com/jdneo/vscode-leetcode/issues/3)
9+
- Remove the show problem command from command palette [(#4)](https://github.com/jdneo/vscode-leetcode/issues/4)
910

1011
## [0.1.0]
1112
### Added

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.1.0",
5+
"version": "0.1.1",
66
"author": "Sheng Chen",
77
"publisher": "shengchen",
88
"icon": "resources/LeetCode.png",

src/commands/session.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async function parseSessionsToPicks(p: Promise<ISession[]>): Promise<Array<IQuic
7070
export async function createSession(channel: vscode.OutputChannel): Promise<void> {
7171
const session: string | undefined = await vscode.window.showInputBox({
7272
prompt: "Enter the new session name.",
73-
validateInput: (s: string) => s.trim() ? undefined : "Session name must not be empty",
73+
validateInput: (s: string) => s && s.trim() ? undefined : "Session name must not be empty",
7474
});
7575
if (!session) {
7676
return;

src/commands/show.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export async function showProblem(channel: vscode.OutputChannel, node?: LeetCode
1414
if (!node) {
1515
return;
1616
}
17-
await showProblemInternal(channel, node.id.split(".")[1]);
17+
await showProblemInternal(channel, node.id);
1818
}
1919

2020
export async function searchProblem(channel: vscode.OutputChannel): Promise<void> {

src/leetCodeManager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class LeetCodeManager extends EventEmitter implements ILeetCodeManager {
5555
childProc.on("error", reject);
5656
const name: string | undefined = await vscode.window.showInputBox({
5757
prompt: "Enter user name.",
58-
validateInput: (s: string) => s.trim() ? undefined : "User name must not be empty",
58+
validateInput: (s: string) => s && s.trim() ? undefined : "User name must not be empty",
5959
});
6060
if (!name) {
6161
childProc.kill();

0 commit comments

Comments
 (0)