-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ 支持群 poke 消息以及相关动画/窗口动画 ✨ 新增一个没什么用的 bot 状态功能,仅限于开启了 ws 心跳功能的 bot ✨ 追加了之前遗漏的收藏表情多页加载的功能 ✨ 支持显示群戳一戳信息 ✨ 脚本页面增加一些内置脚本 ✨ 对自己发送的表情回应进行了显示 ✨ 置顶窗口支持 ✨ 脚本功能支持在通知消息类型触发 🎨 优化消息处理分发代码,去除大量 switch 🎨 优化了断开清理的逻辑,现在只会在连接不同的地址/不同的账号的情况下才会清空 🎨 优化了多种分页方式的兼容 🐛 修正消息列表在窄布局下的错误,由 3a5483e 损坏 :bug: 修正在 iOS 浏览器下由于通知功能缺失导致通知下游功能损坏的问题 <- #123 🐛 修正初次打开由于存储的商城表情未初始化导致的页面卡死问题 🐛 修正初次打开由于存储的代码未初始导致的页面卡死问题 🐛 修正由于消息解析器调整公告解析出现错误导致的页面卡死问题,由 c64592d 损坏 :bug: 在某些 bot 下 at 全体文本显示不正确 :bug: 修正了一个 Tab 焦点导致页面布局混乱的问题 :bug: 后端连接模式多重试了一次 :lipstick: 将全局字体限制为非衬线字体,防止在某些浏览器以及 linux 下出现默认为衬线字体的情况 :lipstick: 新增一组常见状态色便于使用 :heavy_plus_sign: 新增依赖:animejs :green_heart: 发布版本现在会构建一个用于 root 的 web 包便于使用 :egg: 全透明样式:界面 -> 窗口透明模式(仅供娱乐) :poop: 移除历史遗留的分阶段获取视频消息的功能
- Loading branch information
Showing
38 changed files
with
1,473 additions
and
808 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
:root { | ||
--color-blue: #316cf4; | ||
--color-green: #408558; | ||
--color-red: #cb444a; | ||
--color-yellow: #f6c344; | ||
|
||
--color-bg-blue: #393e47; | ||
--color-bg-green: #3f544a; | ||
--color-bg-red: #523a3c; | ||
--color-bg-yellow: #504b3d; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
:root { | ||
--color-blue: #316cf4; | ||
--color-green: #408558; | ||
--color-red: #cb444a; | ||
--color-yellow: #f6c344; | ||
|
||
--color-bg-blue: #d3e1fc; | ||
--color-bg-green: #d5e6de; | ||
--color-bg-red: #f3d8da; | ||
--color-bg-yellow: #fdf3d1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
.home-body, | ||
.main-body > ul, | ||
.friend-list, | ||
.friend-list-space, | ||
.chat-pan, | ||
.chat-pan > div.bg, | ||
.editor-main, | ||
.opt-main, | ||
.script-view, | ||
.opt-main > div:last-child { | ||
background-color: transparent !important; | ||
background: transparent !important; | ||
box-shadow: unset !important; | ||
} | ||
|
||
#app { | ||
background: rgba(var(--color-bg-rgb), 0.1) !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[ | ||
{ | ||
"title": "自动回应", | ||
"name": "autoResponse", | ||
"condition": "message" | ||
}, | ||
{ | ||
"title": "刷新特别关心", | ||
"name": "createSpecialCare", | ||
"condition": "userFlush" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
title: 自动回应 | ||
*/ | ||
|
||
const id = this.msgInfo.group_id ?? this.msgInfo.private_id | ||
const blacklist = [] | ||
|
||
if (this.isMe && blacklist.indexOf(id) === -1) { | ||
this.sendMsg('set_msg_emoji_like', | ||
{ 'message_id': this.message.message_id, 'emoji_id': '66' }) | ||
} |
Oops, something went wrong.