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:
DeFiDude
2026-03-08 16:51:59 -06:00
parent ddaba06f14
commit b3fa3927ce
3 changed files with 6 additions and 6 deletions
+4 -4
View File
@@ -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
View File
@@ -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
+1 -1
View File
@@ -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();