mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
Compare commits
No commits in common. "0222664db88c9f107423e0399d401ddd367af086" and "5e750d4ee9a0dfe35c53518089f0e6236e9a813f" have entirely different histories.
0222664db8
...
5e750d4ee9
16
README.md
16
README.md
@ -8,7 +8,7 @@
|
|||||||
## 欢迎回家
|
## 欢迎回家
|
||||||
NapCatQQ 是现代化的基于 NTQQ 的 Bot 协议端实现
|
NapCatQQ 是现代化的基于 NTQQ 的 Bot 协议端实现
|
||||||
|
|
||||||
## 特性介绍
|
## 碎碎叨叨
|
||||||
- [x] **安装简单**:就算是笨蛋也能使用
|
- [x] **安装简单**:就算是笨蛋也能使用
|
||||||
- [x] **性能友好**:就算是低内存也能使用
|
- [x] **性能友好**:就算是低内存也能使用
|
||||||
- [x] **接口丰富**:就算是没有也能使用
|
- [x] **接口丰富**:就算是没有也能使用
|
||||||
@ -26,19 +26,19 @@ NapCatQQ 是现代化的基于 NTQQ 的 Bot 协议端实现
|
|||||||
|
|
||||||
[Cloudflare.HKServer](https://napcat.napneko.icu/)
|
[Cloudflare.HKServer](https://napcat.napneko.icu/)
|
||||||
|
|
||||||
[Github.IO](https://napneko.github.io/)
|
|
||||||
|
|
||||||
[Cloudflare.Pages](https://napneko.pages.dev/)
|
[Cloudflare.Pages](https://napneko.pages.dev/)
|
||||||
|
|
||||||
[Server.China](https://napneko.com/)
|
[Server.China](https://napneko.com/)
|
||||||
|
|
||||||
[Server.Other](https://napcat.cyou/)
|
[Server.Other](https://napcat.cyou/)
|
||||||
|
|
||||||
|
[Github.IO](https://napneko.github.io/)
|
||||||
## 回家旅途
|
## 回家旅途
|
||||||
[QQ Group](https://qm.qq.com/q/VfjAq5HIMS)
|
[QQ Group](https://qm.qq.com/q/VfjAq5HIMS)
|
||||||
|
|
||||||
## 感谢他们
|
## 感谢他们
|
||||||
|
感谢 [LLOneBot](https://github.com/LLOneBot/LLOneBot)
|
||||||
|
|
||||||
感谢 [Lagrange](https://github.com/LagrangeDev/Lagrange.Core) 对本项目的大力支持 参考部分代码 已获授权
|
感谢 [Lagrange](https://github.com/LagrangeDev/Lagrange.Core) 对本项目的大力支持 参考部分代码 已获授权
|
||||||
|
|
||||||
感谢 Tencent Tdesign / Vue3 强力驱动 NapCat.WebUi
|
感谢 Tencent Tdesign / Vue3 强力驱动 NapCat.WebUi
|
||||||
@ -46,14 +46,6 @@ NapCatQQ 是现代化的基于 NTQQ 的 Bot 协议端实现
|
|||||||
不过最最重要的 还是需要感谢屏幕前的你哦~
|
不过最最重要的 还是需要感谢屏幕前的你哦~
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 延缓Native模块与NapCat对新版QQ适配
|
|
||||||
为未来持续与高效的使用Native模块 模块代码转为完全非Git仓库的本地保存源码 并进行相关重构
|
|
||||||
|
|
||||||
同时为了保证稳定 NapCat 本体通常会在3 Week+的周期进行新版本适配
|
|
||||||
|
|
||||||
因此此时推荐使用release指定版本
|
|
||||||
|
|
||||||
## 开源附加
|
## 开源附加
|
||||||
|
|
||||||
任何使用本仓库代码的地方,都应当严格遵守[本仓库开源许可](./LICENSE)。**此外,禁止任何项目未经仓库主作者授权二次分发或基于 NapCat 代码开发。**
|
任何使用本仓库代码的地方,都应当严格遵守[本仓库开源许可](./LICENSE)。**此外,禁止任何项目未经仓库主作者授权二次分发或基于 NapCat 代码开发。**
|
||||||
|
@ -150,7 +150,7 @@ export interface NodeIQQNTWrapperSession {
|
|||||||
nodeIKernelSessionListener: NodeIKernelSessionListener,
|
nodeIKernelSessionListener: NodeIKernelSessionListener,
|
||||||
): void;
|
): void;
|
||||||
|
|
||||||
startNT(session: number): void;
|
startNT(n: 0): void;
|
||||||
|
|
||||||
startNT(): void;
|
startNT(): void;
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { GetPacketStatusDepends } from '../packet/GetPacketStatus';
|
import BaseAction from '../BaseAction';
|
||||||
import { ActionName } from '../types';
|
import { ActionName } from '../types';
|
||||||
import { FromSchema, JSONSchema } from 'json-schema-to-ts';
|
import { FromSchema, JSONSchema } from 'json-schema-to-ts';
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ const SchemaData = {
|
|||||||
|
|
||||||
type Payload = FromSchema<typeof SchemaData>;
|
type Payload = FromSchema<typeof SchemaData>;
|
||||||
|
|
||||||
export class SetGroupSign extends GetPacketStatusDepends<Payload, any> {
|
export class SetGroupSign extends BaseAction<Payload, any> {
|
||||||
actionName = ActionName.SetGroupSign;
|
actionName = ActionName.SetGroupSign;
|
||||||
payloadSchema = SchemaData;
|
payloadSchema = SchemaData;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user