Skip to content

Commit

Permalink
fix bugs, update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
takayama-lily committed Jul 23, 2021
1 parent 6fd4fe7 commit db61015
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# VS Code QQ Extension Change Log

## Version 1.3.2: 2021/7/23

* 修复每次登录都要扫码的问题
* 放大二维码

## Version 1.3.1: 2021/7/22

* [Explorer] 支持手机QQ扫码直接登录
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions 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.3.1",
"version": "1.3.2",
"engines": {
"vscode": "^1.53.0"
},
Expand Down Expand Up @@ -173,7 +173,7 @@
},
"dependencies": {
"get-port": "^5.1.1",
"oicq": "^1.18.0",
"oicq": "^1.18.2",
"ws": "^7.5.3"
},
"publisher": "takayama",
Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function createClient(uin: number) {
enableScripts: true,
enableCommandUris: true
});
webview.webview.html = `若提示二维码已过期重试一次<br><img src="data:image/jpeg;base64,${data.image.toString("base64")}">`;
webview.webview.html = `若提示二维码已过期重试一次<br><img width="400px" height="400px" src="data:image/jpeg;base64,${data.image.toString("base64")}">`;
webview.reveal();
webview.onDidDispose(() => {
client.login();
Expand Down

0 comments on commit db61015

Please sign in to comment.