Commit Graph

9 Commits

  • Release v0.1.1
    - Update version to 0.1.1
    - Fix auto-update configuration (GitHub repository path)
    - Optimize release workflow for platform-specific installers
    - Add detailed release notes template
    
    Co-authored-by: Cursor <cursoragent@cursor.com>
  • chore(dependencies): add @testing-library/jest-dom to package.json and pnpm-lock.yaml
    - Included @testing-library/jest-dom version 6.9.1 to enhance testing capabilities.
    - Updated pnpm-lock.yaml to reflect the new dependency and its resolution details.
    - Removed unused version click handling from Sidebar component to streamline code.
  • chore(lint): remove ESLint configuration file and update lint scripts
    - Deleted the .eslintrc.cjs file to simplify configuration management.
    - Updated lint scripts in package.json to remove unnecessary extensions for linting.
    - Added new devDependencies for ESLint and globals to enhance linting capabilities.
  • feat(gateway): integrate OpenClaw as git submodule
    - Add OpenClaw as git submodule at ./openclaw/
    - Update GatewayManager to start gateway from submodule path
    - Support both production (dist) and development (pnpm dev) modes
    - Add IPC handler for OpenClaw status check
    - Update Setup wizard to check real OpenClaw submodule status
    - Configure electron-builder to include submodule in packaged app
    - Add npm scripts for submodule management:
      - postinstall: auto-init submodule
      - openclaw:init: initialize and install dependencies
      - openclaw:install: install dependencies only
      - openclaw:build: build OpenClaw
      - openclaw:update: update to latest version
  • feat(chat): enhance chat interface with markdown support
    - Add markdown rendering with react-markdown and remark-gfm
    - Create ChatMessage component with code copy functionality
    - Add typing indicator animation during AI response
    - Create welcome screen for new users
    - Add Textarea component for multi-line input
    - Improve message styling with avatars and hover actions
    - Add Gateway connection status awareness
    - Add prose styling for markdown content
  • build(packaging): set up multi-platform packaging and CI/CD
    - Add GitHub Actions workflows for CI and releases
    - Create icon generation script and SVG source
    - Configure electron-builder for macOS, Windows, Linux
    - Add macOS entitlements for code signing
    - Add Linux post-install/remove scripts
    - Enhance package.json with publishing scripts
    - Add artifact naming convention
  • feat(core): initialize project skeleton with Electron + React + TypeScript
    Set up the complete project foundation for ClawX, a graphical AI assistant:
    
    - Electron main process with IPC handlers, menu, tray, and gateway management
    - React renderer with routing, layout components, and page scaffolding
    - Zustand state management for gateway, settings, channels, skills, chat, and cron
    - shadcn/ui components with Tailwind CSS and CSS variable theming
    - Build tooling with Vite, electron-builder, and TypeScript configuration
    - Testing setup with Vitest and Playwright
    - Development configurations (ESLint, Prettier, gitignore, env example)