Skip to content

Commit 09e04b1

Browse files
committed
feat(docs): enhance README with badges and icons, add comprehensive documentation
1 parent e8322e4 commit 09e04b1

File tree

13 files changed

+3248
-199
lines changed

13 files changed

+3248
-199
lines changed

.vscodeignore

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Build outputs
2+
out/test/**
3+
out/**/test/**
4+
src/**
5+
tsconfig.json
6+
7+
# Development files
8+
.vscode-test/**
9+
.vscode/**
10+
**/.eslintrc.json
11+
**/tsconfig.json
12+
13+
# Dependencies
14+
node_modules/
15+
pnpm-lock.yaml
16+
17+
# Git and GitHub
18+
.git/**
19+
.github/**
20+
.gitignore
21+
.gitattributes
22+
23+
# Documentation (keep only README.md)
24+
DEVELOPMENT.md
25+
CHANGELOG.md
26+
27+
# Test files
28+
**/test/**
29+
**/*.test.ts
30+
**/*.test.js
31+
32+
# Configuration files
33+
*.vsix
34+
35+
# Logs
36+
*.log
37+
logs/
38+
39+
# Temporary files
40+
*.tmp
41+
*.temp
42+
.DS_Store
43+
Thumbs.db

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog
2+
3+
All notable changes to the "Command Dock" extension will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Added
11+
- Initial release of Command Dock extension
12+
- Custom button panel in Explorer sidebar
13+
- Add, edit, and remove custom buttons
14+
- Execute terminal commands with one click
15+
- Button management with icons and configuration
16+
- Settings integration for persistent button storage
17+
18+
### Changed
19+
20+
### Deprecated
21+
22+
### Removed
23+
24+
### Fixed
25+
26+
### Security
27+
28+
## [0.0.1] - 2024-01-XX
29+
30+
### Added
31+
- Initial extension setup
32+
- Basic command execution functionality
33+
- Panel provider for custom buttons
34+
- Configuration management
35+
- UI handlers for button operations

0 commit comments

Comments
 (0)