Skip to content

Commit 2d93af3

Browse files
committed
Prepare publishing
1 parent 2089555 commit 2d93af3

File tree

4 files changed

+39
-14
lines changed

4 files changed

+39
-14
lines changed

CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
# Change Log
22
All notable changes to the "vscode-gitextensions" extension will be documented in this file.
33

4-
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

6-
## [Unreleased]
7-
- Initial release
6+
## Release Notes
7+
## [0.3.0]
8+
9+
### Added
10+
- Add settings to hide status bar icons
11+
## [0.2.0]
12+
13+
### Added
14+
- Add icons to launch commands from the status bar
15+
16+
## [0.1.0]
17+
18+
### Added
19+
- Add commands to launch GitExtensions in the command palette

README.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Commands available via the Command Palette:
2525
* GitExtensions: Create a tag
2626
* GitExtensions: Manage remotes
2727

28-
Commands available via the icons in the Status Bar:
28+
Commands available via the icons in the Status Bar (see VSCode settings to hide them):
2929

3030
* GitExtensions: Browse in GitExtensions
3131
* GitExtensions: See File History
@@ -44,13 +44,4 @@ and then select `Extensions: Install from VSIX...`
4444

4545
None at the moment (it's a work in progress)
4646

47-
## Release Notes
48-
49-
### 0.2.0
50-
51-
* Commands in the status bar
52-
53-
### 0.1.0
54-
55-
* Initial release of GitExtensions for Visual Studio Code with command in the command palette
5647

images/gitextensions-icon.png

15.4 KB
Loading

package.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,37 @@
22
"name": "vscode-gitextensions",
33
"displayName": "GitExtensions",
44
"description": "Open GitExtensions GUI from Visual Studio Code",
5-
"version": "0.2.0",
5+
"version": "0.3.0",
6+
"author": {
7+
"name": "Philippe Miossec",
8+
"email": "pmiossec@gmail.com"
9+
},
610
"publisher": "pmiossec",
711
"engines": {
812
"vscode": "^1.18.0"
913
},
1014
"categories": ["Other"],
15+
"keywords": [
16+
"gitextensions",
17+
"git",
18+
"multi-root ready"
19+
],
1120
"activationEvents": [
1221
"*"
1322
],
23+
"icon": "images/gitextensions-icon.png",
24+
"galleryBanner": {
25+
"color": "#8647ae",
26+
"theme": "dark"
27+
},
28+
"homepage": "https://github.com/pmiossec/vscode-gitextensions/blob/master/README.md",
29+
"bugs": {
30+
"url": "https://github.com/pmiossec/vscode-gitextensions/issues"
31+
},
32+
"repository": {
33+
"type": "git",
34+
"url": "https://github.com/pmiossec/vscode-gitextensions.git"
35+
},
1436
"main": "./out/extension",
1537
"contributes": {
1638
"configuration": [

0 commit comments

Comments
 (0)