Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Commit

Permalink
命令行参数中增加 -b|--bench 选项,用来指定工作目录
Browse files Browse the repository at this point in the history
  • Loading branch information
pandolia committed May 6, 2017
1 parent 7d8ea12 commit ddd8bb4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@ QQBotSched 是对 Python 的定时任务框架 apscheduler 的简单封装,其
- **绝对不要** 在回调函数、定时任务或 qqbot 主线程的内部调用 os.system 执行 **本 QQ 号对应的 qq 命令** ( 如 os.system('qq send buddy jack hello') )或请求 **本 QQ 号对应的 HTTP-API 接口** ,否则整个程序会形成死锁(因为 os.system 要等 qq 命令执行完成后才返回、而 qq 命令要等 os.system 返回后才会被执行)。请使用 bot 的 SendTo/List/GroupXXX 接口。
- 建议采用插件的形式编写,不必修改 qqbot 的源代码,且可在 qqbot 的运行过程中动态的加载和卸载。

七、二维码管理器、QQBot 配置及命令行参数
------------------------------------
七、二维码管理器、QQBot 配置、命令行参数以及工作目录
--------------------------------------------

#### 二维码的显示模式

Expand Down Expand Up @@ -537,9 +537,9 @@ QQBot 启动后,会开启一个 QQBot-term 服务器监听用户通过 qq 命

其中:根配置 是固定的,用户无法修改; 默认配置 和 用户配置 可由用户在 v2.1.conf 文件中进行修改;最后,还可以在 命令行参数 中输入配置。

#### 工作目录及文件
#### 工作目录

qqbot 运行时,会在 **工作目录** 下 搜索/创建 以下 文件/目录 :
qqbot 运行时,会在 工作目录 下 搜索/创建 以下 文件/目录 :

+ 配置文件: v2.2.conf
+ 插件目录: plugins\
Expand Down
5 changes: 2 additions & 3 deletions changes
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
2017-05-03 qqbot v2.2.7
2017-05-06 qqbot v2.2.7
1) 二维码邮件内容中增加 conf.user 和 conf.qq ,方便区分是哪个用户登录时发送的二维码邮件。
2) 二维码 url 地址改为 http://{httpServerIP}:{httpServerPort}/{any} 其中 {any} 可以是任意的字母或数字组成的字符串。
3) 修正 Partition 函数中 utf8 分割的 bug
4) QTERM 服务器单次请求内容长度由 1024 改为 8192
5) 修正自动登录时当 session.session.verify == False 时没有隐藏 https warning 的 bug
6) poll 加入 Ejimo 字符转义,感谢 @NineLucas 分享代码
7) 修正 windows 中 sys.stdout 不存在 buffer 属性的情况下无法运行的 bug
7) 修正 windows-py3-idle 中 sys.stdout 不存在 buffer 属性的情况下无法运行的 bug
8) 命令行参数中增加 -b|--bench 选项,用来指定工作目录。默认的工作目录为 ~\.qqbot-tmp\ 。
qqbot 运行时,会在工作目录下搜索配置文件 v2.x.conf,在工作目录以下的 plugins 目录中搜索插件;并将登录 pickle 文件、联系人 db 文件 以及 临时二维码图片保存在工作目录下。

2017-05-02 qqbot v2.2.6
1) 修正 http 二维码服务器需要刷新的 bug ,二维码的 url 地址改为: http://{httpServerIP}:{httpServerPort}/{pngid} 。感谢 @huangzk 反馈
Expand Down

0 comments on commit ddd8bb4

Please sign in to comment.