-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
注意:此版本开始将不再支持 napcat 1.7.0 以下的版本,好友列表加载将出现严重的性能问题,请酌情更新。 :sparkles: 在此版本之后,更新检查将以 release 版本为主,不再以 commit 提醒 :sparkles: 客户端脚本支持!现在你可以通过编写 js 脚本来执行一些自动化操作;在 设置 - 高级 - 进阶功能 处打开它。 :sparkles: 支持 napcat 1.8.0 获取历史会话列表 :sparkles: 支持 napcat 1.8.0 显示好友签名,优化好友列表显示 :sparkles: 支持 napcat 1.7.0 获取收藏表情 :sparkles: 增加了 poke 兼容但是暂时没用 :sparkles: 现在视频消息会自动播放了 :sparkles: 现在群公告里的链接也能直接点击了 :sparkles: 现在特别关心永远会提醒了 :bug: 修复了预发送消息失效的问题 :bug: 修复了一个消息转换潜在的 bug :bug: 修正了预发送消息的 id 未被替换的问题 :bug: 修正了消息渲染对 html 转义符号处理异常的问题 :bug: 修正了特别关心判定异常的问题 :bug: 修正获取历史会话异步异常的问题 :lipstick: 修改了关于页应用图标在暗黑模式下的颜色 :poop: 去除分离式分组信息支持 :art: 代码检查优化 :heavy_plus_sign: 新增依赖 prismjs、vue-prism-editor :wheelchair: 持久化了一个神秘的设置项 :wheelchair: 优化了通知跳转的逻辑,防止反复获取历史记录 :wheelchair: 支持分离式和非分离式的好友群列表 :memo: 补充了一些 gitmoji 的转换
- Loading branch information
Showing
51 changed files
with
1,234 additions
and
513 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# 功能 API 相关设置 | ||
VUE_APP_LINK_VIEW=https://api.stapxs.cn/tool/page-info/ | ||
|
||
# 用户统计 umami 相关设置 | ||
VUE_APP_MU_ADDRESS=https://status.stapxs.cn | ||
VUE_APP_MU_ID=fa20b37d-93a3-41d5-a180-dd66fbbcc573 | ||
VUE_APP_MU_SHARE=https://status.stapxs.cn/share/dxwhBcriczpA7wWQ/Stapxs%20QQ%20Lite%202.0 | ||
|
||
# 高德地图相关设置 | ||
VUE_APP_AMAP_KEY=99b8849d7b67f05e9f834bde4108f0f9 | ||
VUE_APP_AMAP_SECRET=e9ac5aac621defdd6bb111b55fb75d73 | ||
VUE_APP_AMAP_SECRET=e9ac5aac621defdd6bb111b55fb75d73 |
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 |
---|---|---|
@@ -1,18 +1,35 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true | ||
}, | ||
'extends': [ | ||
'plugin:vue/vue3-essential', | ||
'eslint:recommended', | ||
'@vue/typescript/recommended' | ||
], | ||
parserOptions: { | ||
ecmaVersion: 2020 | ||
}, | ||
rules: { | ||
"@typescript-eslint/no-explicit-any": "off", // 忽略使用 any 类型的错误 | ||
"no-debugger": 1 // debugger 改为警告而非错误 | ||
} | ||
root: true, | ||
env: { | ||
node: true | ||
}, | ||
'extends': [ | ||
'plugin:vue/vue3-essential', | ||
'eslint:recommended', | ||
'@vue/typescript/recommended' | ||
], | ||
parserOptions: { | ||
ecmaVersion: 2020 | ||
}, | ||
rules: { | ||
// 基础规则 | ||
'@typescript-eslint/no-explicit-any': 'off', // 忽略使用 any 类型的错误 | ||
'no-debugger': 'warn', // debugger | ||
'no-console': 'warn', // console | ||
'prefer-arrow-callback': 'warn', // 优先使用箭头函数 | ||
'quotes': ['warn', 'single'], // 引号 | ||
// Vue 相关规则 | ||
'vue/html-closing-bracket-spacing': ['warn', { | ||
'startTag': 'never', | ||
'endTag': 'never', | ||
'selfClosingTag': 'always' | ||
}], // html 标签闭合 | ||
'vue/html-quotes': [ 'warn', | ||
'double', | ||
{ 'avoidEscape': true } | ||
], // html 引号 | ||
'vue/v-for-delimiter-style': ['error', 'in'], // v-for 分隔符 | ||
'vue/require-name-property': 'warn', // 组件 name 属性 | ||
'vue/prefer-true-attribute-shorthand': 'warn', // 属性简写 | ||
} | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Oops, something went wrong.