Skip to content

Commit d5f1661

Browse files
committed
add logo
1 parent 4fd3c54 commit d5f1661

5 files changed

+35
-16
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
out
2+
23
node_modules
4+
35
.vscode-test/
6+
47
.vsix
8+
.images

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,21 @@ All notable changes to the "vscode-ext-timer" extension will be documented in th
44
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
55

66
## [Unreleased]
7-
- Initial release
7+
- Initial release
8+
9+
## Release Notes
10+
11+
Users appreciate release notes as you update your extension.
12+
13+
### 0.5.0
14+
15+
Initial release
16+
17+
### 0.5.1
18+
19+
Fix: wrong directory path
20+
21+
### 0.5.2
22+
23+
Add logo
24+

README.md

-10
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,5 @@ If you want to know what time was spent for projects.
1313

1414
![](https://github.com/csakaszamok/csak-ext-timer/blob/master/screen1.PNG?raw=true)
1515

16-
## Release Notes
1716

18-
Users appreciate release notes as you update your extension.
19-
20-
### 0.5.0
21-
22-
Initial release
23-
24-
### 0.5.1
25-
26-
Fix: wrong directory path
2717

csak-ext-timer-logo.png

9.27 KB
Loading

package.json

+13-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "csak-ext-timer",
33
"displayName": "csak-ext-timer",
44
"description": "If you want to know what time was spent for projects",
5-
"version": "0.5.1",
5+
"version": "0.5.2",
66
"publisher": "csakaszamok",
77
"engines": {
88
"vscode": "^1.18.0"
@@ -11,9 +11,17 @@
1111
"Other"
1212
],
1313
"activationEvents": [
14-
"*"
15-
],
16-
"main": "./out/extension",
14+
"*"
15+
],
16+
"icon": "csak-ext-timer-logo.png",
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/csakaszamok/csak-ext-timer"
20+
},
21+
"bugs": {
22+
"url": "https://github.com/csakaszamok/csak-ext-timer/issues"
23+
},
24+
"main": "./out/extension",
1725
"scripts": {
1826
"vscode:prepublish": "npm run compile",
1927
"compile": "tsc -p ./",
@@ -27,4 +35,4 @@
2735
"@types/node": "^7.0.43",
2836
"@types/mocha": "^2.2.42"
2937
}
30-
}
38+
}

0 commit comments

Comments
 (0)