From 60fd563bf14c2d393111972c2e53ad2fded9061b Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Tue, 6 Jan 2026 21:49:07 +0800 Subject: [PATCH] bump version to v0.4.13 --- ui/src/domain/app.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/src/domain/app.ts b/ui/src/domain/app.ts index cff56a24..acc5a47e 100644 --- a/ui/src/domain/app.ts +++ b/ui/src/domain/app.ts @@ -1,10 +1,11 @@ import i18next from "i18next"; -// fallback policy: .env > git tag > "v0.0.0-dev" -export const APP_VERSION: string = "v" + (__APP_VERSION__ || "0.0.0-dev").replace(/^v/, ""); +export const APP_VERSION = "v" + (__APP_VERSION__ || "0.0.0-dev").replace(/^v/, ""); export const APP_REPO_URL = "https://github.com/certimate-go/certimate"; + export const APP_DOWNLOAD_URL = APP_REPO_URL + "/releases"; + export let APP_DOCUMENT_URL = "https://docs.certimate.me"; i18next.on("languageChanged", (language) => {