|
| 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 | +[](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