mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2026-09-14 18:56:52 +00:00
Stable release consolidating the v1.2.4 beta cycle (1.2.4.1-beta and 1.2.4.2-beta) into 1.2.5. Highlights: - Apps dashboard: single launcher for every LXC-registered app and user-defined Custom Web Link, with category badges, search, sort and one-click deep-links back to the guest modal. - LXC Apps & Updates end-to-end: App tab inside every guest modal, upstream version tracking, and Easy Updates that cover OS packages, registered apps, Docker Engine and per-image updates on the same 24-hour cycle. - Application detection catalog with 380+ tracked workloads generated live from community-scripts across seven detector methods. - Monitor now speaks 8 languages: English, Spanish, German, French, Italian, Portuguese, Slovak and Swedish (i18n scaffolding by @vaso73). - NVIDIA multi-GPU passthrough by exact BDF so one card can be assigned to a VM while another stays operational on the host or LXC. - Navigation reorder, Memory & Swap real memory-pressure signal, native Pushover channel, Actions API, plus wide-reaching improvements across health, hardware, network, backup and post-install. Full release notes: see CHANGELOG.md and https://github.com/MacRimi/ProxMenux/releases
12 lines
542 B
TypeScript
12 lines
542 B
TypeScript
// Single source of truth for the app version displayed inside the
|
|
// Monitor. Every component that renders the version (dashboard footer,
|
|
// SMART report footer, release-notes modal…) imports from here so a
|
|
// version bump only has to be applied once per file lane:
|
|
//
|
|
// 1. AppImage/lib/version.ts ← this file
|
|
// 2. AppImage/package.json ← npm/Next.js metadata
|
|
// 3. beta_version.txt ← bash pipeline (build_appimage.sh)
|
|
//
|
|
// Keep the three in sync on every bump.
|
|
export const APP_VERSION = "1.2.5"
|