File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff 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 } ) ;
You can’t perform that action at this time.
0 commit comments