- web/ → frontend/ 目录重命名(Wails v3 标准结构) - main.go: Middleware 修复 custom.js 404 + DevTools 延迟启动 - Sidebar: 收藏夹内部独立滚动 + 帮助区块固定底部 - useFavorites.ts: longPressTimer const→let 修复 TypeError - App.vue: Arco Tabs padding-top 覆盖 - build: config.yml / Taskfile.yml 对齐官方模板,devtools build tag - 新增 v3 bindings、vite.config.js、跨平台构建配置 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
36 lines
1.1 KiB
Bash
36 lines
1.1 KiB
Bash
#!/usr/bin/env bash
|
|
# Copyright (c) 2018-Present Lea Anthony
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# Fail script on any error
|
|
set -euxo pipefail
|
|
|
|
# Define variables
|
|
APP_DIR="${APP_NAME}.AppDir"
|
|
|
|
# Create AppDir structure
|
|
mkdir -p "${APP_DIR}/usr/bin"
|
|
cp -r "${APP_BINARY}" "${APP_DIR}/usr/bin/"
|
|
cp "${ICON_PATH}" "${APP_DIR}/"
|
|
cp "${DESKTOP_FILE}" "${APP_DIR}/"
|
|
|
|
if [[ $(uname -m) == *x86_64* ]]; then
|
|
# Download linuxdeploy and make it executable
|
|
wget -q -4 -N https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
|
|
chmod +x linuxdeploy-x86_64.AppImage
|
|
|
|
# Run linuxdeploy to bundle the application
|
|
./linuxdeploy-x86_64.AppImage --appdir "${APP_DIR}" --output appimage
|
|
else
|
|
# Download linuxdeploy and make it executable (arm64)
|
|
wget -q -4 -N https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-aarch64.AppImage
|
|
chmod +x linuxdeploy-aarch64.AppImage
|
|
|
|
# Run linuxdeploy to bundle the application (arm64)
|
|
./linuxdeploy-aarch64.AppImage --appdir "${APP_DIR}" --output appimage
|
|
fi
|
|
|
|
# Rename the generated AppImage
|
|
mv "${APP_NAME}*.AppImage" "${APP_NAME}.AppImage"
|
|
|