Skip to content

Commit 6790865

Browse files
committed
multi-root aware
1 parent 600042c commit 6790865

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
**v0.6.0**
22
=============================================
33

4+
## What's New
5+
- Now multi-root aware for VS code 18
6+
7+
**v0.6.0**
8+
=============================================
9+
410
## What's New
511
- Can add un-tracked files in source control view
612

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "svn-scm",
33
"displayName": "svn-scm",
44
"description": "",
5-
"version": "0.7.0",
5+
"version": "0.8.0",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.16.0"
@@ -16,6 +16,7 @@
1616
"url": "https://github.com/JohnstonCode/svn-scm/issues"
1717
},
1818
"categories": ["Other", "SCM Providers"],
19+
"keywords": ["multi-root ready"],
1920
"activationEvents": ["*"],
2021
"main": "./src/extension",
2122
"scripts": {

src/repository.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ Repository.prototype.update = function() {
9494

9595
this.changes.resourceStates = changes;
9696
this.notTracked.resourceStates = notTracked;
97+
98+
// console.log(this.changes.resourceStates);
9799
})
98100
.catch(error => {
99101
console.log(error);

0 commit comments

Comments
 (0)