Skip to content

Commit 1e44de8

Browse files
author
Divyanshu Agrawal
committed
closes #5
1 parent d48dae1 commit 1e44de8

File tree

10 files changed

+66
-4
lines changed

10 files changed

+66
-4
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
.vscode-test/
3+
*.vsix
4+
test/

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"dbaeumer.vscode-eslint"
6+
]
7+
}

.vscode/launch.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Run Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"runtimeExecutable": "${execPath}",
13+
"args": [
14+
"--extensionDevelopmentPath=${workspaceFolder}"
15+
]
16+
},
17+
{
18+
"name": "Extension Tests",
19+
"type": "extensionHost",
20+
"request": "launch",
21+
"runtimeExecutable": "${execPath}",
22+
"args": [
23+
"--extensionDevelopmentPath=${workspaceFolder}",
24+
"--extensionTestsPath=${workspaceFolder}/test/suite/index"
25+
]
26+
}
27+
]
28+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"eslint.enable": false
3+
}

.vscodeignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.vscode/**
2+
.vscode-test/**
3+
test/**
4+
.gitignore
5+
vsc-extension-quickstart.md
6+
**/jsconfig.json
7+
**/*.map
8+
**/.eslintrc.json
9+
10+
.vscode
11+
node_modules
12+
out/
13+
src/
14+
tsconfig.json
15+
webpack.config.js
16+
test/

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Competitive Programming Helper (v0.0.7)
1+
# Competitive Programming Helper (v0.0.8)
22

33
Download from here : https://marketplace.visualstudio.com/items?itemName=DivyanshuAgrawal.competitive-programming-helper or search in the VS Code Extensions within the application.
44

@@ -45,6 +45,8 @@ The GNU C++ Compiler ( GCC ) must be installed and should be accesible from the
4545
This extension was created by Divyanshu Agrawal (https://github.com/agrawal-d). Please report bugs to [email protected]. Thank you for using this extension.
4646

4747
## Release Notes
48+
* Version 0.0.8
49+
* Fixes cross platform checker issues.
4850
* Version 0.0.7
4951
* Fixes many UI and UX issues
5052
* Files are auto saved on execution.

dist/extension.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/extension.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extension.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,8 @@ async function executePrimaryTask() {
200200
if (caseNum == (cases.numCases - 1)) {
201201
evaluateResults(passed_cases, true);
202202
spawn("rm", [filepath + ".bin"]);
203+
spawn("del", [filepath + ".bin"]);
204+
203205

204206
} else {
205207
evaluateResults(passed_cases, false);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"c++",
1111
"testcases"
1212
],
13-
"version": "0.0.7",
13+
"version": "0.0.8",
1414
"icon": "icon.png",
1515
"engines": {
1616
"vscode": "^1.39.0"

0 commit comments

Comments
 (0)