Skip to content

Commit f0e5db1

Browse files
committed
Release 1.4.0 package & documentation changes
1 parent e884e2b commit f0e5db1

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## 1.4.0 - 2019-02-28
4+
* #12 Revert, cherry-pick & merge git commands are now available from the commit and branch context menus.
5+
* #7 Added a setting to enable / disable automatic centering of the commit details view.
6+
* #11 Context menu closes on the next mouse interaction, instead of when the mouse leaves the context menu.
7+
* #15 Support for portable git installations.
8+
* #18 Fixed handling of detached HEAD's.
9+
310
## 1.3.3 - 2019-02-22
411
* #3 & #9: Fixes an issue preventing the graph loading for a few git repositories.
512
* #10: Fixes an issue where lines extending past the rightmost node of the graph would be cropped.

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ View a Git Graph of your repository, and easily perform Git actions from the gra
1414
* View commit details and file changes by clicking on a commit
1515
* View the Visual Studio Code Diff of a file change by clicking on it in the commit details view
1616
* Perform Git Actions (available by right clicking on a commit / branch / tag):
17-
* Create, Checkout, Rename & Delete Branches
18-
* Add & Delete Tags
17+
* Create, Checkout, Rename, Delete & Merge branches
18+
* Add & Delete tags
19+
* Reverse & Cherry Pick commits
1920
* Reset current branch to commit
2021
* Copy Commit Hash to Clipboard
2122
* Configurable settings (e.g. graph style, branch colours, and more...)
@@ -26,19 +27,29 @@ View a Git Graph of your repository, and easily perform Git actions from the gra
2627

2728
This extension contributes the following settings:
2829

30+
* `git-graph.autoCenterCommitDetailsView`: Automatically center the commit details view when it is opened.
31+
* `git-graph.dateFormat`: Specifies the date format to be used in the date column of the graph.
2932
* `git-graph.graphColours`: Specifies the colours used on the graph.
3033
* `git-graph.graphStyle`: Specifies the style of the graph.
31-
* `git-graph.dateFormat`: Specifies the date format to be used in the date column of the graph.
3234
* `git-graph.initialLoadCommits`: Specifies the number of commits to initially load.
3335
* `git-graph.loadMoreCommits`: Specifies the number of commits to load when the "Load More Commits" button is pressed (only shown when more commits are available).
3436
* `git-graph.showStatusBarItem`: Show a Status Bar item which opens Git Graph when clicked.
3537
* `git-graph.showUncommittedChanges`: Show uncommitted changes (set to false to decrease load time on large repositories).
3638

39+
This extension consumes the following settings:
40+
41+
* `git.path`: Specifies the path of a portable Git installation.
42+
3743
## Extension Commands
3844

3945
This extension contributes the following commands:
4046

4147
* `git-graph.view`: Git Graph: View Git Graph
4248

4349
## Release Notes
50+
4451
Detailed Release Notes are available [here](CHANGELOG.md).
52+
53+
## Visual Studio Marketplace
54+
55+
This extension is available on the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=mhutchie.git-graph) for Visual Studio Code.

media/main.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ body.unableToLoad h1, body.unableToLoad p{
5858
}
5959
#commitTable th, #commitTable td{
6060
white-space:nowrap;
61-
font-size:14px;
61+
font-size:13px;
6262
cursor:default;
6363
}
6464
#commitTable tr.commit:hover td, #commitTable tr.commit.contextMenuActive td, #commitTable tr.commit.dialogActive td, #commitTable tr.commit.commitDetailsOpen td{
@@ -359,8 +359,10 @@ svg.openFolderIcon, svg.closedFolderIcon, svg.fileIcon{
359359
border-radius:5px;
360360
text-align:center;
361361
max-width:360px;
362+
max-height:90%;
362363
z-index:10;
363364
box-shadow:0 0 30px 5px var(--vscode-widget-shadow);
365+
overflow-y:scroll;
364366
}
365367
#dialog label{
366368
margin-top:10px;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "git-graph",
33
"displayName": "Git Graph",
4-
"version": "1.3.3",
4+
"version": "1.4.0",
55
"publisher": "mhutchie",
66
"author": {
77
"name": "Michael Hutchison",
8-
"email": "michael@16right.com"
8+
"email": "mhutchie@16right.com"
99
},
1010
"description": "View a Git Graph of your repository, and perform Git actions from the graph.",
1111
"keywords": [

resources/demo.gif

-22.9 KB
Loading

0 commit comments

Comments
 (0)