Skip to content

Commit

Permalink
2016-03-17 Mojo::Weixin v1.0.7 发布
Browse files Browse the repository at this point in the history
  • Loading branch information
hexsum committed Mar 17, 2016
1 parent ce873b4 commit c8543d6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2016-03-17 Mojo::Weixin v1.0.7
1)二维码扩展名从png变为jpg
2)发送好友消息API支持 id=@all 群发消息给所有好友
3)删除cookie_dir属性,新增cookie_path属性,指定cookie保存路径
当运行多个微信帐号时,指定不同cookie文件路径避免多账号登录cookie互相干扰
4)尝试修复"群名未知"、"昵称未知"等问题
5)修复Riddle插件api不可用的问题

2016-03-14 Mojo::Weixin v1.0.6
1)修复好友、群对象创建时产生报警错误
2)增加发送图片和文件的方法(函数)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Mojo-Weixin v1.0.6 [![Build Status](https://travis-ci.org/sjdy521/Mojo-Weixin.svg?branch=master)](https://travis-ci.org/sjdy521/Mojo-Weixin)
Mojo-Weixin v1.0.7 [![Build Status](https://travis-ci.org/sjdy521/Mojo-Weixin.svg?branch=master)](https://travis-ci.org/sjdy521/Mojo-Weixin)
========================
使用Perl语言编写的微信客户端框架,基于Mojolicious,要求Perl版本5.10.1+,可通过插件提供基于HTTP协议的api接口供其他语言或系统调用

Expand Down
2 changes: 1 addition & 1 deletion doc/Weixin.pod
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Mojo::Weixin - A Weixin Client Framework base on Mojolicious
#编码必须是 Encode 模块支持的格式,比如utf8 gbk等

tmpdir #程序使用的临时目录,主要用于保存一些验证码、二维码等数据,默认为系统临时目录
cookie_dir #登录cookie的保存目录,默认为 tmpdir 参数所设置的目录
cookie_path #登录cookie的保存文件,默认为 tmpdir/mojo_weixin_cookie.dat(多账号运行时需要设置不同的cookie_path)
pic_dir #图片接收默认地址,默认为 tmpdir 参数所设置的目录

qrcode_path #二维码保存路径,默认是 tmpdir 目录下固定文件名
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Weixin.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package Mojo::Weixin;
our $VERSION = '1.0.6';
our $VERSION = '1.0.7';
use Mojo::Weixin::Base 'Mojo::EventEmitter';
use Mojo::IOLoop;
use Mojo::Weixin::Log;
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/Weixin.pod
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Mojo::Weixin - A Weixin Client Framework base on Mojolicious
#编码必须是 Encode 模块支持的格式,比如utf8 gbk等

tmpdir #程序使用的临时目录,主要用于保存一些验证码、二维码等数据,默认为系统临时目录
cookie_dir #登录cookie的保存目录,默认为 tmpdir 参数所设置的目录
cookie_path #登录cookie的保存文件,默认为 tmpdir/mojo_weixin_cookie.dat(多账号运行时需要设置不同的cookie_path)
pic_dir #图片接收默认地址,默认为 tmpdir 参数所设置的目录

qrcode_path #二维码保存路径,默认是 tmpdir 目录下固定文件名
Expand Down

0 comments on commit c8543d6

Please sign in to comment.