diff --git a/loremaster-desktop/electron/portable-updater.ts b/loremaster-desktop/electron/portable-updater.ts index e5780d0..38dc802 100644 --- a/loremaster-desktop/electron/portable-updater.ts +++ b/loremaster-desktop/electron/portable-updater.ts @@ -5,8 +5,8 @@ import { mkdir, open, rename, rm, writeFile } from "node:fs/promises"; import path from "node:path"; import { once } from "node:events"; -const RELEASE_API = "https://api.github.com/repos/itsspin/spinips/releases/latest"; -const RELEASE_PAGE = "https://github.com/itsspin/spinips/releases/latest"; +const RELEASE_API = "https://api.github.com/repos/JDS300/spinips/releases/latest"; +const RELEASE_PAGE = "https://github.com/JDS300/spinips/releases/latest"; const LOREMASTER_ASSET = "Loremaster.exe"; const CHECKSUM_ASSET = "SHA256SUMS.txt"; const MAX_RELEASE_BYTES = 2 * 1024 * 1024; diff --git a/loremaster-desktop/electron/spinui-updater.ts b/loremaster-desktop/electron/spinui-updater.ts index b9feea8..2cdf99d 100644 --- a/loremaster-desktop/electron/spinui-updater.ts +++ b/loremaster-desktop/electron/spinui-updater.ts @@ -18,8 +18,8 @@ import path from "node:path"; import { promisify } from "node:util"; import { compareVersions, parseChecksums } from "./portable-updater.js"; -const RELEASE_API = "https://api.github.com/repos/itsspin/spinips/releases/latest"; -const RELEASE_PAGE = "https://github.com/itsspin/spinips/releases/latest"; +const RELEASE_API = "https://api.github.com/repos/JDS300/spinips/releases/latest"; +const RELEASE_PAGE = "https://github.com/JDS300/spinips/releases/latest"; const ARCHIVE_ASSET = "SpinUI-UI.zip"; const MANIFEST_ASSET = "SpinUI-Update.json"; const CHECKSUM_ASSET = "SHA256SUMS.txt"; diff --git a/loremaster-desktop/package.json b/loremaster-desktop/package.json index 261d639..b297eac 100644 --- a/loremaster-desktop/package.json +++ b/loremaster-desktop/package.json @@ -69,7 +69,7 @@ "publish": [ { "provider": "github", - "owner": "itsspin", + "owner": "JDS300", "repo": "spinips" } ],