Skip to content

Commit e0dc065

Browse files
committed
fixed #44
1 parent 123a97e commit e0dc065

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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

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.3.1",
5+
"version": "1.3.2",
66
"publisher": "johnstoncode",
77
"engines": {
88
"vscode": "^1.17.0"

src/commands.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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;

src/repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)