Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hangxingliu committed Mar 25, 2018
1 parent baa9bff commit aa8fa39
Show file tree
Hide file tree
Showing 8 changed files with 152 additions and 184 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# ignore *.vsix (extension archive file)
*.vsix

# ignore vscode.d.ts files
lib/vscode.d.ts/*.d.ts

Expand Down
5 changes: 4 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# ignore docs
# ignore vsix
*.vsix

# ignore docs
docs

# ignore .vscode config
Expand Down
16 changes: 11 additions & 5 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
# ".vscode" would not match xx/xx/.vscode

lib/vscode.d.ts
lib/thirdPartyCodes/CHECK_UPDATE.js

# ".vscode" would not match xx/xx/.vscode
.vscode/**

lib/vscode.d.ts/*.d.ts

docs/**
test/**

TODO.md

database

npm-debug.log*
.eslintrc.json

DEBUG_SIGN_FILE

# any archives
*.tgz
*.tar
*.vsix
16 changes: 9 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# CHANGELOG

### 0.6.0

0. Upgrade server program (report page) to 0.6.0
1. Optimize for some vscode internal documents. (*Default settings, markdown preview, interactive playground*)
2. Add Español translations into extension.

**Coming soon ...**
### 0.6.0 (2018/03/24)

1. Upgrade server program (report page) to 0.6.0
- export/download report as CSV
- merge report from different projects
- fix some bug on report page
- more compatible with old browsers and mobile browsers
2. Optimize for some vscode internal documents. (*Default settings, markdown preview, interactive playground*)
3. Add Español translations into extension.

### 0.5.0

Expand Down
44 changes: 23 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,31 @@
You can know how much time you spent on each projects/files/computers/languages/branchs and total
by this extension.

And all part of this extension(included server program, documents) are open-source and hosted on Github.

This extension supports the follwing languages:
Supported languages:
English, Russian(русский), Spanish(Español),
Simplified Chinese(简体中文) and Traditional Chinese(繁體中文).

All part of this extension(included server program, documents) are open-source and hosted on Github.

> Links:
> [Server program Github repo](https://github.com/hangxingliu/vscode-coding-tracker)
> [VSCode extensions marketplace](https://marketplace.visualstudio.com/items?itemName=hangxingliu.vscode-coding-tracker)
## Screenshot

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

## Current Version

### 0.6.0 (**Coming soon ...**)

**Coming soon ...**
### 0.6.0 (2018/03/25)

### 0.5.0

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

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

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

## Author

[LiuYue](https://github.com/hangxingliu)
[LiuYue (hangxingliu)](https://github.com/hangxingliu)

## Contributors

- [Ted Piotrowski (@ted-piotrowski)][ted-piotrowski]
- [Dolgishev Viktor (@vdolgishev)][vdolgishev]

## Third party codes and resource

- 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).
- `lib/thirdPartyCodes/gitPaths.js` is modified from <https://github.com/DonJayamanne/gitHistoryVSCode/blob/master/src/helpers/gitPaths.ts>

### Contributors

- [Ted Piotrowski (@ted-piotrowski)][ted-piotrowski]
- [Dolgishev Viktor (@vdolgishev)][vdolgishev]

## License

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

[vdolgishev]: https://github.com/vdolgishev
Expand Down
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TODO

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

0 comments on commit aa8fa39

Please sign in to comment.