Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Githubguy132010/devvy
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: Githubguy132010/devvy
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: devvy-2
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 19 commits
  • 167 files changed
  • 4 contributors

Commits on Dec 23, 2025

  1. Start from scratch

    Githubguy132010 committed Dec 23, 2025
    Configuration menu
    Copy the full SHA
    541977f View commit details
    Browse the repository at this point in the history
  2. Initial template

    Githubguy132010 committed Dec 23, 2025
    Configuration menu
    Copy the full SHA
    5344de4 View commit details
    Browse the repository at this point in the history
  3. Transform app into a prompt box UI with dark theme

    - Add multi-line textarea input with auto-expanding height
    - Implement message display with fade-in animations
    - Apply dark theme styling with responsive colors
    - Support wrapping for long messages
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 23, 2025
    Configuration menu
    Copy the full SHA
    6583010 View commit details
    Browse the repository at this point in the history
  4. Fix long message cutoff by enabling scrolling in messages container

    - Change overflow from hidden to auto in messages-container
    - Add visible scrollbars with dark theme styling
    - Improve text overflow handling with proper word breaking
    - Selectively hide scrollbars only on non-content elements
    - Maintain clean aesthetic while improving functionality
    Githubguy132010 committed Dec 23, 2025
    Configuration menu
    Copy the full SHA
    9bc3914 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2025

  1. Add keyboard shortcuts: Enter to send, Ctrl+Enter for new line

    - Implement handleKeyDown for textarea
    - Enter alone sends message
    - Shift+Enter uses default behavior for new line
    - Ctrl+Enter/Cmd+Enter manually inserts newline (Tauri compatibility)
    - Maintain cursor position after newline insertion
    Githubguy132010 committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    151d43e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    38ab528 View commit details
    Browse the repository at this point in the history
  3. Add custom confirmation dialog for chat deletion

    - Replace native confirm() with custom dialog component
    - Add ConfirmDialog component with TypeScript interfaces
    - Implement dialog state management with deleteDialog state
    - Add custom CSS styling for dialog with dark theme
    - Include smooth animations and hover effects
    - Show specific chat title in confirmation message
    - Fix lint warning by removing unused variable
    Githubguy132010 committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    1cb80c0 View commit details
    Browse the repository at this point in the history
  4. Add rename chat functionality with dialog

    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    55239ff View commit details
    Browse the repository at this point in the history
  5. Add settings view with chat preferences and keyboard shortcuts

    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    60ff446 View commit details
    Browse the repository at this point in the history
  6. Fix new chat navigation from settings and update settings button style

    - Fix: Switch to chat view when creating new chat from settings
    - Change settings button to icon-only display
    - Make settings button circular with centered icon
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    96acc0e View commit details
    Browse the repository at this point in the history
  7. Add Framer Motion animations throughout the app

    - Install framer-motion package
    - Add sidebar animations: staggered chat item slide-in, hover effects on buttons
    - Add message animations: scale and slide-up on new messages
    - Add dialog animations: fade overlay with scale/slide dialog
    - Add settings view animations: staggered section entry
    - Add view transition animations between chat and settings
    - Fix dialog centering by nesting dialog inside overlay
    - Fix prompt form centering with wrapper to separate positioning from animation
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    821aa87 View commit details
    Browse the repository at this point in the history
  8. Add glassmorphism effects throughout the app with circulating glow an…

    …imations
    
    - Add glass variables for consistent theming (blur, backgrounds, borders, shadows, glows)
    - Apply frosted glass effects to sidebar, buttons, dialogs, inputs, messages
    - Add gradient backgrounds and blur with backdrop-filter
    - Add shimmer animations and hover glow effects
    - Implement circulating glow animations on dialogs (6s cycle) and prompt form (4s cycle)
    - Update scrollbars with glass styling and blue accent
    - Add gradient text effects to headings
    - Enhance keyboard shortcuts with glass badges and hover animations
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    db77cc5 View commit details
    Browse the repository at this point in the history
  9. Add markdown rendering with syntax highlighting

    Add react-markdown and react-syntax-highlighter to render markdown
    messages with code highlighting. Create new directories for components,
    hooks, types, and utilities to support the feature.
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    f346bb6 View commit details
    Browse the repository at this point in the history
  10. Add CLAUDE.md with project architecture and development guidance

    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    6bc6476 View commit details
    Browse the repository at this point in the history
  11. Replace emoji icons with proper icon components throughout the app

    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
    Githubguy132010 and claude committed Dec 24, 2025
    Configuration menu
    Copy the full SHA
    aed45e0 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2025

  1. Configuration menu
    Copy the full SHA
    17c40e8 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2025

  1. Add comprehensive QWEN.md documentation file for Devvy project

    Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
    Githubguy132010 and qwencoder committed Dec 27, 2025
    Configuration menu
    Copy the full SHA
    d44ed96 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2026

  1. Configuration menu
    Copy the full SHA
    f5cca91 View commit details
    Browse the repository at this point in the history
  2. build(devcontainer): update Node.js and Bun installation methods

    - Replace direct apt install of Node.js with NVM and Node.js 25
    - Change Bun installation from npm to curl-based script for better setup
    - Update PATH environment variables accordingly
    
    This ensures a more flexible and up-to-date development environment in the devcontainer.
    Githubguy132010 authored Jan 1, 2026
    Configuration menu
    Copy the full SHA
    dfa9293 View commit details
    Browse the repository at this point in the history
Loading