You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,33 @@ All notable changes to **Gittxt** will be documented in this file.
4
4
5
5
---
6
6
7
+
## [1.7.0] - 2025-04-03
8
+
9
+
### 🧠 Config & Logging Enhancements
10
+
- Config file (`gittxt-config.json`) is now consistently stored in `src/gittxt/` instead of a nested `config/` folder.
11
+
- Log file (`gittxt.log`) is now created inside `src/gittxt/` and uses a rotating file handler for stability.
12
+
- CLI installer (`gittxt install`) updated to write to the correct config location using `ConfigManager`.
13
+
- Logging system now includes both stream and file output, and supports flexible format styles (`plain`, `json`, `colored`).
14
+
15
+
### ⚙️ CLI Restructure
16
+
- Combined `cli_install.py` and `cli_filters.py` into a new `cli_config.py` group with:
17
+
-`gittxt config install` → interactive installer
18
+
-`gittxt config filters` → subcommands for managing include/exclude patterns
19
+
20
+
### 📦 Formatter & ZIP Behavior
21
+
- Updated `text_formatter.py` and `markdown_formatter.py`:
22
+
- Fixed missing `.strip()` on raw file content
23
+
- Fixed malformed Markdown links for non-textual assets
24
+
- Validated that ZIP formatter bundles only current scan session outputs (no stale content), and follows expected behavior of full output capture per scan.
25
+
26
+
### 🧹 Repository & Scanner Improvements
27
+
- GitHub repositories now auto-detect their default branch (e.g., `main`, `master`, `dev`) if `--branch` is not specified.
28
+
- Scanner now logs a summary of accepted/skipped/non-textual files.
29
+
- Added warning when no textual files pass filters to prevent empty outputs.
30
+
- Cleaned up pattern matching explanations (glob-only, no regex) for better CLI usability.
0 commit comments