refactor: rename bundle identifiers to com.clawdis

This commit is contained in:
Peter Steinberger
2026-01-03 12:26:22 +01:00
parent daa1460502
commit 7165c8a7e5
153 changed files with 282 additions and 242 deletions

View File

@@ -6,7 +6,7 @@
set -euo pipefail
# Configuration
SUBSYSTEM="com.steipete.clawdis"
SUBSYSTEM="com.clawdis"
DEFAULT_LEVEL="info"
# Colors for output
@@ -58,7 +58,7 @@ DESCRIPTION:
Requires sudo access configured for /usr/bin/log command.
LOG FLOW ARCHITECTURE:
Clawdis logs flow through the macOS unified log (subsystem: com.steipete.clawdis).
Clawdis logs flow through the macOS unified log (subsystem: com.clawdis).
LOG CATEGORIES (examples):
• voicewake - Voice wake detection/test harness

View File

@@ -8,7 +8,7 @@ ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
APP_ROOT="$ROOT_DIR/dist/Clawdis.app"
BUILD_ROOT="$ROOT_DIR/apps/macos/.build"
PRODUCT="Clawdis"
BUNDLE_ID="${BUNDLE_ID:-com.steipete.clawdis.debug}"
BUNDLE_ID="${BUNDLE_ID:-com.clawdis.mac.debug}"
PKG_VERSION="$(cd "$ROOT_DIR" && node -p "require('./package.json').version" 2>/dev/null || echo "0.0.0")"
BUILD_TS=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
GIT_COMMIT=$(cd "$ROOT_DIR" && git rev-parse --short HEAD 2>/dev/null || echo "unknown")

View File

@@ -9,7 +9,7 @@ APP_PROCESS_PATTERN="Clawdis.app/Contents/MacOS/Clawdis"
DEBUG_PROCESS_PATTERN="${ROOT_DIR}/apps/macos/.build/debug/Clawdis"
LOCAL_PROCESS_PATTERN="${ROOT_DIR}/apps/macos/.build-local/debug/Clawdis"
RELEASE_PROCESS_PATTERN="${ROOT_DIR}/apps/macos/.build/release/Clawdis"
LAUNCH_AGENT="${HOME}/Library/LaunchAgents/com.steipete.clawdis.plist"
LAUNCH_AGENT="${HOME}/Library/LaunchAgents/com.clawdis.mac.plist"
LOCK_KEY="$(printf '%s' "${ROOT_DIR}" | shasum -a 256 | cut -c1-8)"
LOCK_DIR="${TMPDIR:-/tmp}/clawdis-restart-${LOCK_KEY}"
LOCK_PID_FILE="${LOCK_DIR}/pid"
@@ -103,7 +103,7 @@ kill_all_clawdis() {
}
stop_launch_agent() {
launchctl bootout gui/"$UID"/com.steipete.clawdis 2>/dev/null || true
launchctl bootout gui/"$UID"/com.clawdis.mac 2>/dev/null || true
}
# 1) Kill all running instances first.