Skip to content

Commit 63677fb

Browse files
Testclaude
andcommitted
fix(installer): use correct NSIS MessageBox constant
- Change MB_ICONWARNING to MB_ICONEXCLAMATION (NSIS uses Win32 naming) - Fixes NSIS compilation error on line 740 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent a609b69 commit 63677fb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/installer/mcpb-installer.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ Function VerifyInstallation
737737
StrCpy $0 "$0Installation completed with warnings.$\r$\n"
738738
StrCpy $0 "$0MCPB installed successfully, but Claude Desktop$\r$\n"
739739
StrCpy $0 "$0integration was not configured."
740-
MessageBox MB_OK|MB_ICONWARNING "$0"
740+
MessageBox MB_OK|MB_ICONEXCLAMATION "$0"
741741
${EndIf}
742742
${EndIf}
743743
FunctionEnd

src/code_indexer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
HNSW graph indexing (O(log N) complexity).
77
"""
88

9-
__version__ = "8.4.40"
9+
__version__ = "8.4.41"
1010
__author__ = "Seba Battig"

0 commit comments

Comments
 (0)