- 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>
10 lines
No EOL
246 B
Go
10 lines
No EOL
246 B
Go
//go:build !ios
|
|
|
|
package main
|
|
|
|
import "github.com/wailsapp/wails/v3/pkg/application"
|
|
|
|
// modifyOptionsForIOS is a no-op on non-iOS platforms
|
|
func modifyOptionsForIOS(opts *application.Options) {
|
|
// No modifications needed for non-iOS platforms
|
|
} |