mirror of
https://github.com/hoornet/vega.git
synced 2026-04-24 06:40:01 -07:00
AppImage library bundling causes cascading compatibility failures on rolling-release distros (Arch, mesa 26+): libwayland-egl conflicts break EGL, removing it cascades into GLib version mismatches, and so on. Native packages sidestep this entirely. - tauri.conf.json: targets now ["deb","rpm","nsis","msi","dmg","updater"] — no AppImage - release.yml: drop LINUXDEPLOY_EXCLUDELIST workaround (no longer needed); update install instructions in release body - PKGBUILD: added for Arch/Manjaro users; builds from source via git tag; desktop entry sets WEBKIT_DISABLE_DMABUF_RENDERER=1 (required on Wayland) - README: install table updated with distro-specific commands Arch users: build from source with PKGBUILD or `npm run tauri build`. Ubuntu/Debian/Fedora/openSUSE: install the .deb or .rpm from Releases. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Wrystr",
|
|
"version": "0.1.5",
|
|
"identifier": "com.hoornet.wrystr",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Wrystr",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"minWidth": 900,
|
|
"minHeight": 600
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["deb", "rpm", "nsis", "msi", "dmg", "updater"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"plugins": {
|
|
"updater": {
|
|
"endpoints": [
|
|
"https://github.com/hoornet/wrystr/releases/latest/download/latest.json"
|
|
],
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDIwODYwNENEMjY2NEFCQkYKUldTL3EyUW16UVNHSUk2VXg5WXVZcDF2WUVFOU9kUWgyNjRsQzdoYjdwS0dra1VyUnhVK1EyY20K",
|
|
"dialog": false
|
|
}
|
|
}
|
|
}
|