feat: 优化应用商店界面布局和交互体验

refactor(HomeView): 调整网格布局和卡片样式,增加欢迎页面
refactor(AppDetailModal): 重构应用详情弹窗布局,增加元数据展示和返回按钮
fix(spark-store): 添加dpkg命令检查逻辑
style: 统一调整部分间距和颜色样式
This commit is contained in:
2026-03-29 15:22:55 +08:00
parent 33c48f4543
commit ad5562700f
5 changed files with 364 additions and 194 deletions

View File

@@ -17,6 +17,12 @@ if [ "$IS_ACE_ENV" = "1" ]; then
ARGS="$ARGS --no-apm"
fi
# 检查是否存在 dpkg 指令
if ! command -v dpkg >/dev/null 2>&1; then
echo "未检测到 dpkg 指令"
ARGS="$ARGS --no-spark"
fi
# 注意:已移除原先针对 arm64 + wayland 添加 --disable-gpu 的逻辑,
# 现在 arm64 设备无论是否使用 wayland 均不再添加此参数。