Skip to content

Commit b65e9cf

Browse files
committed
� Enhance RC release discoverability
- Add beta/nightly download section to README - Include latest pre-release badge with direct link - Create comprehensive BETA_DOWNLOADS.md guide - Improve release notes with multiple install options - Add command-line download examples - Link beta downloads from main documentation Makes RC releases more discoverable for users wanting early access
1 parent 5a4036a commit b65e9cf

File tree

3 files changed

+101
-4
lines changed

3 files changed

+101
-4
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,27 @@ jobs:
192192
${{ steps.changelog.outputs.changelog }}
193193
194194
### 📦 Installation:
195-
Download the `.vsix` file and install via VS Code:
195+
196+
**Option 1: Download and Install**
197+
1. Download the `.vsix` file below
198+
2. Install via VS Code: `code --install-extension excel-power-query-editor-*.vsix`
199+
200+
**Option 2: Command Line**
196201
```bash
197-
code --install-extension excel-power-query-editor-*.vsix
202+
# Download latest pre-release
203+
curl -L -o excel-power-query-editor.vsix "https://github.com/ewc3labs/excel-power-query-editor/releases/latest/download/excel-power-query-editor-${{ needs.determine-release.outputs.version }}-${{ needs.determine-release.outputs.release_type }}.vsix"
204+
205+
# Install
206+
code --install-extension excel-power-query-editor.vsix
198207
```
199208
200209
### 🧪 Testing Status:
201-
✅ All 63 tests passing across Node 22/24 on Ubuntu/Windows/macOS
210+
✅ All 71 tests passing across Node 22/24 on Ubuntu/Windows/macOS
211+
212+
### 🔄 What's Next?
213+
- ⭐ **Feedback?** [Create an issue](https://github.com/ewc3labs/excel-power-query-editor/issues/new)
214+
- 📚 **Documentation:** [User Guide](https://github.com/ewc3labs/excel-power-query-editor#readme)
215+
- 🚀 **Stable Release:** Coming soon to VS Code Marketplace
202216
203217
---
204218
**Need help?** Check out our [documentation](https://github.com/ewc3labs/excel-power-query-editor#readme) or [report issues](https://github.com/ewc3labs/excel-power-query-editor/issues).

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ A modern, reliable VS Code extension for editing Power Query M code directly fro
44

55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
66
[![VS Code](https://img.shields.io/badge/VS_Code-Marketplace-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ewc3labs.excel-power-query-editor)
7+
[![Latest Release](https://img.shields.io/github/v/release/ewc3labs/excel-power-query-editor)](https://github.com/ewc3labs/excel-power-query-editor/releases/latest)
8+
[![Latest Pre-release](https://img.shields.io/github/v/release/ewc3labs/excel-power-query-editor?include_prereleases&label=pre-release)](https://github.com/ewc3labs/excel-power-query-editor/releases)
79
[![Buy Me a Coffee](https://img.shields.io/badge/Buy%20Me%20a%20Coffee-yellow?logo=buy-me-a-coffee&logoColor=white)](https://www.buymeacoffee.com/ewc3labs)
810

911
---
@@ -22,10 +24,16 @@ A modern, reliable VS Code extension for editing Power Query M code directly fro
2224

2325
### 1. Install
2426

27+
**Stable Release:**
2528
- Open VS Code → Extensions (`Ctrl+Shift+X`)
2629
- Search for **"Excel Power Query Editor"**
2730
- Click **Install**
2831

32+
**Beta/Nightly Builds:**
33+
- Download the latest `.vsix` from [Releases](https://github.com/ewc3labs/excel-power-query-editor/releases)
34+
- Install via: `code --install-extension excel-power-query-editor-*.vsix`
35+
- Get early access to new features and fixes!
36+
2937
### 2. Extract & Edit
3038

3139
- Right-click any Excel file → **"Extract Power Query from Excel"**
@@ -53,7 +61,10 @@ Power Query development in Excel is often slow, opaque, and painful. This extens
5361

5462
## 📚 Documentation & Support
5563

56-
For complete documentation, source code, issue reporting, or to fork your own version, visit the [GitHub repo](https://github.com/ewc3labs/excel-power-query-editor).
64+
- 📖 **[Complete Documentation](https://github.com/ewc3labs/excel-power-query-editor)**
65+
- 🧪 **[Beta Downloads & Nightly Builds](docs/BETA_DOWNLOADS.md)** - Get early access!
66+
- 🐛 **[Report Issues](https://github.com/ewc3labs/excel-power-query-editor/issues)**
67+
- 💬 **[Discussions](https://github.com/ewc3labs/excel-power-query-editor/discussions)**
5768

5869
---
5970

docs/BETA_DOWNLOADS.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# 🧪 Beta Downloads & Nightly Builds
2+
3+
Get early access to the latest features and fixes before they hit the VS Code Marketplace!
4+
5+
## 🚀 Quick Install
6+
7+
[![Latest Pre-release](https://img.shields.io/github/v/release/ewc3labs/excel-power-query-editor?include_prereleases&label=latest%20beta)](https://github.com/ewc3labs/excel-power-query-editor/releases)
8+
9+
**One-click download:**
10+
- [📦 Latest Beta VSIX](https://github.com/ewc3labs/excel-power-query-editor/releases/latest/download/excel-power-query-editor-prerelease.vsix) *(may not work due to GitHub's naming)*
11+
12+
**Reliable method:**
13+
1. Go to [Releases](https://github.com/ewc3labs/excel-power-query-editor/releases)
14+
2. Download the latest `.vsix` file from a "Pre-release" entry
15+
3. Install: `code --install-extension excel-power-query-editor-*.vsix`
16+
17+
## 🔄 Auto-Update Script
18+
19+
Save this as `update-excel-pq-beta.sh` (or `.bat` for Windows):
20+
21+
```bash
22+
#!/bin/bash
23+
# Download and install latest Excel Power Query Editor beta
24+
25+
echo "🔍 Fetching latest beta release..."
26+
LATEST_URL=$(curl -s https://api.github.com/repos/ewc3labs/excel-power-query-editor/releases | jq -r '.[0].assets[0].browser_download_url')
27+
28+
if [[ "$LATEST_URL" != "null" ]]; then
29+
echo "📦 Downloading: $LATEST_URL"
30+
curl -L -o excel-power-query-editor-beta.vsix "$LATEST_URL"
31+
32+
echo "🚀 Installing..."
33+
code --install-extension excel-power-query-editor-beta.vsix
34+
35+
echo "✅ Beta installed! Restart VS Code to use."
36+
rm excel-power-query-editor-beta.vsix
37+
else
38+
echo "❌ Could not fetch latest release"
39+
fi
40+
```
41+
42+
## 📋 What's in Beta?
43+
44+
Beta releases include:
45+
- 🆕 **New Features** - Latest functionality before marketplace release
46+
- 🐛 **Bug Fixes** - Immediate fixes for reported issues
47+
-**Performance Improvements** - Speed and reliability enhancements
48+
- 🧪 **Experimental Features** - Try cutting-edge capabilities
49+
50+
## ⚠️ Beta Considerations
51+
52+
- **Stability:** Generally stable, but may have occasional issues
53+
- **Feedback:** Please [report any bugs](https://github.com/ewc3labs/excel-power-query-editor/issues/new) you find!
54+
- **Updates:** New betas released automatically when code is pushed
55+
- **Rollback:** Keep stable version handy in case you need to revert
56+
57+
## 🔗 Beta Release Channels
58+
59+
- **🏷️ Release Candidates (RC):** `v0.5.0-rc.1`, `v0.5.0-rc.2` - Near-final versions
60+
- **🌙 Nightly Builds:** Automatic builds from latest `release/` branch commits
61+
- **🔥 Hotfixes:** Critical fixes released immediately as needed
62+
63+
## 📞 Support
64+
65+
Having issues with a beta?
66+
- [📋 Check existing issues](https://github.com/ewc3labs/excel-power-query-editor/issues)
67+
- [🆕 Report new bugs](https://github.com/ewc3labs/excel-power-query-editor/issues/new)
68+
- [💬 Discussion forum](https://github.com/ewc3labs/excel-power-query-editor/discussions)
69+
70+
---
71+
72+
**Happy testing!** 🧪✨

0 commit comments

Comments
 (0)