File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ ** v0.8.6**
2
+ =============================================
3
+
4
+ ## Bug Fixes
5
+ - Fixed issue with path not showing correctly when with history
6
+
1
7
** v0.8.5**
2
8
=============================================
3
9
Original file line number Diff line number Diff line change 2
2
"name" : " svn-scm" ,
3
3
"displayName" : " SVN" ,
4
4
"description" : " Integrated Subversion source control" ,
5
- "version" : " 0.8.5 " ,
5
+ "version" : " 0.8.6 " ,
6
6
"publisher" : " johnstoncode" ,
7
7
"engines" : {
8
8
"vscode" : " ^1.16.0"
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ Repository.prototype.getStatus = function() {
102
102
103
103
for ( item of items ) {
104
104
let state = item . charAt ( 0 ) ;
105
- let path = item . substr ( 1 ) . trim ( ) ;
105
+ let path = item . substr ( 8 ) . trim ( ) ;
106
106
107
107
if ( path !== "." ) {
108
108
status . push ( [ state , path ] ) ;
You can’t perform that action at this time.
0 commit comments