etch-loop 0.5.3__tar.gz → 0.5.4__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.
- {etch_loop-0.5.3 → etch_loop-0.5.4}/PKG-INFO +1 -1
- {etch_loop-0.5.3 → etch_loop-0.5.4}/pyproject.toml +1 -1
- etch_loop-0.5.4/src/etch/__init__.py +1 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/display.py +2 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/loop.py +1 -0
- etch_loop-0.5.3/src/etch/__init__.py +0 -1
- {etch_loop-0.5.3 → etch_loop-0.5.4}/.github/workflows/workflow.yml +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/README.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/etch-loop/BREAK.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/etch-loop/ETCH.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/etch-loop/RUN.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/etch-loop/SCAN.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/agent.py +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/analyze.py +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/cli.py +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/git.py +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/prompt.py +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/report.py +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/signals.py +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/templates/BREAK.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/templates/ETCH.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/templates/RUN.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/src/etch/templates/SCAN.md +0 -0
- {etch_loop-0.5.3 → etch_loop-0.5.4}/uv.lock +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.5.4"
|
|
@@ -117,6 +117,7 @@ class EtchDisplay:
|
|
|
117
117
|
console=self._console,
|
|
118
118
|
refresh_per_second=15,
|
|
119
119
|
transient=False,
|
|
120
|
+
vertical_overflow="visible",
|
|
120
121
|
)
|
|
121
122
|
self._live.__enter__()
|
|
122
123
|
self._start_ticker()
|
|
@@ -345,6 +346,7 @@ class InitDisplay:
|
|
|
345
346
|
console=self._console,
|
|
346
347
|
refresh_per_second=15,
|
|
347
348
|
transient=False,
|
|
349
|
+
vertical_overflow="visible",
|
|
348
350
|
)
|
|
349
351
|
self._live.__enter__()
|
|
350
352
|
self._start_ticker()
|
|
@@ -210,6 +210,7 @@ def run(
|
|
|
210
210
|
# Focus the breaker only on files the fixer actually changed.
|
|
211
211
|
# This prevents the breaker from finding brand-new issues in
|
|
212
212
|
# untouched files, which causes the loop to thrash.
|
|
213
|
+
# In --no-git mode we can't determine changed files, so skip scoping.
|
|
213
214
|
effective_break_text = break_text
|
|
214
215
|
if not no_git:
|
|
215
216
|
recent_files = git.changed_files(since_commits=1)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.5.3"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|