File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1+ # ** v1.3.2**
2+
3+ ## Bug Fixes
4+
5+ * Fixed #44 wrong command attached to input box
6+
17# ** v1.3.1**
28
39## Bug Fixes
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.3.1 " ,
5+ "version" : " 1.3.2 " ,
66 "publisher" : " johnstoncode" ,
77 "engines" : {
88 "vscode" : " ^1.17.0"
Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ export class SvnCommands {
207207 }
208208
209209 async commit ( repository : Repository , ...args : any [ ] [ ] ) : Promise < void > {
210+ console . log ( args ) ;
210211 try {
211212 const paths = args [ 0 ] . map ( state => {
212213 return state . resourceUri . fsPath ;
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export class Repository {
5050 Uri . file ( repository . root )
5151 ) ;
5252 this . sourceControl . acceptInputCommand = {
53- command : "svn.commit " ,
53+ command : "svn.commitWithMessage " ,
5454 title : "commit" ,
5555 arguments : [ this . sourceControl ]
5656 } ;
@@ -81,7 +81,7 @@ export class Repository {
8181
8282 private addEventListeners ( ) {
8383 const debounceUpdate = debounce ( this . update , 1000 , this ) ;
84-
84+
8585 this . watcher . onDidChange ( ( ) => {
8686 debounceUpdate ( ) ;
8787 } ) ;
You can’t perform that action at this time.
0 commit comments