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();