Skip to content

Commit

Permalink
release:v_3.4.0_190619
Browse files Browse the repository at this point in the history
  • Loading branch information
rememberber committed Jun 19, 2019
1 parent 22ddc4e commit 5cd84b1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private static WxMaInMemoryConfig wxMaConfigStorage() {
//空闲链接的检测周期(单位ms)
clientBuilder.setCheckWaitTime(60000);
//每路最大连接数
clientBuilder.setMaxConnPerHost(App.config.getMaxThreadPool());
clientBuilder.setMaxConnPerHost(App.config.getMaxThreadPool() * 2);
//连接池最大连接数
clientBuilder.setMaxTotalConn(App.config.getMaxThreadPool() * 2);
//HttpClient请求时使用的User Agent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private static WxMpInMemoryConfigStorage wxMpConfigStorage() {
//空闲链接的检测周期(单位ms)
clientBuilder.setCheckWaitTime(60000);
//每路最大连接数
clientBuilder.setMaxConnPerHost(App.config.getMaxThreadPool());
clientBuilder.setMaxConnPerHost(App.config.getMaxThreadPool() * 2);
//连接池最大连接数
clientBuilder.setMaxTotalConn(App.config.getMaxThreadPool() * 2);
//HttpClient请求时使用的User Agent
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/fangxuele/tool/push/ui/UiConsts.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class UiConsts {
* 软件名称,版本
*/
public final static String APP_NAME = "WePush";
public final static String APP_VERSION = "v_3.3.0_190608";
public final static String APP_VERSION = "v_3.4.0_190619";

/**
* 主窗口图标-大
Expand Down
10 changes: 8 additions & 2 deletions src/main/resources/version_summary.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"currentVersion": "v_3.3.0_190608",
"currentVersion": "v_3.4.0_190619",
"versionIndex": {
"v_1.1.0_170701": "0",
"v_1.2.0_170831": "1",
Expand All @@ -25,7 +25,8 @@
"v_3.1.0_190524": "21",
"v_3.2.0_190601": "22",
"v_3.2.1_190603": "23",
"v_3.3.0_190608": "24"
"v_3.3.0_190608": "24",
"v_3.4.0_190619": "25"
},
"versionDetailList": [
{
Expand Down Expand Up @@ -152,6 +153,11 @@
"version": "v_3.3.0_190608",
"title": "微信相关消息支持使用http代理+优化连接池+全局帮助",
"log": "● 增加全局帮助对话框\n● 版本更新对话框优化,避免更新日志过多显示不下\n● 根据屏幕DPI自动初始化字号\n● 短信编辑form调整\n● 优化微信相关消息发送时连接获取超时的问题\n● 微信相关消息类型增加Http代理设置\n● 第一次安装时增加字号大小设置引导\n● 消息编辑深度梳理大规模重构\n"
},
{
"version": "v_3.4.0_190619",
"title": "自动获取微信公众号可选模板+模板参数自动填充",
"log": "● 自动获取微信公众号可选模板\n● 模板参数自动填充\n● 客服消息文本类型输入区域优化\n● UI调整,消息编辑可见范围不受屏幕分辨率限制\n● 增加空跑帮助提示\n● 消息发送器解耦,新增消息加工器策略,大幅提高消息加工性能\n● push相关流程深度梳理和大规模重构\n● UI细节调整,增加累计推送量展示\n"
}
]
}

0 comments on commit 5cd84b1

Please sign in to comment.