Clide is being rebuilt as a Flutter desktop app. The Python Textual implementation moves wholesale into legacy/ rather than being deleted: its pane model, panel set, git skills, and panel communication design are real thought that should remain readable next to the new code while the rebuild finds its shape. Git's rename tracking preserves history, so `git log -- legacy/` still works. The Flutter rebuild lives at the repo root alongside a Go sidecar (the architecture claudian was heading toward, which folds into clide as a core component rather than a separate plugin project). Bootstrap of the new shape lands in subsequent commits. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
26 lines
842 B
Python
26 lines
842 B
Python
"""Textual widgets for Clide UI."""
|
|
|
|
from clide.widgets.components.branch_status import BranchStatus
|
|
from clide.widgets.components.diff_pane import DiffPane
|
|
from clide.widgets.components.editor_pane import EditorPane
|
|
from clide.widgets.components.files_view import FilesView
|
|
from clide.widgets.components.git_changes import GitChangesView
|
|
from clide.widgets.components.git_graph import GitGraphView
|
|
from clide.widgets.components.jira_view import JiraView
|
|
from clide.widgets.components.problems_view import ProblemsView
|
|
from clide.widgets.components.terminal_pane import TerminalPane
|
|
from clide.widgets.components.todos_view import TodosView
|
|
|
|
__all__ = [
|
|
"BranchStatus",
|
|
"DiffPane",
|
|
"EditorPane",
|
|
"FilesView",
|
|
"GitChangesView",
|
|
"GitGraphView",
|
|
"JiraView",
|
|
"ProblemsView",
|
|
"TerminalPane",
|
|
"TodosView",
|
|
]
|