Compare commits

..

12 Commits
v0.1.3 ... main

Author SHA1 Message Date
xin
f0efcff07f 优化体验 2025-12-03 23:38:29 +08:00
xin
7280e186dd 优化体验 2025-12-03 16:32:38 +08:00
xin
f8d3ba4327 优化稳定性 2025-12-02 22:33:34 +08:00
xin
251d8795ea 恢复可以回退到上一个版本的功能 2025-11-30 21:41:23 +08:00
xin
33cfff35b7 优化曲线显示数据 2025-11-30 20:04:16 +08:00
xin
5e5aac70fa 新接口 2025-11-30 11:22:31 +08:00
xin
ed79033f44 修复重启功能, 新功能埋点 2025-11-29 09:53:39 +08:00
xin
c87fa90e62 增加内部存储删除文件夹功能,添加qqmusic proxy功能 2025-11-27 19:17:06 +08:00
xin
9377f60b7d 测试 2025-11-25 22:20:35 +08:00
xin
8c2e8d5e08 优化播放器 2025-11-25 19:17:31 +08:00
xin
b56434f44e 优化ota速度 2025-11-24 09:46:52 +08:00
xin
ddef5769ee 继续修复播放器卡顿的问题,并且让播放器具备复制文件夹到内部存储的能力 2025-11-24 09:17:55 +08:00
2 changed files with 32 additions and 1 deletions

View File

@ -1 +1 @@
http://xplayer-ota.pureroad.cn/files_20251121_230809.tar.xz
http://xplayer-ota.pureroad.cn/files_20251203_232832.tar.xz

View File

@ -80,6 +80,34 @@
mode: '0644'
tags: apt
- name: check missing packages
shell:
cmd: |
MISSING=""
for pkg in {{ packages }}; do
# 先检查原包名
if dpkg-query -W -f='${Status}' "$pkg" 2>/dev/null | grep -q "install ok installed"; then
continue
# 如果原包名不存在,尝试检查带 t64 后缀的版本
elif dpkg-query -W -f='${Status}' "${pkg}t64" 2>/dev/null | grep -q "install ok installed"; then
continue
else
MISSING="yes"
break
fi
done
if [ -n "$MISSING" ]; then
echo "missing"
else
echo "all_installed"
fi
args:
executable: /bin/bash
register: package_check
changed_when: false
ignore_errors: yes
tags: apt
- name: update apt cache
shell:
cmd: |
@ -88,6 +116,7 @@
else
apt-get update -y
fi
when: package_check.stdout == "missing"
ignore_errors: yes
tags: apt
@ -99,6 +128,7 @@
else
apt-get install -y {{ packages }}
fi
when: package_check.stdout == "missing"
ignore_errors: yes
tags: apt
@ -269,6 +299,7 @@
mode: '0755'
- src: ../files/99-usb-auto-mount.rules
dest: /etc/udev/rules.d/99-usb-auto-mount.rules
mode: '0644'
tags: usb
notify: