mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-01-25 05:38:07 -05:00
On hover on the Zerobyte version in the sidebar A card will appear to show the versions of the binaries (restic, rclone, shoutrrr)
5 lines
314 B
TypeScript
5 lines
314 B
TypeScript
export const APP_VERSION = import.meta.env.VITE_APP_VERSION || "dev";
|
|
export const RESTIC_VERSION = import.meta.env.VITE_RESTIC_VERSION || "unknown";
|
|
export const RCLONE_VERSION = import.meta.env.VITE_RCLONE_VERSION || "unknown";
|
|
export const SHOUTRRR_VERSION = import.meta.env.VITE_SHOUTRRR_VERSION || "unknown";
|