Skip to content

Commit 8b49242

Browse files
committed
Update readme and changelog
1 parent 9633f7e commit 8b49242

File tree

5 files changed

+28
-12
lines changed

5 files changed

+28
-12
lines changed

CHANGELOG.md

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

3+
## 1.31.0 - 2023-05-16
4+
* #14 Added button to jump to HEAD. Thanks [@QrackEE](https://github.com/QrackEE).
5+
* #6 Add collapse/expand buttons to commit diff view.
6+
* #4 Adjust column width also when the table header is not displayed.
7+
* #1 Added author filter.
8+
* [mhutchie#132](https://github.com/mhutchie/vscode-git-graph/issues/132) Added sticky header option. Can be controlled via the setting `git-graph.stickyHeader`.
9+
* [mhutchie#557](https://github.com/mhutchie/vscode-git-graph/issues/557) Improved context menu click event handling.
10+
* [mhutchie#547](https://github.com/mhutchie/vscode-git-graph/issues/547) Improved Git backwards compatibility when force deleting branches.
11+
* [mhutchie#517](https://github.com/mhutchie/vscode-git-graph/issues/517) The visibility of actions in the Commit Details View's File Context Menu can now be controlled via the extension setting `git-graph.contextMenuActionsVisibility`.
12+
* [mhutchie#516](https://github.com/mhutchie/vscode-git-graph/issues/516) New "Reset File to this Revision..." action on the File Context Menu in the Commit Details View.
13+
* [mhutchie#507](https://github.com/mhutchie/vscode-git-graph/issues/507) Display a warning before pushing a tag when it's on a commit that isn't on any known branch on the remote(s) the tag is being pushed to.
14+
* [mhutchie#499](https://github.com/mhutchie/vscode-git-graph/issues/499) If a branch's name contains an issue number, the issue can be viewed via the branch's context menu.
15+
* [mhutchie#498](https://github.com/mhutchie/vscode-git-graph/issues/498) Verify and display the signature status of signed tags on the "View Details" Dialog.
16+
* [mhutchie#494](https://github.com/mhutchie/vscode-git-graph/issues/494) Logging Enhancements: transform empty args, and logging command invocations.
17+
318
## 1.30.0 - 2021-04-05
419
* #395 Added a "Force Fetch" option onto the "Fetch into Local Branch" Dialog, allowing any local branch (that's not checked out) to be reset to the remote branch. This dialog is accessed via the Remote Branch Context Menu.
520
* #457 New "View Diff with Working File" action on the File Context Menu in the Commit Details View.

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# Git Graph extension for Visual Studio Code
22

3-
Extended version of mhutchies Git Graph.
4-
Following features were added:
3+
Fork of mhutchies Git Graph with further improvements.
4+
Main improvements:
55

6-
* Added sticky header option (mhutchie#394)
7-
* Added author filter (hansu#1)
8-
* Resize column width without header (hansu#4)
6+
* Added button to jump to HEAD (hansu#14)
97
* Added collapse/expand buttons to commit diff view (hansu#6)
8+
* Resize column width without header (hansu#4)
9+
* Added author filter (hansu#1)
10+
* Added sticky header option (mhutchie#132)
1011

11-
![Additions](https://github.com/hansu/vscode-git-graph/raw/hansu-mod/resources/demo.gif)
12+
![Additions](https://github.com/hansu/vscode-git-graph/raw/master/resources/demo.gif)
1213

1314
## Features
1415

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"name": "Michael Hutchison",
88
"email": "[email protected]"
99
},
10-
"description": "View a Git Graph of your repository, and perform Git actions from the graph.",
10+
"description": "Fork of mhutchie's Git Graph with further improvements.",
1111
"keywords": [
1212
"git",
1313
"graph",
@@ -542,11 +542,6 @@
542542
},
543543
"description": "An object specifying the default visibility of the Date, Author & Commit columns. Example: {\"Date\": true, \"Author\": true, \"Commit\": true}"
544544
},
545-
"git-graph.stickyHeader": {
546-
"type": "boolean",
547-
"default": true,
548-
"description": "Keeps the header visible when the view is scrolled"
549-
},
550545
"git-graph.dialog.addTag.pushToRemote": {
551546
"type": "boolean",
552547
"default": false,
@@ -1160,6 +1155,11 @@
11601155
"default": "Inline",
11611156
"description": "Specifies where the \"View Git Graph\" action appears on the title of SCM Providers."
11621157
},
1158+
"git-graph.stickyHeader": {
1159+
"type": "boolean",
1160+
"default": true,
1161+
"description": "Keeps the header visible when the view is scrolled"
1162+
},
11631163
"git-graph.tabIconColourTheme": {
11641164
"type": "string",
11651165
"enum": [

resources/demo.gif

-48.4 KB
Loading

resources/icon.png

-1.44 KB
Loading

0 commit comments

Comments
 (0)