diff --git a/src/wled/cli/__init__.py b/src/wled/cli/__init__.py index 3c3483dd..7d41b6d6 100644 --- a/src/wled/cli/__init__.py +++ b/src/wled/cli/__init__.py @@ -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) diff --git a/src/wled/wled.py b/src/wled/wled.py index aa3b53d2..a18c866b 100644 --- a/src/wled/wled.py +++ b/src/wled/wled.py @@ -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" @@ -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}" ) @@ -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: