mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-30 14:16:38 +00:00
Stage 1 of the client/ui (Fyne) replacement. Adds a new client/ui-wails module that runs on Linux/macOS/Windows from a single React + Vite + Tailwind frontend driven by a thin gRPC services layer in Go. - Single-module integration (no submodule): merge Wails3 into root go.mod with build tags !android !ios !freebsd !js so cross-compiles on those targets exclude the package automatically. - Seven gRPC-bound services: Connection, Settings, Networks, Profiles, Debug, Update, Peers. Peers bridges Status polling and SubscribeEvents to the Wails event bus (netbird:status, netbird:event). - Tray + window shell mirrors the Fyne menu 1:1 with hide-on-close, SIGUSR1 / Windows named-event for external "show window" triggers. - React pages cover functional parity for Status, Settings (3 tabs), Networks (3 tabs), Profiles, Debug, Update, QuickActions, LoginUrl. - SVG-sourced tray icons (12 source SVGs incl. macOS template variants) rasterized to PNG via task common:generate:tray:icons. - Linux launcher sets WEBKIT_DISABLE_DMABUF_RENDERER=1 in the .desktop Exec= line and in task linux:run so the app renders correctly under RDP, VirtualBox, KVM, and bare WMs (Fluxbox/dwm) without DRM access.
55 lines
1.9 KiB
XML
55 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<MsixPackagingToolTemplate
|
|
xmlns="http://schemas.microsoft.com/msix/packaging/msixpackagingtool/template/2022">
|
|
<Settings
|
|
AllowTelemetry="false"
|
|
ApplyACLsToPackageFiles="true"
|
|
GenerateCommandLineFile="true"
|
|
AllowPromptForPassword="false">
|
|
</Settings>
|
|
<Installer
|
|
Path="netbird-ui"
|
|
Arguments=""
|
|
InstallLocation="C:\Program Files\NetBird\NetBird">
|
|
</Installer>
|
|
<PackageInformation
|
|
PackageName="NetBird"
|
|
PackageDisplayName="NetBird"
|
|
PublisherName="CN=NetBird"
|
|
PublisherDisplayName="NetBird"
|
|
Version="0.0.1.0"
|
|
PackageDescription="NetBird desktop client">
|
|
<Capabilities>
|
|
<Capability Name="runFullTrust" />
|
|
|
|
</Capabilities>
|
|
<Applications>
|
|
<Application
|
|
Id="io.netbird.client"
|
|
Description="NetBird desktop client"
|
|
DisplayName="NetBird"
|
|
ExecutableName="netbird-ui"
|
|
EntryPoint="Windows.FullTrustApplication">
|
|
|
|
</Application>
|
|
</Applications>
|
|
<Resources>
|
|
<Resource Language="en-us" />
|
|
</Resources>
|
|
<Dependencies>
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
|
</Dependencies>
|
|
<Properties>
|
|
<Framework>false</Framework>
|
|
<DisplayName>NetBird</DisplayName>
|
|
<PublisherDisplayName>NetBird</PublisherDisplayName>
|
|
<Description>NetBird desktop client</Description>
|
|
<Logo>Assets\AppIcon.png</Logo>
|
|
</Properties>
|
|
</PackageInformation>
|
|
<SaveLocation PackagePath="netbird-ui.msix" />
|
|
<PackageIntegrity>
|
|
<CertificatePath></CertificatePath>
|
|
</PackageIntegrity>
|
|
</MsixPackagingToolTemplate>
|