From b3fa3927ceb4856639372bf1179cb42e5c6f5907 Mon Sep 17 00:00:00 2001 From: DeFiDude <59237470+DeFiDude@users.noreply.github.com> Date: Sun, 8 Mar 2026 14:21:57 -0600 Subject: [PATCH] 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 --- docs/BUILDING.md | 8 ++++---- docs/QUICKSTART.md | 2 +- src/ui/screens/LvSettingsScreen.cpp | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/BUILDING.md b/docs/BUILDING.md index 8f63ef8..f2874ea 100644 --- a/docs/BUILDING.md +++ b/docs/BUILDING.md @@ -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 ``` diff --git a/docs/QUICKSTART.md b/docs/QUICKSTART.md index 25c1e61..0eb4d3e 100644 --- a/docs/QUICKSTART.md +++ b/docs/QUICKSTART.md @@ -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 diff --git a/src/ui/screens/LvSettingsScreen.cpp b/src/ui/screens/LvSettingsScreen.cpp index a4be9df..a142bd0 100644 --- a/src/ui/screens/LvSettingsScreen.cpp +++ b/src/ui/screens/LvSettingsScreen.cpp @@ -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();