Skip to content

Commit 74a6811

Browse files
ctf0ctf0
authored and
ctf0
committed
010
1 parent 7a81f30 commit 74a6811

19 files changed

+2114
-421
lines changed

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: ctf0

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
node_modules
44
yarn.lock
55
*.vsix
6+
out

.vscode/extensions.json

-7
This file was deleted.

.vscode/launch.json

+17-23
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,22 @@
1-
// A launch configuration that launches the extension inside a new window
1+
// A launch configuration that compiles the extension and then opens it inside a new window
22
// Use IntelliSense to learn about possible attributes.
33
// Hover to view descriptions of existing attributes.
44
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
55
{
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-
]
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+
"outFiles": [
17+
"${workspaceFolder}/out/**/*.js"
18+
],
19+
"preLaunchTask": "${defaultBuildTask}"
20+
},
21+
]
2822
}

.vscodeignore

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
.vscode/**
2-
.vscode-test/**
3-
test/**
1+
.DS_Store
2+
.github/**
43
.gitignore
5-
vsc-extension-quickstart.md
6-
**/jsconfig.json
7-
**/*.map
8-
**/.eslintrc.json
94
.history
5+
.vscode/**
6+
*.vsix
7+
**/.eslintrc.json
8+
**/*.map
9+
**/jsconfig.json
10+
src/**
11+
**/tsconfig.json
12+
*.txt
13+
yarn.lock

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,17 @@
2727
## 0.0.9
2828

2929
- fix package settings name
30+
31+
## 0.1.0
32+
33+
- remove comments reply box
34+
- disable comments for now as its giving error
35+
- better api (using `git diff`)
36+
- add new key **change** to `showUnsavedChanges.styles` to show edited/changed lines
37+
- now instead of having a comment per line, it will be a comment per group of consecutive lines, more performant & wont slow/kill the editor
38+
- correct display of changed lines
39+
- update LICENSE
40+
- update rdme
41+
- add new config `showUnsavedChanges.debounceTime`
42+
- add new config `showUnsavedChanges.showDiffOutput`
43+
- add new config `showUnsavedChanges.gitPath`

0 commit comments

Comments
 (0)