mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-16 15:45:50 +01:00
This commit integrates iOS platform support for Wails v3, adapting the iOS-specific code to work with the new transport layer architecture. Key changes: - Add iOS-specific application, webview, and runtime files - Add iOS event types and processing - Add iOS examples and templates - Update messageprocessor to handle iOS requests - Move badge_ios.go to dock package Note: The iOS branch was based on an older v3-alpha and required significant conflict resolution due to the transport layer refactor (PR #4702). Some iOS-specific code may need further adaptation: - processIOSMethod needs to be implemented with new RuntimeRequest signature - iOS event generation in tasks/events/generate.go needs updating 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
77 lines
No EOL
2.3 KiB
YAML
77 lines
No EOL
2.3 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: "My Company" # The name of the company
|
|
productName: "My Product" # The name of the application
|
|
productIdentifier: "com.mycompany.myproduct" # The unique product identifier
|
|
description: "A program that does X" # The application description
|
|
copyright: "(c) 2025, My Company" # Copyright text
|
|
comments: "Some Product Comments" # Comments
|
|
version: "0.0.1" # The application version
|
|
|
|
# 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
|
|
watched_extension:
|
|
- "*.go"
|
|
git_ignore: true
|
|
executes:
|
|
- cmd: wails3 task common:install:frontend:deps
|
|
type: once
|
|
- cmd: wails3 task common:dev:frontend
|
|
type: background
|
|
- cmd: go mod tidy
|
|
type: blocking
|
|
- cmd: wails3 task build
|
|
type: blocking
|
|
- 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 |