Skip to content

Commit

Permalink
released v1.27.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnstonCode committed Apr 2, 2018
1 parent 6b41d6c commit 21e724f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# **v1.27.1**

## Changes

* @JohnstonCode Updated ignore error message and now shows information message on completion

# **v1.27.0**

## What's New
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "svn-scm",
"displayName": "SVN",
"description": "Integrated Subversion source control",
"version": "1.27.0",
"version": "1.27.1",
"publisher": "johnstoncode",
"engines": {
"vscode": "^1.18.0"
Expand Down
6 changes: 5 additions & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1075,9 +1075,13 @@ export class SvnCommands implements IDisposable {
for (const resource of resources) {
try {
await repository.addFileToIgnore(resource.fsPath);

const assetName = path.basename(resource.fsPath);

window.showInformationMessage(`${assetName} is now being ignored`);
} catch (error) {
console.log(error);
window.showErrorMessage("Unable to set property");
window.showErrorMessage("Unable to set property ignore");
}
}
});
Expand Down

0 comments on commit 21e724f

Please sign in to comment.