mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2026-09-14 10:47:36 +00:00
Restores AI Assistant support for OpenAI-compatible endpoints on private IPs, loopback and Docker networks (LiteLLM, LM Studio, LocalAI, vLLM, OmniRoute, self-hosted proxies) and surfaces the server's error under the Load button (#325). Aligns the Secure Gateway wizard's Alpine template selection and pct create with the host's real architecture on x86_64 and arm64 (#324). Consolidates changes landing on develop: atomic notification delivery, custom SSH port for Borg remote targets (#236), optional GitHub API token for app version tracking (#306), and richer replication failure notifications.
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.6"
|