2 Commits

Author SHA1 Message Date
Niko Syring 51c9bfb704 feat: migrate lipgloss v1 to v2 (charm.land/lipgloss/v2)
Replace github.com/charmbracelet/lipgloss v1.1.0 with charm.land/lipgloss/v2 v2.0.2.
lipgloss.Color changed from a type to a function, so all type signatures
now use color.Color from image/color. Local variables named `color` renamed
to `clr` to avoid shadowing the package import.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 06:20:24 +01:00
Niko Syring d41761d6e9 feat: complete Rust-to-Go rewrite with Bubbletea v2
Rewrites oxker from Rust/ratatui to Go/Bubbletea, migrated to the
Bubbletea v2 API (charm.land/bubbletea/v2). Removes all original Rust
source files and legacy Go modules (internal/ui, internal/input, bubbles).

Key changes:
- View() returns tea.View with declarative AltScreen and MouseMode
- KeyMsg → KeyPressMsg, MouseMsg → MouseClickMsg/WheelMsg/MotionMsg/ReleaseMsg
- execWriteKey rewritten for v2 key fields (Code/Mod/Text)
- Mouse toggle via View field instead of imperative commands
- Filter/search text input uses msg.Text for v2 space key compat

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 03:41:14 +01:00