Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/wled/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,12 +271,12 @@ async def command_releases() -> None:
table.add_row(
"Stable",
latest.stable,
f"https://github.com/Aircoookie/WLED/releases/v{latest.stable}",
f"https://github.com/wled/WLED/releases/v{latest.stable}",
)
table.add_row(
"Beta",
latest.beta,
f"https://github.com/Aircoookie/WLED/releases/v{latest.beta}",
f"https://github.com/wled/WLED/releases/v{latest.beta}",
)

console.print(table)
Expand Down
6 changes: 3 additions & 3 deletions src/wled/wled.py
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ async def upgrade(self, *, version: str | AwesomeVersion) -> None:
ethernet = "_Ethernet"

# Determine if this is a 2M ESP8266 board.
# See issue `https://github.com/Aircoookie/WLED/issues/3257`
# See issue `https://github.com/wled/WLED/issues/3257`
gzip = ""
if self._device.info.architecture == "esp02":
gzip = ".gz"
Expand All @@ -637,7 +637,7 @@ async def upgrade(self, *, version: str | AwesomeVersion) -> None:
architecture = self._device.info.architecture.upper()
update_file = f"WLED_{version}_{architecture}{ethernet}.bin{gzip}"
download_url = (
"https://github.com/Aircoookie/WLED/releases/download"
"https://github.com/wled/WLED/releases/download"
f"/v{version}/{update_file}"
)

Expand Down Expand Up @@ -739,7 +739,7 @@ async def releases(self) -> Releases:
try:
async with asyncio.timeout(self.request_timeout):
response = await self.session.get(
"https://api.github.com/repos/Aircoookie/WLED/releases",
"https://api.github.com/repos/wled/WLED/releases",
headers={"Accept": "application/json"},
)
except asyncio.TimeoutError as exception:
Expand Down