From 10b49f70702c24c5515fccf6286946af8bf00db2 Mon Sep 17 00:00:00 2001 From: fayerman-source Date: Sat, 7 Feb 2026 17:19:26 -0500 Subject: [PATCH] fix: Update INSTALL.ts version strings from 2.4 to 2.5 The v2.5 release INSTALL.ts had hardcoded "2.4" version strings, causing fresh installs to report the wrong PAI version in settings.json and the statusline. Fixes #546 --- Releases/v2.5/.claude/INSTALL.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Releases/v2.5/.claude/INSTALL.ts b/Releases/v2.5/.claude/INSTALL.ts index 4393bb862..9e4b9cf6f 100755 --- a/Releases/v2.5/.claude/INSTALL.ts +++ b/Releases/v2.5/.claude/INSTALL.ts @@ -295,7 +295,7 @@ function generateSettingsJson(config: InstallConfig): object { return { "$schema": "https://json.schemastore.org/claude-code-settings.json", - "paiVersion": "2.4", + "paiVersion": "2.5", "env": { "PAI_DIR": `${HOME}/.claude`, "PROJECTS_DIR": config.PROJECTS_DIR || "", @@ -330,7 +330,7 @@ function generateSettingsJson(config: InstallConfig): object { }, "pai": { "repoUrl": "github.com/danielmiessler/PAI", - "version": "2.4" + "version": "2.5" }, "techStack": { "browser": "arc",