Skip to content

Commit 21e724f

Browse files
committed
released v1.27.1
1 parent 6b41d6c commit 21e724f

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# **v1.27.1**
2+
3+
## Changes
4+
5+
* @JohnstonCode Updated ignore error message and now shows information message on completion
6+
17
# **v1.27.0**
28

39
## What's New

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": "1.27.0",
5+
"version": "1.27.1",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.18.0"

src/commands.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,9 +1075,13 @@ export class SvnCommands implements IDisposable {
10751075
for (const resource of resources) {
10761076
try {
10771077
await repository.addFileToIgnore(resource.fsPath);
1078+
1079+
const assetName = path.basename(resource.fsPath);
1080+
1081+
window.showInformationMessage(`${assetName} is now being ignored`);
10781082
} catch (error) {
10791083
console.log(error);
1080-
window.showErrorMessage("Unable to set property");
1084+
window.showErrorMessage("Unable to set property ignore");
10811085
}
10821086
}
10831087
});

0 commit comments

Comments
 (0)