- Updated wails3 CLI to v3.0.0-alpha.74 - Added build/ios/, build/android/, build/docker/ from new template - Updated all platform Taskfiles (darwin, linux, windows) - Fixed Angular versions to ~20.3.16 - Root Taskfile with platform-aware build/package/run - Binary compiles and runs — system tray appears on macOS Co-Authored-By: Virgil <virgil@lethean.io>
11 lines
No EOL
298 B
Go
11 lines
No EOL
298 B
Go
//go:build ios
|
|
|
|
package main
|
|
|
|
import "github.com/wailsapp/wails/v3/pkg/application"
|
|
|
|
// modifyOptionsForIOS adjusts the application options for iOS
|
|
func modifyOptionsForIOS(opts *application.Options) {
|
|
// Disable signal handlers on iOS to prevent crashes
|
|
opts.DisableDefaultSignalHandler = true
|
|
} |