From 85187ea9ab92a1eca5edd75087bd0bbd6c1b2085 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Sat, 6 Jun 2026 10:22:51 -0500 Subject: [PATCH] feat(desktop): point image catalog at images.devsy.sh Now that images.devsy.sh is live and serves catalog.json with CORS, repoint the default catalog URL from the raw GitHub seed to the hosted endpoint. The bundled seed remains the offline fallback. --- desktop/src/main/ipc.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/desktop/src/main/ipc.ts b/desktop/src/main/ipc.ts index 0bcac6992..519a1136d 100644 --- a/desktop/src/main/ipc.ts +++ b/desktop/src/main/ipc.ts @@ -47,8 +47,7 @@ type UpdateInfo = { let providerUpdateCache: Record = {} const IMAGE_CATALOG_URL = - process.env.DEVSY_IMAGE_CATALOG_URL ?? - "https://raw.githubusercontent.com/devsy-org/devsy/main/desktop/resources/image-catalog-seed.json" + process.env.DEVSY_IMAGE_CATALOG_URL ?? "https://images.devsy.sh/catalog.json" const IMAGE_CATALOG_TTL_MS = 24 * 60 * 60 * 1000 function imageCatalogPaths(): { cachePath: string; seedPath: string } {