Skip to content

Commit f34f972

Browse files
committed
0.3.2 little things for VSCode 1.9.0
1 parent 4a24e91 commit f34f972

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

.vscodeignore

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
.vscode/**
2-
.json/**
3-
flowchart/**
4-
test/**
1+
/.vscode/**
2+
/.json/**
3+
/flowchart/**
4+
/test/**
55
cSpell.json
66
jsconfig.json
77
TODO.md
88
vscode.d.ts
99
database
10-
/npm-debug.log*
10+
/npm-debug.log*
11+
.eslintrc.json

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## CHANGELOG
22

3+
### 0.3.2
4+
5+
0. more precise in VSCode 1.9.0 (I am crashing because too many things are changed since VSCode 1.9.0)
6+
37
### 0.3.1
48

59
0. **fixed the local server severe bug.**

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ Or, just open browser and enter `http://${YOUR_SERVER_HOST_NAME}:${PORT}/report/
9292

9393
## Current Version
9494

95+
### 0.3.2
96+
97+
0. more precise in VSCode 1.9.0 (I am crashing because too many things are changed since VSCode 1.9.0)
98+
9599
### 0.3.1
96100

97101
0. **fixed the local server severe bug.**

extension.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ const CODING_SHORTEST_UNIT_MS = 5 * SECOND_IN_MS,
2828
const INVALID_CODING_DOCUMENT_SCHEMES = [
2929
//there are will be a `onDidChangeTextDocument` with document scheme `git-index`
3030
//be emitted when you switch document, so ignore it
31-
'git-index',
31+
'git-index',
32+
//since 1.9.0 vscode changed `git-index` to `git`, OK, they are refactorings around source control
33+
//see more: https://code.visualstudio.com/updates/v1_9#_contributable-scm-providers
34+
'git',
3235
//when you just look up output channel content, there will be a `onDidChangeTextDocument` be emitted
3336
'output',
3437
//This is a edit event emit from you debug console input box

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-coding-tracker",
33
"displayName": "Coding Tracker",
44
"description": "A coding activities tracker(time, file, type)",
5-
"version": "0.3.1",
5+
"version": "0.3.2",
66
"license": "GPL-3.0",
77
"publisher": "hangxingliu",
88
"author": "hangxingliu",

0 commit comments

Comments
 (0)