forestui 0.9.6__tar.gz → 0.9.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. {forestui-0.9.6 → forestui-0.9.7}/PKG-INFO +1 -1
  2. forestui-0.9.7/doc/screenshot_small.png +0 -0
  3. {forestui-0.9.6 → forestui-0.9.7}/forestui/components/sidebar.py +0 -1
  4. {forestui-0.9.6 → forestui-0.9.7}/forestui/theme.py +2 -9
  5. {forestui-0.9.6 → forestui-0.9.7}/pyproject.toml +1 -1
  6. forestui-0.9.6/doc/screenshot_small.png +0 -0
  7. {forestui-0.9.6 → forestui-0.9.7}/.github/workflows/publish.yml +0 -0
  8. {forestui-0.9.6 → forestui-0.9.7}/.gitignore +0 -0
  9. {forestui-0.9.6 → forestui-0.9.7}/.pre-commit-config.yaml +0 -0
  10. {forestui-0.9.6 → forestui-0.9.7}/.python-version +0 -0
  11. {forestui-0.9.6 → forestui-0.9.7}/CLAUDE.md +0 -0
  12. {forestui-0.9.6 → forestui-0.9.7}/Makefile +0 -0
  13. {forestui-0.9.6 → forestui-0.9.7}/README.md +0 -0
  14. {forestui-0.9.6 → forestui-0.9.7}/forestui/__init__.py +0 -0
  15. {forestui-0.9.6 → forestui-0.9.7}/forestui/__main__.py +0 -0
  16. {forestui-0.9.6 → forestui-0.9.7}/forestui/app.py +0 -0
  17. {forestui-0.9.6 → forestui-0.9.7}/forestui/cli.py +0 -0
  18. {forestui-0.9.6 → forestui-0.9.7}/forestui/components/__init__.py +0 -0
  19. {forestui-0.9.6 → forestui-0.9.7}/forestui/components/messages.py +0 -0
  20. {forestui-0.9.6 → forestui-0.9.7}/forestui/components/modals.py +0 -0
  21. {forestui-0.9.6 → forestui-0.9.7}/forestui/components/repository_detail.py +0 -0
  22. {forestui-0.9.6 → forestui-0.9.7}/forestui/components/worktree_detail.py +0 -0
  23. {forestui-0.9.6 → forestui-0.9.7}/forestui/models.py +0 -0
  24. {forestui-0.9.6 → forestui-0.9.7}/forestui/services/__init__.py +0 -0
  25. {forestui-0.9.6 → forestui-0.9.7}/forestui/services/claude_session.py +0 -0
  26. {forestui-0.9.6 → forestui-0.9.7}/forestui/services/git.py +0 -0
  27. {forestui-0.9.6 → forestui-0.9.7}/forestui/services/github.py +0 -0
  28. {forestui-0.9.6 → forestui-0.9.7}/forestui/services/settings.py +0 -0
  29. {forestui-0.9.6 → forestui-0.9.7}/forestui/services/tmux.py +0 -0
  30. {forestui-0.9.6 → forestui-0.9.7}/forestui/state.py +0 -0
  31. {forestui-0.9.6 → forestui-0.9.7}/install.sh +0 -0
  32. {forestui-0.9.6 → forestui-0.9.7}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: forestui
3
- Version: 0.9.6
3
+ Version: 0.9.7
4
4
  Summary: A Terminal UI for managing Git worktrees
5
5
  Author: cadu
6
6
  Keywords: git,terminal,textual,tui,worktree
Binary file
@@ -117,7 +117,6 @@ class Sidebar(Static):
117
117
  """Compose the sidebar UI."""
118
118
  # App header box
119
119
  with Vertical(id="sidebar-header-box"):
120
- yield Label("forestui", id="sidebar-title")
121
120
  yield Label(f"gh cli: {self._gh_status}", id="gh-status")
122
121
  # Tree view
123
122
  tree: Tree[RepoNode | WorktreeNode | ArchivedNode] = Tree(
@@ -538,18 +538,11 @@ Container {
538
538
  /* Sidebar Header Box */
539
539
  #sidebar-header-box {
540
540
  width: 100%;
541
- height: 4;
541
+ height: 3;
542
542
  background: $bg-elevated;
543
543
  border-bottom: solid $border;
544
544
  align: center middle;
545
- padding: 0;
546
- }
547
-
548
- #sidebar-title {
549
- text-align: center;
550
- width: 100%;
551
- color: $accent;
552
- text-style: bold;
545
+ padding: 1 0 0 0;
553
546
  }
554
547
 
555
548
  #gh-status {
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "forestui"
3
- version = "0.9.6"
3
+ version = "0.9.7"
4
4
  description = "A Terminal UI for managing Git worktrees"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.14"
Binary file
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes