027ccc0ccc
git tag 已打到 v0.1.1,但 APP_VERSION/package.json/build/config.yml 全停在 0.1.0 —— 按更新提示的比对逻辑这会错乱。三处统一 0.1.1,并跑 wails3 task common:update:build-assets 重新生成原生元数据(Info.plist 等, CFBundleShortVersionString 已核实落到 0.1.1,包名/标识符未被冲回模板值)。 生成器顺手拉的 build/ios/ 脚手架已删,不做 iOS。 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
79 lines
2.6 KiB
YAML
79 lines
2.6 KiB
YAML
# This file contains the configuration for this project.
|
|
# When you update `info` or `fileAssociations`, run `wails3 task common:update:build-assets` to update the assets.
|
|
# Note that this will overwrite any changes you have made to the assets.
|
|
version: '3'
|
|
|
|
# This information is used to generate the build assets.
|
|
info:
|
|
companyName: "sundynix"
|
|
productName: "sundynix-agentix"
|
|
productIdentifier: "com.sundynix.agentix"
|
|
description: "事件驱动的 AI Agent 工作台"
|
|
copyright: "(c) 2026, sundynix"
|
|
comments: "sundynix-agentix desktop"
|
|
version: "0.1.1"
|
|
# cfBundleIconName: "appicon" # The macOS icon name in Assets.car icon bundles (optional)
|
|
# # Should match the name of your .icon file without the extension
|
|
# # If not set and Assets.car exists, defaults to "appicon"
|
|
|
|
# iOS build configuration (uncomment to customise iOS project generation)
|
|
# Note: Keys under `ios` OVERRIDE values under `info` when set.
|
|
# ios:
|
|
# # The iOS bundle identifier used in the generated Xcode project (CFBundleIdentifier)
|
|
# bundleID: "com.mycompany.myproduct"
|
|
# # The display name shown under the app icon (CFBundleDisplayName/CFBundleName)
|
|
# displayName: "My Product"
|
|
# # The app version to embed in Info.plist (CFBundleShortVersionString/CFBundleVersion)
|
|
# version: "0.0.1"
|
|
# # The company/organisation name for templates and project settings
|
|
# company: "My Company"
|
|
# # Additional comments to embed in Info.plist metadata
|
|
# comments: "Some Product Comments"
|
|
|
|
# Dev mode configuration
|
|
dev_mode:
|
|
root_path: .
|
|
log_level: warn
|
|
debounce: 1000
|
|
ignore:
|
|
dir:
|
|
- .git
|
|
- node_modules
|
|
- frontend
|
|
- bin
|
|
file:
|
|
- .DS_Store
|
|
- .gitignore
|
|
- .gitkeep
|
|
- "*_test.go"
|
|
watched_extension:
|
|
- "*.go"
|
|
- "*.js" # Watch for changes to JS/TS files included using the //wails:include directive.
|
|
- "*.ts" # The frontend directory will be excluded entirely by the setting above.
|
|
git_ignore: true
|
|
executes:
|
|
- cmd: wails3 build DEV=true
|
|
type: blocking
|
|
- cmd: wails3 task common:dev:frontend
|
|
type: background
|
|
- cmd: wails3 task run
|
|
type: primary
|
|
|
|
# File Associations
|
|
# More information at: https://v3.wails.io/noit/done/yet
|
|
fileAssociations:
|
|
# - ext: wails
|
|
# name: Wails
|
|
# description: Wails Application File
|
|
# iconName: wailsFileIcon
|
|
# role: Editor
|
|
# - ext: jpg
|
|
# name: JPEG
|
|
# description: Image File
|
|
# iconName: jpegFileIcon
|
|
# role: Editor
|
|
# mimeType: image/jpeg # (optional)
|
|
|
|
# Other data
|
|
other:
|
|
- name: My Other Data |