Skip to content

Commit

Permalink
update deps, fix some small bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
takayama-lily committed Jun 6, 2021
1 parent 5299796 commit d32afbc
Show file tree
Hide file tree
Showing 7 changed files with 290 additions and 286 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.2.4: 2021/6/6

* 修复有时无法验证设备锁的问题
* [theme] 修复月份显示少1的问题
* [theme] 群头像改为方的

## Version 1.2.3: 2021/5/19

* [Explorer] 显示好友备注
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
**[Repository](https://github.com/takayama-lily/vscode-qq)** | **[Offline Installers](https://github.com/takayama-lily/vscode-qq/releases)** | vscode >= 1.53.0
[![discord](https://img.shields.io/static/v1?label=chat&message=discord&color=7289da&logo=discord)](https://discord.gg/gKnU7BARzv)

> 该插件主要面向不方便使用官方QQ客户端的VSC用户,仍然建议您尽可能使用官方QQ客户端
> 鉴于项目的特殊性,插件功能可能不会再更新,并随时有可能删库
> `@设置` 里的 `platform` 是登录协议,1:手机 3:手表 4:PC 5:pad(默认)
> 该插件主要面向不方便使用官方QQ客户端的VSC用户
> `@设置` 里的 `platform` 是登录协议,1:手机 3:手表(功能不完整) 4:PC 5:pad(默认)
> 本程序不在本地保存任何消息记录和图片。暂不支持临时会话。
> 首次可能需要chrome浏览器完成滑动验证码 (若无chrome请根据提示手动操作)。
> 仍然建议您尽可能使用官方QQ客户端。
## 切换UI主题

Expand Down
2 changes: 1 addition & 1 deletion assets/default-theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ button#send {
width: 80px;
height: 80px;
border: 1px solid #c5d4c4;
border-radius: 100%;
border-radius: 10%;
margin: 10px 55px;
}
.group-members {
Expand Down
4 changes: 2 additions & 2 deletions assets/preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
return new Promise((resolve, reject) => {
postMessage(obj);
const id = setTimeout(() => {
reject(new TimeoutError);
reject(new vsc.TimeoutError);
handlers.delete(echo);
}, 5000);
}, 5500);
handlers.set(echo, (data) => {
clearTimeout(id);
resolve(data);
Expand Down
Loading

0 comments on commit d32afbc

Please sign in to comment.