File tree Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 1+ * @ mhutchie
Original file line number Diff line number Diff line change @@ -11,9 +11,11 @@ assignees: mhutchie
1111A 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**
1921Steps to reproduce the behaviour:
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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" ,
1212 " git" ,
1313 " graph" ,
1414 " visualise" ,
15- " interact " ,
15+ " diff " ,
1616 " action"
1717 ],
1818 "categories" : [
Original file line number Diff line number Diff line change 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 ( ) ;
You can’t perform that action at this time.
0 commit comments