Release 1.0.8

This commit is contained in:
Juha Ristolainen 2017-08-28 20:57:08 +02:00
parent 23466f311e
commit 2392b782b7
3 changed files with 119 additions and 111 deletions

View File

@ -1,47 +1,51 @@
# Change Log # Change Log
All notable changes to the "code-stats-vscode" extension will be documented in this file. All notable changes to the "code-stats-vscode" extension will be documented in this file.
## [Unreleased] ## [Unreleased]
### Added ### Added
### Changed ### Changed
## [1.0.8] - 2017-08-28
### Changed
## [1.0.7] - 2017-05-29
### Changed Merged a PR from nicd to refactor the counting logic.
Merged a PR from sharpred to count formatting a large JSON-file only as 1 XP.
## [1.0.7] - 2017-05-29
## [1.0.6] - 2017-03-24 ### Changed
### Changed
Changed the plugin to default to just langId if the langId is not found in the mapped language names. Merged a PR from sharpred to count formatting a large JSON-file only as 1 XP.
Added Elm and Elixir to mapped names.
## [1.0.6] - 2017-03-24
## [1.0.5] - 2017-03-18 ### Changed
### Changed Changed the plugin to default to just langId if the langId is not found in the mapped language names.
Changed language names to reflect the ones already used in Code::Stats. Added Elm and Elixir to mapped names.
## [1.0.4] - 2017-03-18 ## [1.0.5] - 2017-03-18
### Added ### Changed
Added a manual mapping to natural language language names. Changed language names to reflect the ones already used in Code::Stats.
## [1.0.3] - 2017-03-18 ## [1.0.4] - 2017-03-18
### Added ### Added
Added license for the logo from Nicd. Added a manual mapping to natural language language names.
### Changed ## [1.0.3] - 2017-03-18
Fixed an accumulation of xp bug ### Added
Added license for the logo from Nicd.
## [1.0.2] - 2017-03-17
### Added ### Changed
Added a logo for the extension. Fixed an accumulation of xp bug
## [1.0.1] - 2017-03-17 ## [1.0.2] - 2017-03-17
### Added ### Added
Added the missing github information to package.json Added a logo for the extension.
Added the .vsix installation package as well.
## [1.0.1] - 2017-03-17
## [1.0.0] - 2017-03-17 ### Added
### Added Added the missing github information to package.json
Initial release of code-stats-vscode Added the .vsix installation package as well.
## [1.0.0] - 2017-03-17
### Added
Initial release of code-stats-vscode

124
README.md
View File

@ -1,61 +1,65 @@
# Code::Stats extension to Visual Studio Code. # Code::Stats extension to Visual Studio Code.
This is a Visual Studio Code extension to send updates to [https://codestats.net](https://codestats.net) This is a Visual Studio Code extension to send updates to [https://codestats.net](https://codestats.net)
## Features ## Features
This extension tracks the amount of changes you make to your files and sends out pulses to [https://codestats.net/api-docs#pulse](https://codestats.net/api-docs#pulse) to track your XP. This extension tracks the amount of changes you make to your files and sends out pulses to [https://codestats.net/api-docs#pulse](https://codestats.net/api-docs#pulse) to track your XP.
## Extension Settings ## Extension Settings
You need to register your machine at [https://codestats.net/my/machines](https://codestats.net/my/machines) to get an API key which you need to set in the settings. You need to register your machine at [https://codestats.net/my/machines](https://codestats.net/my/machines) to get an API key which you need to set in the settings.
This extension contributes the following settings: This extension contributes the following settings:
* `codestats.apikey`: API key for your machine * `codestats.apikey`: API key for your machine
## Known Issues ## Known Issues
## Release Notes ## Release Notes
### 1.0.7 ### 1.0.8
Merged a PR from sharpred to count formatting a large JSON-object only as 1 XP. Merged a PR from nicd to refactor the counting logic.
### 1.0.6 ### 1.0.7
Changed to return just the langId if not found in the mapped languages names. Merged a PR from sharpred to count formatting a large JSON-object only as 1 XP.
Added Elm and Elixir to the mapped names.
### 1.0.6
### 1.0.5
Changed to return just the langId if not found in the mapped languages names.
Changed language names to reflect the ones already used in Code::Stats. Added Elm and Elixir to the mapped names.
### 1.0.4 ### 1.0.5
Added a manual mapping to natural language language names. Changed language names to reflect the ones already used in Code::Stats.
### 1.0.3 ### 1.0.4
Fixed an accumulation of XP bug. Added a manual mapping to natural language language names.
Added a license for the logo.
### 1.0.3
### 1.0.2
Fixed an accumulation of XP bug.
Added a logo for the extension. Added a license for the logo.
### 1.0.1 ### 1.0.2
Added the missing github information to package.json Added a logo for the extension.
Added the .vsix installation package as well.
### 1.0.1
### 1.0.0
Added the missing github information to package.json
Initial release of code-stats-vscode Added the .vsix installation package as well.
### 1.0.0
### For more information
Initial release of code-stats-vscode
* [Github repository](https://github.com/riussi/code-stats-vscode)
### For more information
* [Github repository](https://github.com/riussi/code-stats-vscode)
**Enjoy!** **Enjoy!**

View File

@ -2,7 +2,7 @@
"name": "code-stats-vscode", "name": "code-stats-vscode",
"displayName": "Code::Stats", "displayName": "Code::Stats",
"description": "Code::Stats package for Visual Studio Code", "description": "Code::Stats package for Visual Studio Code",
"version": "1.0.7", "version": "1.0.8",
"publisher": "juha-ristolainen", "publisher": "juha-ristolainen",
"icon": "logo.png", "icon": "logo.png",
"repository": { "repository": {
@ -48,13 +48,13 @@
"test": "node ./node_modules/vscode/bin/test" "test": "node ./node_modules/vscode/bin/test"
}, },
"devDependencies": { "devDependencies": {
"typescript": "^2.0.3", "typescript": "^2.1.5",
"vscode": "^1.0.0", "vscode": "^1.1.0",
"mocha": "^2.3.3", "mocha": "^2.3.3",
"@types/node": "^6.0.40", "@types/node": "^6.0.40",
"@types/mocha": "^2.2.32" "@types/mocha": "^2.2.32"
}, },
"dependencies": { "dependencies": {
"axios": "0.15.3" "axios": "0.16.2"
} }
} }