mirror of
https://github.com/ratspeak/ratdeck.git
synced 2026-08-28 13:34:27 +00:00
Fix stale defidude references and version bumps
- Update clone URLs in BUILDING.md and QUICKSTART.md to ratspeak/ratdeck - Fix update checker API URL in LvSettingsScreen.cpp to ratspeak/ratdeck - Bump version examples in BUILDING.md from v1.4.2 to v1.5.2
This commit is contained in:
+4
-4
@@ -13,7 +13,7 @@ No USB drivers needed on macOS or Linux — the ESP32-S3's USB-Serial/JTAG inter
|
||||
## Build
|
||||
|
||||
```bash
|
||||
git clone https://github.com/defidude/Ratdeck.git
|
||||
git clone https://github.com/ratspeak/ratdeck.git
|
||||
cd Ratdeck
|
||||
|
||||
python3 -m platformio run
|
||||
@@ -137,12 +137,12 @@ GitHub Actions workflow (`.github/workflows/build.yml`):
|
||||
```bash
|
||||
# 1. Bump version in src/config/Config.h (all 4 defines)
|
||||
# 2. Commit and push
|
||||
git add -A && git commit -m "v1.4.2: description"
|
||||
git add -A && git commit -m "v1.5.2: description"
|
||||
git push origin main
|
||||
|
||||
# 3. Tag and push tag
|
||||
git tag v1.4.2
|
||||
git push origin v1.4.2
|
||||
git tag v1.5.2
|
||||
git push origin v1.5.2
|
||||
# CI creates GitHub release automatically
|
||||
```
|
||||
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@
|
||||
pip install platformio
|
||||
|
||||
# Clone and build
|
||||
git clone https://github.com/defidude/Ratdeck.git
|
||||
git clone https://github.com/ratspeak/ratdeck.git
|
||||
cd Ratdeck
|
||||
python3 -m platformio run
|
||||
|
||||
|
||||
@@ -512,7 +512,7 @@ void LvSettingsScreen::buildItems() {
|
||||
HTTPClient http;
|
||||
http.setFollowRedirects(HTTPC_STRICT_FOLLOW_REDIRECTS);
|
||||
http.setTimeout(8000);
|
||||
http.begin("https://api.github.com/repos/defidude/Ratdeck/releases/latest");
|
||||
http.begin("https://api.github.com/repos/ratspeak/ratdeck/releases/latest");
|
||||
http.addHeader("Accept", "application/vnd.github.v3+json");
|
||||
int httpCode = http.GET();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user