Skip to content

Commit f796ce9

Browse files
committed
fixed issue with paths and with history
1 parent b7a83c2 commit f796ce9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
**v0.8.6**
2+
=============================================
3+
4+
## Bug Fixes
5+
- Fixed issue with path not showing correctly when with history
6+
17
**v0.8.5**
28
=============================================
39

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "svn-scm",
33
"displayName": "SVN",
44
"description": "Integrated Subversion source control",
5-
"version": "0.8.5",
5+
"version": "0.8.6",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.16.0"

src/svn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Repository.prototype.getStatus = function() {
102102

103103
for (item of items) {
104104
let state = item.charAt(0);
105-
let path = item.substr(1).trim();
105+
let path = item.substr(8).trim();
106106

107107
if (path !== ".") {
108108
status.push([state, path]);

0 commit comments

Comments
 (0)