SuperMario SuperFans

Results 5 issues of SuperMario SuperFans

在最开始成员获取都一切正常,但获取群组到了一定时间或数量时就开始出现类似如下的错误: ``` [2017-12-01 22:02:54] [INFO] ##正在获取 群“SG震惊部”的成员列表 ... [2017-12-01 22:02:54] [DEBUG] 第1次请求“http://qinfo.clt.qq.com/cgi-bin/qun_info/get_group_members_new”时出现 请求被拒绝错误,html='{"calllog":"L5_69068...m":"anti-malicious"}' [2017-12-01 22:02:55] [DEBUG] 第2次请求“http://qinfo.clt.qq.com/cgi-bin/qun_info/get_group_members_new”时出现 请求被拒绝错误,html='{"calllog":"L5_69068...m":"anti-malicious"}' [2017-12-01 22:02:55] [ERROR] 第3次请求“http://qinfo.clt.qq.com/cgi-bin/qun_info/get_group_members_new”时出现 请求被拒绝错误, html='{"calllog":"L5_69068...m":"anti-malicious"}' [2017-12-01 22:02:55] [ERROR] ##获取 群“SG震惊部”的成员列表 失败...

Note: A migration may be need to make after this pull request being merged. This pull request does NOT have the migration made. Related issue: #386

I have done a translation for Simplified Chinese language and ready for contribute that. Also, there is a small fix for a translation text missing problem. `models.py` line 72 ```diff...

enhancement

I'm currently working on a AR HUD software using ursina. I'm planning to add a minimap feature, and I have no idea how to implement this. (I am a new...

由于一些需求,我需要能够在Python SDK中手动通过`CQHttp`类的方法来绑定和解绑处理函数,并且无法使用装饰器。 此外,由于相同的需求,我需要能够正确停止掉Python SDK的全部线程。目前是一旦初始化`CQHttp`对象并调用了`run()`方法,`Bottle`总是会有一个线程在后面持续运行不退出,结果导致必须按Ctrl+C终止。 以下是一些方法命名与参数的建议,如果起名困难的话可以参考一下这里。 **更新**: 重新阅读源码之后发现给出的建议参数列表中有一些不妥之处,已修改。 ```python from typing import Callable, Iterable class CQHttp(...): # 停止本地SDK的线程,如需重新启动bot则需重新启动CQHttp.run()。 def sdk_local_stop() -> None: pass # 通过方法注册处理函数 def set_handler(post_type: str, handler: Callable, types:...