Skip to content

Commit e9d72c7

Browse files
committed
Version 0.4.3: Updated extension icon and marketplace documentation
- Optimized icon file size (9.56KB → 7.9KB) - Added proper marketplace installation instructions to README - Updated USER_GUIDE with marketplace install options - Added Quick Start section to README - Ready for marketplace republishing
1 parent a1b8443 commit e9d72c7

File tree

4 files changed

+40
-6
lines changed

4 files changed

+40
-6
lines changed

README.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,29 @@
66
[![VS Code Marketplace](https://img.shields.io/badge/VS%20Code-Marketplace-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ewc3labs.excel-power-query-editor)
77
[![Buy Me a Coffee](https://img.shields.io/badge/-Buy%20Me%20a%20Coffee-ffdd00?style=flat-square&logo=buy-me-a-coffee&logoColor=black)](https://www.buymeacoffee.com/ewc3labs)
88

9-
## 🚨 IMPORTANT: Install Required Extension
9+
## � Installation
10+
11+
### **From VS Code Marketplace (Recommended)**
12+
13+
1. **VS Code Extensions View**:
14+
- Open VS Code → Extensions (Ctrl+Shift+X)
15+
- Search for "Excel Power Query Editor"
16+
- Click Install
17+
18+
2. **Command Line**:
19+
```bash
20+
code --install-extension ewc3labs.excel-power-query-editor
21+
```
22+
23+
3. **Direct Link**: [Install from Marketplace](https://marketplace.visualstudio.com/items?itemName=ewc3labs.excel-power-query-editor)
24+
25+
### **Alternative: From VSIX File**
26+
Download and install a specific version manually:
27+
```bash
28+
code --install-extension excel-power-query-editor-[version].vsix
29+
```
30+
31+
## 🚨 IMPORTANT: Required Extension
1032

1133
**This extension requires the Microsoft Power Query / M Language extension for proper syntax highlighting and IntelliSense:**
1234

@@ -22,6 +44,14 @@ powerquery.vscode-powerquery
2244
- **⚙️ [Configuration Guide](CONFIGURATION.md)** - Quick reference for all settings
2345
- **📝 [Changelog](CHANGELOG.md)** - Version history and updates
2446

47+
## ⚡ Quick Start
48+
49+
1. **Install**: Search "Excel Power Query Editor" in Extensions view
50+
2. **Open Excel file**: Right-click `.xlsx`/`.xlsm` → "Extract Power Query from Excel"
51+
3. **Edit**: Modify the generated `.m` file with full VS Code features
52+
4. **Auto-Sync**: Right-click `.m` file → "Toggle Watch" for automatic sync on save
53+
5. **Enjoy**: Modern Power Query development workflow! 🎉
54+
2555
## Why This Extension?
2656

2757
Excel's Power Query editor is **painful to use**. This extension brings the **power of VS Code** to Power Query development:

USER_GUIDE.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ This VS Code extension provides a modern, reliable way to extract Power Query M
1212
powerquery.vscode-powerquery
1313
```
1414

15-
Install this extension via VS Code Extensions view or from a `.vsix` file:
16-
```bash
17-
code --install-extension excel-power-query-editor-[version].vsix
18-
```
15+
**Install from VS Code Marketplace (Recommended):**
16+
17+
1. **Extensions View**: Open VS Code → Extensions (`Ctrl+Shift+X`) → Search "Excel Power Query Editor" → Install
18+
2. **Command Line**: `code --install-extension ewc3labs.excel-power-query-editor`
19+
3. **Direct Link**: [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=ewc3labs.excel-power-query-editor)
20+
21+
**Alternative - VSIX File**: `code --install-extension excel-power-query-editor-[version].vsix`
22+
1923
*The Power Query extension will be automatically installed via Extension Pack.*
2024

2125
### 2. Extract Power Query from Excel
-1.67 KB
Loading

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "excel-power-query-editor",
33
"displayName": "Excel Power Query Editor",
44
"description": "Extract and sync Power Query M code from Excel files",
5-
"version": "0.4.2",
5+
"version": "0.4.3",
66
"publisher": "ewc3labs",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)