On hover on the Zerobyte version in the sidebar A card will appear to show the versions of the binaries (restic, rclone, shoutrrr)
4 lines
314 B
TypeScript
4 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";
|