|
luci-app-aria2_1.3.1-1_all.ipk
个人修改版
修改内容
1,自动保存下载列表
2,区分下载目录和下载完成目录.自动移动下载完成的文件到下载完成目录.
另外有个脚本,定期删除没用的bt种子和空文件夹/mnt/sda1/.aria2/rmoldtorrent.sh
- #!/bin/sh
- if [ ! -f "/etc/crontabs/root" ]; then
- echo "1 3 * * 1 /mnt/sda1/.aria2/rmoldtorrent.sh" > /etc/crontabs/root
- echo " " >> /etc/crontabs/root
- echo 'root' >> /etc/crontabs/cron.update
- else
- cun=`grep 'rmoldtorrent.sh' /etc/crontabs/root`
- if [ "$cun" = "" ];then
- sed -i 1i\\'1 3 * * 1 /mnt/sda1/.aria2/rmoldtorrent.sh' /etc/crontabs/root
- fi
- fi
- dir=/mnt/sda1/tmp
- config_dir=/mnt/sda1/.aria2
- grep -i '.torrent' $config_dir/aria2.session > /tmp/list1
- find $dir -type f -iname '*.torrent' -mtime +7 > /tmp/list2
- grep -vf /tmp/list1 /tmp/list2 | xargs rm -rf
- find $dir -type d -exec rmdir {} \;
复制代码 没有放到包里.
中文版webui
跟随英文版更新.
更新内容
修改内容
1,简体中文部分汉化
2,交换左右面板位置,这样在手机上可以先看到列表.
3,修改默认快捷设置为下载数限制,下载速度限制,上传速度限制,下载目录.
4,修改默认服务器地址为192.168.1.1
|
评分
-
查看全部评分
|