Skip to content

Commit

Permalink
add feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
takayama-lily committed Oct 9, 2021
1 parent bcba775 commit e50efac
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# VS Code QQ Extension Change Log

## Version 1.4.1: 2021/10/9

* [default-theme] 修复表情排列问题
* [default-theme] 修复无法显示好友文件消息
* [Explorer] 添加 `@feecback` 选项

## Version 1.4.0: 2021/9/18

* [default-theme] 支持查看嵌套转发内的消息
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "vscode-qq",
"displayName": "QQ",
"description": "lite qq for chat in working",
"version": "1.4.0",
"version": "1.4.1",
"engines": {
"vscode": "^1.53.0"
},
Expand Down
5 changes: 5 additions & 0 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const statusMap: { [k: number]: string } = {
97: "@个人资料",
98: "@切换账号",
99: "@设置",
100: "@feedback"
};

/**
Expand Down Expand Up @@ -251,6 +252,10 @@ export function invoke() {
}
return;
}
if (value === "@feedback") {
vscode.env.openExternal(vscode.Uri.parse("https://github.com/takayama-lily/vscode-qq/issues"));
return;
}
if (value?.includes("离线")) {
client?.logout();
} else if (value) {
Expand Down

0 comments on commit e50efac

Please sign in to comment.