You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,15 @@
1
1
# Change Log
2
2
3
+
## 1.31.5 - 2025-05-17
4
+
*#48 Fix file view. Bullets were added when toggling file tree/file list view. Thanks [@LariWa](https://github.com/LariWa).
5
+
*#30 Add setting for selection of single branch and/or author (thanks [@rgeorgiev583](https://github.com/rgeorgiev583)) and
6
+
#52 Implement multi selection using Ctrl (thanks [@LariWa](https://github.com/LariWa)).
7
+
This can be activated with the following settings:
8
+
*`git-graph.repository.singleBranchSelect`
9
+
*`git-graph.repository.singleAuthorSelect`
10
+
11
+
*#56 Display "Select in Branches Dropdown" in the context menu also when "Show All" in the branches filter is selected. Thanks [@LariWa](https://github.com/LariWa).
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
Fork of mhutchie's Git Graph with further improvements.
4
4
Main improvements:
5
5
6
+
* Selection of single branch and/or author. Can be activated with `git-graph.repository.singleBranchSelect` and `git-graph.repository.singleAuthorSelect`
6
7
* Added button to collapse commit summary (hansu#3)
7
8
* Added checkbox 'Allow unrelated histories' when merge action
8
9
* New setting `git-graph.toolbarButtonVisibility` to configure the visibility of some items of the toolbar. For example: `{"Remotes": true, "Simplify": true}
Copy file name to clipboardExpand all lines: package.json
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "git-graph-2",
3
3
"displayName": "Git Graph 2",
4
-
"version": "1.31.4",
4
+
"version": "1.31.5",
5
5
"publisher": "hansu",
6
6
"author": {
7
7
"name": "Michael Hutchison",
@@ -1090,15 +1090,15 @@
1090
1090
"default": false,
1091
1091
"markdownDescription": "Only follow the first parent of commits when discovering the commits to load in the Git Graph View. See [--first-parent](https://git-scm.com/docs/git-log#Documentation/git-log.txt---first-parent) to find out more about this setting. This can be overridden per repository in the Git Graph View's Repository Settings Widget."
1092
1092
},
1093
-
"git-graph.repository.selectMultipleAuthors": {
1093
+
"git-graph.repository.singleAuthorSelect": {
1094
1094
"type": "boolean",
1095
-
"default": true,
1096
-
"description": "Enables the selection of multiple authors from the Authors dropdown. When set to false, you can only select multiple authors by 'Ctrl' (or 'Cmd' on macOS) + click."
1095
+
"default": false,
1096
+
"description": "Enables the selection of only a single author from the Authors dropdown. Multiple authors can be selected by 'Ctrl' (or 'Cmd' on macOS) + click."
1097
1097
},
1098
-
"git-graph.repository.selectMultipleBranches": {
1098
+
"git-graph.repository.singleBranchSelect": {
1099
1099
"type": "boolean",
1100
-
"default": true,
1101
-
"description": "Enables the selection of multiple branches from the Branches dropdown. When set to false, you can only select multiple branches by 'Ctrl' (or 'Cmd' on macOS) + click."
1100
+
"default": false,
1101
+
"description": "Enables the selection of only a single branch from the Branches dropdown. Multiple branches can be selected by 'Ctrl' (or 'Cmd' on macOS) + click."
0 commit comments