Commit graph

7 commits

Author SHA1 Message Date
Claude
3b392f2f50
feat: Add licensing system for commercial use
Implements a complete licensing system following the Yaak-inspired model:
- Open source code (MIT), licensed binaries for commercial use
- Personal use is always free
- Individual ($6/mo) and Team ($10/user/mo) plans
- Perpetual fallback: users keep their version when subscription ends
- Honor system enforcement with 30-day offline grace period

Key components:
- License service in main process with encrypted local storage
- License IPC handlers for check, activate, deactivate operations
- License store (Zustand) for state management
- UI components: status indicator, activation modal, settings modal
- Integration with app header and settings page

The implementation includes offline activation for development/testing
and prepares for integration with a license server (Stripe/Lemon Squeezy).
2025-11-29 03:19:40 +00:00
Claude
c77a67a0b3
feat: add MySQL database support
- Add mysql2 package for MySQL connectivity
- Create database adapter interface with PostgreSQL and MySQL implementations
- Update ConnectionConfig to include dbType field for database type selection
- Refactor IPC handlers to use adapters for database-agnostic operations
- Update connection dialog with database type selector (PostgreSQL/MySQL)
- Support MySQL-specific schema fetching, DDL reverse engineering, and EXPLAIN
- Add MySQL type code to human-readable name mapping
- Ensure backward compatibility for existing PostgreSQL connections
2025-11-28 15:36:39 +00:00
Rohith Gilla
0365a64af8 feat: add web app 2025-11-28 20:29:49 +05:30
Rohith Gilla
98ee74257e feat: add inline data editing with database-agnostic SQL generation
- Add edit mode toggle for table-preview tabs with visual indicators
- Implement cell editing with type-aware inputs (text, number, date, boolean)
- Support row deletion (mark for deletion) and new row insertion
- Build parameterized SQL queries for PostgreSQL, MySQL, and SQLite dialects
- Add SQL preview modal before committing changes
- Execute edits in transactions with rollback on error
- Extract JsonCellValue and FKCellValue to shared components
- Add edit-store for managing edit state per tab

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 13:39:04 +05:30
Rohith Gilla
41e432305a feat: stackable data viewer 2025-11-28 12:46:54 +05:30
Rohith Gilla
69248610b7 feat: working state 2025-11-28 08:27:08 +05:30
Rohith Gilla
703c850744 🚀 chore: init commit 2025-11-26 15:53:53 +05:30