Skip to content

Commit 7a2d2fd

Browse files
committed
fix: v1.4.1 - Command palette completeness and consistency
- Added missing 'paths-le.postProcess.dedupe' and 'paths-le.postProcess.sort' commands to command palette - Fixed command palette inconsistency where dedupe and sort commands were defined but not accessible - All post-processing commands now accessible via command palette for consistent workflow - Maintained 100% backward compatibility with existing installations Package: paths-le-1.4.1.vsix (2.41 MB, 375 files)
1 parent d9ba9be commit 7a2d2fd

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to Paths-LE will be documented here.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.1] - 2025-01-27
9+
10+
### Fixed
11+
12+
- **Command palette completeness** - Added missing `paths-le.postProcess.dedupe` and `paths-le.postProcess.sort` commands to command palette
13+
- **User experience** - All post-processing commands now accessible via command palette for consistent workflow
14+
15+
### Technical
16+
17+
- Fixed command palette inconsistency where dedupe and sort commands were defined but not accessible
18+
- Maintained 100% backward compatibility with existing installations
19+
820
## [1.4.0] - 2025-01-27
921

1022
### Added

package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "nolindnaidoo",
44
"displayName": "Paths-LE",
55
"description": "Zero Hassle file path extraction and analysis from JavaScript, TypeScript, JSON, HTML, CSS, TOML, CSV, and ENV files",
6-
"version": "1.4.0",
6+
"version": "1.4.1",
77
"license": "MIT",
88
"author": {
99
"name": "Nolin D Naidoo",
@@ -130,6 +130,12 @@
130130
{
131131
"command": "paths-le.extractPaths"
132132
},
133+
{
134+
"command": "paths-le.postProcess.dedupe"
135+
},
136+
{
137+
"command": "paths-le.postProcess.sort"
138+
},
133139
{
134140
"command": "paths-le.openSettings"
135141
},

0 commit comments

Comments
 (0)