├── .idea ├── .gitignore ├── QBittorrent-doc.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── images ├── alipay.jpg ├── qb │ ├── Tracker列表.jpg │ ├── 侧滑菜单.jpg │ ├── 全局速度设置.jpg │ ├── 图表统计.jpg │ ├── 添加种子.jpg │ ├── 种子列表.jpg │ ├── 种子文件.jpg │ └── 种子详情.jpg ├── wechart.jpg └── wechart_qr.jpg └── versions └── config.json /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/QBittorrent-doc.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## 管理你的QBittorrent,Transmission 2 | 3 | 此项目仅用于收集bug, 并非项目源码, IOS版由于没有开发者账号, 以及电脑无法升级到最新Mac系统无法发布 4 | 5 | ### 关注我获取更新dev 6 | 7 | 8 | 9 | ### 使用说明 10 | 11 | * 初次使用需要配置服务器 12 | 13 | 1. 点击 `添加服务器并登录` 按钮进入添加页面 14 | 2. 输入备注,随便取个名称,如: Nas 15 | 3. 输入服务器地址, 可点击 `http://` 进行协议切换, 如在浏览器访问地址是 `http://192.168.3.100:8080` 16 | 那么需要填入 `192.168.3.100:8080` 17 | 4. 输入用户名,密码, 选择服务器类型,默认为QBittorrent 18 | 19 | ### QBittorrent 基本功能已经完成,更多功能正在开发中 20 | 21 | #### QBittorrent 部分页面截图 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | ### Transmission 已完成部分功能,更多功能正在开发中 30 | 31 | ### 用爱发电,感谢您的支持 32 | 33 | * 如果你觉得对你有帮助可以扫描下面二维码随意打赏下哦! 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /images/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/alipay.jpg -------------------------------------------------------------------------------- /images/qb/Tracker列表.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/qb/Tracker列表.jpg -------------------------------------------------------------------------------- /images/qb/侧滑菜单.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/qb/侧滑菜单.jpg -------------------------------------------------------------------------------- /images/qb/全局速度设置.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/qb/全局速度设置.jpg -------------------------------------------------------------------------------- /images/qb/图表统计.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/qb/图表统计.jpg -------------------------------------------------------------------------------- /images/qb/添加种子.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/qb/添加种子.jpg -------------------------------------------------------------------------------- /images/qb/种子列表.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/qb/种子列表.jpg -------------------------------------------------------------------------------- /images/qb/种子文件.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/qb/种子文件.jpg -------------------------------------------------------------------------------- /images/qb/种子详情.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/qb/种子详情.jpg -------------------------------------------------------------------------------- /images/wechart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/wechart.jpg -------------------------------------------------------------------------------- /images/wechart_qr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toutoumu/QBittorrent-doc/f3f9441686ec59c1ab99ce069ec468c2826baf86/images/wechart_qr.jpg -------------------------------------------------------------------------------- /versions/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.5", 3 | "description": "版本号:1.0.5\n更新内容\n 1. 更新Flutter SDK版本\n 2.修复网络访问问题 \n 请前往GitHub下载", 4 | "updateTime": "2025年05月29日09:12:31" 5 | } --------------------------------------------------------------------------------