Skip to content

v1.2.0

Compare
Choose a tag to compare
@fuzionix fuzionix released this 05 Jan 13:34
· 10 commits to main since this release

File Tree Extractor v1.2.0 Release Notes

I'm excited to announce the release of File Tree Extractor v1.2.0, which introduces new directory filtering options and hidden file handling capabilities.

New Features

Directory-Only

Added new directoryOnly option to show only directories in the tree structure

"fileTreeExtractor.directoryOnly": true,
project/
├─ src/
│  ├─ components/
│  └─ services/
├─ tests/
└─ docs/

Hidden Files Control

New showHiddenFiles option to control visibility of files starting with a dot for customizing whether to show or hide configuration files like .git, .env, etc.

"fileTreeExtractor.showHiddenFiles": true,
project/
├─ .git/
├─ .gitignore
├─ .env
├─ src/
│  ├─ index.js
│  └─ .eslintrc
└─ package.json

Improvements

  • Added specific error messages for permission-related issues
  • Improved validation for all configuration options

Installation

To upgrade to this version, please update your VS Code extension through the Visual Studio Code Marketplace or run ext install fileTreeExtractor in VS Code.

Documentation