dirlens 1.0.6 → 1.0.7

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 (3) hide show
  1. package/README.md +1 -1
  2. package/dirlens.py +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -102,7 +102,7 @@ Desktop/ (2 dirs, 2 files, 3.74 MB)
102
102
  ├── archive.zip (3 MB)
103
103
  └── readme.txt (50 KB)
104
104
 
105
- 5 ディレクトリ, 5 ファイル
105
+ 合計 5 ディレクトリ, 5 ファイル
106
106
  .py ×2 .txt ×1 .zip ×1 .png ×1
107
107
  ```
108
108
 
package/dirlens.py CHANGED
@@ -553,7 +553,7 @@ def main():
553
553
  render(str(target), "", 0, cfg, stats, active_pats)
554
554
 
555
555
  print()
556
- summary = f" {stats['dirs']} ディレクトリ, {stats['files']} ファイル"
556
+ summary = f" 合計 {stats['dirs']} ディレクトリ, {stats['files']} ファイル"
557
557
  if args.gitignore: summary += " (.gitignore 適用済み)"
558
558
  if cfg.type_ext: summary += f" (フィルタ: {cfg.type_ext})"
559
559
  if cfg.excludes: summary += f" (除外: {', '.join(cfg.excludes)})"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dirlens",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Directory tree viewer with file sizes / ファイルサイズ付きディレクトリツリー表示ツール",
5
5
  "bin": {
6
6
  "dirlens": "./bin/dirlens"