Skip to content

Commit 3eccc50

Browse files
committed
Release 1.3.3 package & documentation changes
1 parent b23acf1 commit 3eccc50

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @mhutchie

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ assignees: mhutchie
1111
A clear and concise description of what the bug is.
1212

1313
**What does the bug relate to**
14-
- [ ] Graph Rendering
15-
- [ ] Git Command
16-
- [ ] Responsiveness
14+
List the area(s) this issue relates to, for example:
15+
- Graph Rendering
16+
- Running a Git Command
17+
- Responsiveness
18+
- ....
1719

1820
**To reproduce**
1921
Steps to reproduce the behaviour:

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.3.3 - 2019-02-22
4+
* #3 & #9: Fixes an issue preventing the graph loading for a few git repositories.
5+
* #10: Fixes an issue where lines extending past the rightmost node of the graph would be cropped.
6+
* Press escape to close any open Git Graph dialog.
7+
* FR#6: The command title in the Command Palette is changed to "Git Graph: View Git Graph (git log)".
8+
* Refined styling of the commit details view.
9+
310
## 1.3.2 - 2019-02-18
411
* Fixes an issue when viewing some large graphs of more than 500 commits.
512
* Significantly reduced package size.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "git-graph",
33
"displayName": "Git Graph",
4-
"version": "1.3.2",
4+
"version": "1.3.3",
55
"publisher": "mhutchie",
66
"author": {
77
"name": "Michael Hutchison",
@@ -12,7 +12,7 @@
1212
"git",
1313
"graph",
1414
"visualise",
15-
"interact",
15+
"diff",
1616
"action"
1717
],
1818
"categories": [

web/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@
377377
let node = this.nodes[i], parentNode = this.nodes[i].getNextParent();
378378
let lastPoint = node.isNotOnBranch() ? node.getNextPoint() : node.getPoint(), curPoint;
379379

380+
node.setNextX(lastPoint.x + 1);
380381
node.addToBranch(branch, lastPoint.x);
381382
for (i = startAt + 1; i < this.nodes.length; i++) {
382383
curPoint = parentNode === this.nodes[i] && !parentNode.isNotOnBranch() ? this.nodes[i].getPoint() : this.nodes[i].getNextPoint();

0 commit comments

Comments
 (0)