Skip to content

Commit aa8fa39

Browse files
committed
0.6.0
1 parent baa9bff commit aa8fa39

File tree

8 files changed

+152
-184
lines changed

8 files changed

+152
-184
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# ignore *.vsix (extension archive file)
2+
*.vsix
3+
14
# ignore vscode.d.ts files
25
lib/vscode.d.ts/*.d.ts
36

.npmignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# ignore docs
1+
# ignore vsix
2+
*.vsix
3+
4+
# ignore docs
25
docs
36

47
# ignore .vscode config

.vscodeignore

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1-
# ".vscode" would not match xx/xx/.vscode
2-
3-
lib/vscode.d.ts
4-
lib/thirdPartyCodes/CHECK_UPDATE.js
5-
1+
# ".vscode" would not match xx/xx/.vscode
62
.vscode/**
73

4+
lib/vscode.d.ts/*.d.ts
5+
86
docs/**
97
test/**
8+
109
TODO.md
10+
1111
database
12+
1213
npm-debug.log*
1314
.eslintrc.json
1415

1516
DEBUG_SIGN_FILE
17+
18+
# any archives
19+
*.tgz
20+
*.tar
21+
*.vsix

CHANGELOG.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# CHANGELOG
22

3-
### 0.6.0
4-
5-
0. Upgrade server program (report page) to 0.6.0
6-
1. Optimize for some vscode internal documents. (*Default settings, markdown preview, interactive playground*)
7-
2. Add Español translations into extension.
8-
9-
**Coming soon ...**
3+
### 0.6.0 (2018/03/24)
4+
5+
1. Upgrade server program (report page) to 0.6.0
6+
- export/download report as CSV
7+
- merge report from different projects
8+
- fix some bug on report page
9+
- more compatible with old browsers and mobile browsers
10+
2. Optimize for some vscode internal documents. (*Default settings, markdown preview, interactive playground*)
11+
3. Add Español translations into extension.
1012

1113
### 0.5.0
1214

README.md

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,31 @@
44
You can know how much time you spent on each projects/files/computers/languages/branchs and total
55
by this extension.
66

7-
And all part of this extension(included server program, documents) are open-source and hosted on Github.
8-
9-
This extension supports the follwing languages:
7+
Supported languages:
108
English, Russian(русский), Spanish(Español),
119
Simplified Chinese(简体中文) and Traditional Chinese(繁體中文).
1210

11+
All part of this extension(included server program, documents) are open-source and hosted on Github.
12+
13+
> Links:
14+
> [Server program Github repo](https://github.com/hangxingliu/vscode-coding-tracker)
15+
> [VSCode extensions marketplace](https://marketplace.visualstudio.com/items?itemName=hangxingliu.vscode-coding-tracker)
16+
1317
## Screenshot
1418

1519
![screenshots2](https://raw.githubusercontent.com/hangxingliu/vscode-coding-tracker-server/master/screenshots/2.jpg)
1620

1721
## Current Version
1822

19-
### 0.6.0 (**Coming soon ...**)
20-
21-
**Coming soon ...**
23+
### 0.6.0 (2018/03/25)
2224

23-
### 0.5.0
24-
25-
0. Support multi-root workspace.
26-
1. Add VCS(Git) repository and branch information tracking
27-
2. Add document line counts tracking
28-
3. Upgrade uploading protocol version to 4.0
29-
4. Optimize codes
25+
1. Upgrade server program (report page) to 0.6.0
26+
- export/download report as CSV
27+
- merge report from different projects
28+
- fix some bug on report page
29+
- more compatible with old browsers and mobile browsers
30+
2. Optimize for some vscode internal documents. (*Default settings, markdown preview, interactive playground*)
31+
3. Add Español translations into extension.
3032

3133
more version information: [CHANGELOG.md](CHANGELOG.md)
3234

@@ -122,22 +124,22 @@ Or, just open browser and enter `http://${YOUR_SERVER_HOST_NAME}:${PORT}/report/
122124

123125
## Author
124126

125-
[LiuYue](https://github.com/hangxingliu)
127+
[LiuYue (hangxingliu)](https://github.com/hangxingliu)
128+
129+
## Contributors
130+
131+
- [Ted Piotrowski (@ted-piotrowski)][ted-piotrowski]
132+
- [Dolgishev Viktor (@vdolgishev)][vdolgishev]
126133

127134
## Third party codes and resource
128135

129136
- The icon of this extension is from [emojione](http://emojione.com/). This project help me a lot of (bkz I dont know how to use PS and dont have art sense).
130137
- `lib/thirdPartyCodes/gitPaths.js` is modified from <https://github.com/DonJayamanne/gitHistoryVSCode/blob/master/src/helpers/gitPaths.ts>
131138

132-
### Contributors
133-
134-
- [Ted Piotrowski (@ted-piotrowski)][ted-piotrowski]
135-
- [Dolgishev Viktor (@vdolgishev)][vdolgishev]
136-
137139
## License
138140

139-
- Extension(excluded icon and third party codes) and server scripts: [GPL-3.0](LICENSE)
140-
- Extension Icon[CC-BY 4.0](http://emojione.com/licensing/)
141+
- Extension(excluded icon and third party codes) and server scripts are licensed under [GPL-3.0](LICENSE)
142+
- Icon of extension is licensed under [CC-BY 4.0](http://emojione.com/licensing/)
141143
- Third party codes license information in the front of third party code files
142144

143145
[vdolgishev]: https://github.com/vdolgishev

TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TODO
22

3-
- [ ] Update dependency `vscode-coding-tracker-server` to `0.6.0`
43
- [ ] Optimize upload flow (remove complex vcs queue logic)
54
- [ ] Add unit tests and travis-ci
65
- [x] travis-ci for validating i18n files.
76
- Reference: <https://code.visualstudio.com/docs/extensions/testing-extensions>
7+
- [x] Update dependency `vscode-coding-tracker-server` to `0.6.0`

0 commit comments

Comments
 (0)