-
Notifications
You must be signed in to change notification settings - Fork 380
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. 修复并发时文件锁失效的 bug 2. 修复带参数启动时,线程限制没有生效的 bug 3. 修复 MAC 信息表下载不成功,且日志无提示的问题 4. 优化和修复主机名等信息的获取未按预期工作的问题 5. 修复部分版本的系统,SSH登录信息获取不正确的问题 6. 局域网扫描应快速扫描更新 ARP 列表,而不是加入 IPLIST 列表,使用普通的 ping 超时检测 7. 减少一部分调试模式中的信息输出,方便排查错误 8. 稍稍调整了推送内容中,设备列表的对齐方式 9. 增加通过 NetBIOS 查询主机名和 MAC 的方式,此功能需要安装 samba*-server 或 samba*-client 10. 因 OpenWrt 版本的 jq 处理速度已经有了显著提升,改为使用 json 存储 IP 和设备信息 11. 清理多余代码和一些小的修改
- Loading branch information
Showing
4 changed files
with
88 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=luci-app-wechatpush | ||
PKG_VERSION:=3.5.1 | ||
PKG_VERSION:=3.5.3 | ||
PKG_RELEASE:= | ||
|
||
PKG_MAINTAINER:=tty228 <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
#!/bin/sh | ||
|
||
dir="/tmp/wechatpush/" && mkdir -p ${dir} && mkdir -p ${dir}/client | ||
rm -f ${dir}client/* >/dev/null 2>&1 | ||
rm -rf /tmp/luci-* >/dev/null 2>&1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.