From a1b2e36a5dbfdf1ae38c07aea6b9fd557efdb33e Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Thu, 18 Sep 2025 11:55:01 -0400 Subject: [PATCH] fix installer --- install/main.go | 2 +- server/lib/consts.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/main.go b/install/main.go index 42bd621d..1f7213a1 100644 --- a/install/main.go +++ b/install/main.go @@ -220,7 +220,7 @@ func main() { } } - if !config.HybridMode && checkIsPangolinInstalledWithHybrid() { + if !config.HybridMode { // Setup Token Section fmt.Println("\n=== Setup Token ===") diff --git a/server/lib/consts.ts b/server/lib/consts.ts index 30efc07e..506c1c8d 100644 --- a/server/lib/consts.ts +++ b/server/lib/consts.ts @@ -2,7 +2,7 @@ import path from "path"; import { fileURLToPath } from "url"; // This is a placeholder value replaced by the build process -export const APP_VERSION = "1.10.0"; +export const APP_VERSION = "1.10.1"; export const __FILENAME = fileURLToPath(import.meta.url); export const __DIRNAME = path.dirname(__FILENAME);