Theme preview/revert, theme editor enhancements, build and deploy updates

This commit is contained in:
IChooseYou
2026-02-12 12:37:09 -07:00
committed by sysadmin
parent e73b783cda
commit 4b1d3e9d3f
18 changed files with 548 additions and 120 deletions

View File

@@ -1,9 +1,9 @@
// rcx-mcp-stdio: Bridges stdin/stdout to QLocalSocket for MCP transport.
// Claude Desktop spawns this process; it connects to the rcx-mcp named pipe
// inside the running ReclassX application.
// inside the running Reclass application.
//
// stdin (from Claude) → QLocalSocket → McpBridge (in ReclassX)
// stdout (to Claude) ← QLocalSocket ← McpBridge (in ReclassX)
// stdin (from Claude) → QLocalSocket → McpBridge (in Reclass)
// stdout (to Claude) ← QLocalSocket ← McpBridge (in Reclass)
#include <QCoreApplication>
#include <QLocalSocket>
@@ -29,7 +29,7 @@ int main(int argc, char* argv[]) {
auto* socket = new QLocalSocket(&app);
QByteArray readBuf;
// Socket → stdout: forward lines from ReclassX to Claude Desktop
// Socket → stdout: forward lines from Reclass to Claude Desktop
QObject::connect(socket, &QLocalSocket::readyRead, [&]() {
readBuf.append(socket->readAll());
while (true) {