patch-cc 0.1.0__tar.gz → 0.1.1__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. {patch_cc-0.1.0 → patch_cc-0.1.1}/PKG-INFO +1 -1
  2. {patch_cc-0.1.0 → patch_cc-0.1.1}/pyproject.toml +1 -1
  3. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/__init__.py +1 -1
  4. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/menu.py +1 -1
  5. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/agents.py +1 -0
  6. {patch_cc-0.1.0 → patch_cc-0.1.1}/uv.lock +1 -1
  7. {patch_cc-0.1.0 → patch_cc-0.1.1}/.github/workflows/ci.yml +0 -0
  8. {patch_cc-0.1.0 → patch_cc-0.1.1}/.github/workflows/release.yml +0 -0
  9. {patch_cc-0.1.0 → patch_cc-0.1.1}/.gitignore +0 -0
  10. {patch_cc-0.1.0 → patch_cc-0.1.1}/LICENSE +0 -0
  11. {patch_cc-0.1.0 → patch_cc-0.1.1}/README.md +0 -0
  12. {patch_cc-0.1.0 → patch_cc-0.1.1}/docs/CONDUCT.md +0 -0
  13. {patch_cc-0.1.0 → patch_cc-0.1.1}/docs/INTERNALS.md +0 -0
  14. {patch_cc-0.1.0 → patch_cc-0.1.1}/docs/PLAYBOOK.md +0 -0
  15. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/__init__.py +0 -0
  16. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/blob.py +0 -0
  17. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/container.py +0 -0
  18. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/elf.py +0 -0
  19. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/errors.py +0 -0
  20. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/macho.py +0 -0
  21. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/cache.py +0 -0
  22. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/cli.py +0 -0
  23. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/doctor.py +0 -0
  24. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/locate.py +0 -0
  25. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patcher.py +0 -0
  26. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/__init__.py +0 -0
  27. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/base.py +0 -0
  28. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/chrome.py +0 -0
  29. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/output.py +0 -0
  30. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/streaming.py +0 -0
  31. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/thinking.py +0 -0
  32. {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/ui.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: patch-cc
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Interactive patcher for the Claude Code native binary
5
5
  Project-URL: Homepage, https://github.com/anfreire/patch-cc
6
6
  Project-URL: Repository, https://github.com/anfreire/patch-cc
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "patch-cc"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Interactive patcher for the Claude Code native binary"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -1,3 +1,3 @@
1
1
  """patch-cc: an interactive patcher for the Claude Code native binary."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "0.1.1"
@@ -906,7 +906,7 @@ class MenuApp:
906
906
  return seg_lines
907
907
 
908
908
  def _head(self, panel_width: int) -> list[Text]:
909
- title = Text("✳ patch-cc ✳", style=f"bold {_ACCENT}")
909
+ title = Text("patch-cc", style=f"bold {_ACCENT}")
910
910
  return [
911
911
  Text(""),
912
912
  _center(title, panel_width),
@@ -275,6 +275,7 @@ PATCHES = [
275
275
  summary="Show a subagent's Prompt block during normal use, not only in transcript mode.",
276
276
  group=GROUP_AGENTS,
277
277
  fn=_subagent_prompt,
278
+ default=False,
278
279
  anchors=('"Backgrounded agent"', 'action:"app:toggleTranscript"'),
279
280
  ),
280
281
  Patch(
@@ -256,7 +256,7 @@ wheels = [
256
256
 
257
257
  [[package]]
258
258
  name = "patch-cc"
259
- version = "0.1.0"
259
+ version = "0.1.1"
260
260
  source = { editable = "." }
261
261
  dependencies = [
262
262
  { name = "blessed" },
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