[client/ui] Replace fyne UI with Wails (rename ui-wails to ui)

Removes the legacy fyne-based client/ui implementation and renames the
Wails replacement (client/ui-wails) to take its place at client/ui. Go
imports, frontend bindings, CI workflows, goreleaser configs and the
windows .syso icon path are updated to follow the rename.
This commit is contained in:
Zoltán Papp
2026-05-11 11:20:22 +02:00
parent 08f52f4517
commit 9aef31ff53
189 changed files with 82 additions and 5840 deletions

View File

@@ -0,0 +1,18 @@
//go:build !linux || (linux && 386)
package main
import (
"errors"
"github.com/godbus/dbus/v5"
)
type xembedHost struct{}
func newXembedHost(_ *dbus.Conn, _ string, _ dbus.ObjectPath) (*xembedHost, error) {
return nil, errors.New("XEmbed tray not supported on this platform")
}
func (h *xembedHost) run() {}
func (h *xembedHost) stop() {}